diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-02 13:29:12 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-02 13:29:12 +0000 |
commit | a126002e7fdcd66f0996dbe9b5b1c2d7960cf31b (patch) | |
tree | 3f7a62dab6104e9a7d6822dd3ee488edaccc7db1 /Configure | |
parent | 68e6a810fd76bc5cbb66b142a2df316708a64334 (diff) | |
download | perl-a126002e7fdcd66f0996dbe9b5b1c2d7960cf31b.tar.gz |
Drop the -ansi from the default gcc flags.
Off_t/off_t is a struct in Solaris with largefiles, and with -ansi
that struct cannot be compared with a flat integer, such as STRLEN.
The -ansi will also cause a lot of noise in Solaris because of:
/usr/include/sys/resource.h:148: warning: `struct rlimit64' declared inside parameter list
p4raw-id: //depot/perl@10390
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Fri Jun 1 19:20:32 EET DST 2001 [metaconfig 3.0 PL70] +# Generated on Sat Jun 2 17:25:04 EET DST 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -3228,7 +3228,7 @@ case "$gccversion" in '') ;; *) case "$ccflags" in *-Wall*) ;; - *) ccflags="$ccflags -Wall -ansi" ;; + *) ccflags="$ccflags -Wall" ;; esac ;; esac |