summaryrefslogtreecommitdiff
path: root/cflags.SH
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-07-17 21:11:52 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-07-17 21:11:52 +0000
commit9aaf14db0f3c171369e4348eb60c54ad52a14a34 (patch)
tree935316541cf2c7376b9b9fa5d2fe798f74dc33ef /cflags.SH
parentb7c34493369bdd41a81cd335c43a2c5275ebf4f7 (diff)
downloadperl-9aaf14db0f3c171369e4348eb60c54ad52a14a34.tar.gz
Remove the C89 checking with gcc
(but leave a note in perlhack) p4raw-id: //depot/perl@28595
Diffstat (limited to 'cflags.SH')
-rwxr-xr-xcflags.SH15
1 files changed, 0 insertions, 15 deletions
diff --git a/cflags.SH b/cflags.SH
index bd254666ad..6c7c4c9549 100755
--- a/cflags.SH
+++ b/cflags.SH
@@ -91,21 +91,6 @@ esac
stdflags=''
-# Be strict C89 for gcc (but not for g++).
-case "$gccversion" in
-'') ;;
-Intel*) ;; # Nice try, Intel C++.
-12]*) ;; # Go easy on the older versions of gcc.
-*) case "$cc" in
- *g++*) ;;
- *) case "$osname" in
- cygwin) ;; # Fails at least up to and including 1.5.20
- *) stdflags="$stdflags -std=c89" ;;
- esac
- esac
- ;;
-esac
-
echo "Extracting cflags (with variable substitutions)"
: This section of the file will have variable substitutions done on it.
: Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.