diff options
author | David Kerry <davidk@tor.securecomputing.com> | 1997-09-05 00:00:00 +0000 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-09-05 00:00:00 +0000 |
commit | 464ed3b648d262825ad1bfc5a2e55de2507fd651 (patch) | |
tree | b90164231ce8ae7d3d08d6b084a0a5480698807b /utils/h2xs.PL | |
parent | ca0b63a54384876a335df571abef7f428d67e288 (diff) | |
download | perl-464ed3b648d262825ad1bfc5a2e55de2507fd651.tar.gz |
Missing 'require' in auto-generated .pm by h2xs
private-msgid: 97Aug27.131618edt.11650@janus.tor.securecomputing.com
Diffstat (limited to 'utils/h2xs.PL')
-rw-r--r-- | utils/h2xs.PL | 2 |
1 files changed, 1 insertions, 1 deletions
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 |