diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2005-05-10 19:44:00 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-10 20:56:37 +0000 |
commit | 24801a4b9a14a56208916a537c4c237993c25186 (patch) | |
tree | 7e7720f73f49618ef85ef3166e0824cb92a7f8a9 /hints | |
parent | 0bfd2b7f7ab8769ca3d9c75656aa082a44f0d689 (diff) | |
download | perl-24801a4b9a14a56208916a537c4c237993c25186.tar.gz |
potential [PATCH] Tru64 crank up strictness
Message-Id: <4ADE5AAD-27CB-4F9E-BEC7-41DAA7671108@iki.fi>
p4raw-id: //depot/perl@24444
Diffstat (limited to 'hints')
-rw-r--r-- | hints/dec_osf.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hints/dec_osf.sh b/hints/dec_osf.sh index bcefbe9b8c..310486bd3d 100644 --- a/hints/dec_osf.sh +++ b/hints/dec_osf.sh @@ -126,7 +126,7 @@ esac case "$isgcc" in gcc) ccflags="$ccflags -ansi" ;; -*) ccflags="$ccflags -std" +*) ccflags="$ccflags -std1" ;; esac @@ -259,7 +259,7 @@ case "`uname -r`" in esac # -msym: If using a sufficiently recent /sbin/loader, # keep the module symbols with the modules. - lddlflags="$lddlflags -msym -std" + lddlflags="$lddlflags -msym -std1" fi ;; esac @@ -413,7 +413,7 @@ TRY # Don't bother trying to work with Configure's idea of # cc and the various flags. This might not work as-is # with gcc -- but we're testing libc, not the compiler. - if cc -o try -std try.c && ./try + if cc -o try -std1 try.c && ./try then : ok else |