From 464ed3b648d262825ad1bfc5a2e55de2507fd651 Mon Sep 17 00:00:00 2001 From: David Kerry Date: Fri, 5 Sep 1997 00:00:00 +0000 Subject: [PATCH] Missing 'require' in auto-generated .pm by h2xs private-msgid: 97Aug27.131618edt.11650@janus.tor.securecomputing.com --- utils/h2xs.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/h2xs.PL b/utils/h2xs.PL index 6efbde051a..b736e410ea 100644 --- a/utils/h2xs.PL +++ b/utils/h2xs.PL @@ -418,7 +418,7 @@ END # require autoloader if XS is disabled. # if XS is enabled, require autoloader unless autoloading is disabled. -if( $opt_X && (! $opt_A) ){ +if( ($opt_X && (! $opt_A)) || (!$opt_X) ) { print PM <<"END"; require AutoLoader; END -- 2.34.1