* aclocal.m4 (WITH_CC): Don't use -pedantic on Linux
authorKen Raeburn <raeburn@mit.edu>
Tue, 21 Jun 2005 02:04:56 +0000 (02:04 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 21 Jun 2005 02:04:56 +0000 (02:04 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17260 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index 3731851e3af5d5f26430854e68167301404207f8..0c3f789d053141286ac414057896ecde87db61fc 100644 (file)
@@ -2,6 +2,8 @@
 
        * aclocal.m4: Novell merge.
 
+       * aclocal.m4 (WITH_CC): Don't use -pedantic on Linux.
+
 2005-06-14  Ken Raeburn  <raeburn@mit.edu>
 
        * configure.in: Check for endian.h.
index f3491d220cb529039aee4f611597f58581003998..2ff8567f192dd126cddcd6a6715957d2e01a129d 100644 (file)
@@ -572,6 +572,8 @@ if test "$GCC" = yes ; then
     CFLAGS="$CFLAGS $extra_gcc_warn_opts"
     if test "`uname -s`" = Darwin ; then
       AC_MSG_NOTICE(skipping pedantic warnings on Darwin)
+    elif test "`uname -s`" = Linux ; then
+      AC_MSG_NOTICE(skipping pedantic warnings on Linux)
     else
       CFLAGS="$CFLAGS -pedantic"
     fi