summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@nuclecu.unam.mx>1999-02-22 21:27:11 +0000
committerArturo Espinosa <unammx@src.gnome.org>1999-02-22 21:27:11 +0000
commit147e09c6ee7876437a166716949096184484ddec (patch)
tree95cf72dc5a8574f656b342637851a1ba4be8ee62
parent5ff9d0519e8f47a63ac11493e985b54285441577 (diff)
downloadshared-mime-info-147e09c6ee7876437a166716949096184484ddec.tar.gz
Only add the compilation warnings if the compiler is GCC.
1999-02-22 Miguel de Icaza <miguel@nuclecu.unam.mx> * compiler-flags.m4: Only add the compilation warnings if the compiler is GCC. svn path=/trunk/; revision=645
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/compiler-flags.m47
2 files changed, 12 insertions, 0 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 6195dc98..156763c7 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+1999-02-22 Miguel de Icaza <miguel@nuclecu.unam.mx>
+
+ * compiler-flags.m4: Only add the compilation warnings if the
+ compiler is GCC.
+
1999-02-20 Timur Bakeyev <mc@bat.ru>
* gnome.m4: Added and exported ZVT_LIBS.
diff --git a/macros/compiler-flags.m4 b/macros/compiler-flags.m4
index fb5d1d25..951aab7f 100644
--- a/macros/compiler-flags.m4
+++ b/macros/compiler-flags.m4
@@ -7,6 +7,10 @@ AC_DEFUN([GNOME_COMPILE_WARNINGS],[
AC_MSG_CHECKING(what warning flags to pass to the C compiler)
warnCFLAGS=
+ if test "x$GCC" != xyes; then
+ enable_compile_warnings=no
+ fi
+
if test "x$enable_compile_warnings" != "xno"; then
if test "x$GCC" = "xyes"; then
case " $CFLAGS " in
@@ -58,6 +62,9 @@ AC_DEFUN([GNOME_CXX_WARNINGS],[
AC_MSG_CHECKING(what warning flags to pass to the C++ compiler)
warnCXXFLAGS=
+ if test "x$GCC" != xyes; then
+ enable_compile_warnings=no
+ fi
if test "x$enable_cxx_warnings" != "xno"; then
if test "x$GCC" = "xyes"; then
case " $CXXFLAGS " in