diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-12 06:00:48 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-12 06:00:48 +0000 |
commit | c727eafaa06ca49aa032ce478f9a6e09bd19fda2 (patch) | |
tree | 18c3441b63315460759f73f10389eea1fdc6c116 | |
parent | 19a52907e13f6800a48e122c0a5243f2d3f3c035 (diff) | |
download | perl-c727eafaa06ca49aa032ce478f9a6e09bd19fda2.tar.gz |
Ouch. Missed one more, the void flags check (and exit() is void).
p4raw-id: //depot/perl@18944
-rwxr-xr-x | Configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Tue Mar 11 23:30:19 EET 2003 [metaconfig 3.0 PL70] +# Generated on Wed Mar 12 09:04:02 EET 2003 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -3846,7 +3846,7 @@ int main() { printf("%s\n", "1"); #endif #endif - (int)exit(0); + (void)exit(0); } EOM if $cc -o try $ccflags $ldflags try.c; then @@ -6791,7 +6791,7 @@ echo " " echo "Checking to see how well your C compiler groks the void type..." >&4 case "$voidflags" in '') - $cat >try.c <<'EOCP' + $cat >try.c <<EOCP #$i_stdlib I_STDLIB #ifdef I_STDLIB #include <stdlib.h> @@ -15587,7 +15587,7 @@ eval $inlibc echo " " case "$d_sigsetjmp" in '') - $cat >try.c <<'EOP' + $cat >try.c <<EOP #include <setjmp.h> #$i_stdlib I_STDLIB #ifdef I_STDLIB |