summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Smith <bmsmith@src.gnome.org>2006-01-17 01:29:14 +0000
committerBrent Smith <bmsmith@src.gnome.org>2006-01-17 01:29:14 +0000
commitd903a00df583e601de093d1a5806cea562e91fc8 (patch)
tree37fdfe7ddc025402f8729be9ba30682fe598772b
parent82f455ffd18220d6243223b5c3e528fcad31d7e0 (diff)
downloadyelp-d903a00df583e601de093d1a5806cea562e91fc8.tar.gz
Brent Smith <gnome@nextreality.net> Patch from Glynn Foster to fix
Brent Smith <gnome@nextreality.net> * configure.in: Patch from Glynn Foster to fix compilation issues on Sun Studio
-rw-r--r--ChangeLog20
-rw-r--r--configure.in6
2 files changed, 18 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b24fd7b..fe303878 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,20 @@
+2006-01-16 Brent Smith <gnome@nextreality.net>
+
+ * configure.in:
+ Patch from Glynn Foster to fix compilation issues
+ on Sun Studio
+
2006-01-16 Don Scorgie <dscorgie@cvs.gnome.org>
- * configure.in:
- * src/yelp-base.h:
- * idl/GNOME_Yelp.idl:
- * src/yelp-main.c:
- * src/yelp-base.c:
- Add startup notification stuff, fixes #310237
+ * configure.in:
+ * src/yelp-base.h:
+ * idl/GNOME_Yelp.idl:
+ * src/yelp-main.c:
+ * src/yelp-base.c:
+ Add startup notification stuff, fixes #310237
2006-01-15 Christian Persch <chpe@cvs.gnome.org>
-
+
* m4/gecko.m4:
Updated from Epiphany: correct gecko version check
diff --git a/configure.in b/configure.in
index ad163aab..6b7e7af5 100644
--- a/configure.in
+++ b/configure.in
@@ -32,12 +32,16 @@ GNOME_CXX_WARNINGS
MORE_WARN_FLAGS=
DEPRECATION_FLAGS=
-MOZILLA_WARN_CXXFLAGS="-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor"
+if test "x$GCC" = "xyes"; then
+ MOZILLA_WARN_CXXFLAGS="-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor"
+fi
if test "x$enable_maintainer_mode" = "xyes"; then
AC_DEFINE([MAINTAINER_MODE],[1],[Define to enable 'maintainer-only' behaviour])
# DEPRECATION_FLAGS="-DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGCONF_DISABLE_DEPRECATED -DGNOME_VFS_DISABLE_DEPRECATED -DBONOBO_UI_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED -DLIBGLADE_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED"
+ if test "x$GCC" = "xyes"; then
MOZILLA_WARN_CXXFLAGS="-Wall -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth $MOZILLA_WARN_CXXFLAGS"
+ fi
fi
if test "x$enable_debug" = "xyes"; then