dbus ChangeLog,1.1098,1.1099 configure.in,1.172,1.173
John Palmieri
johnp at kemper.freedesktop.org
Tue Sep 5 14:52:01 PDT 2006
Update of /cvs/dbus/dbus
In directory kemper:/tmp/cvs-serv9837
Modified Files:
ChangeLog configure.in
Log Message:
* configure.in: Check for no-common compiler flag (OS-X fix from
Benjamin Reed <ranger at befunk dot com>)
Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.1098
retrieving revision 1.1099
diff -u -d -r1.1098 -r1.1099
--- ChangeLog 1 Sep 2006 20:47:09 -0000 1.1098
+++ ChangeLog 5 Sep 2006 21:51:58 -0000 1.1099
@@ -1,3 +1,8 @@
+2006-09-05 John (J5) Palmieri <johnp at redhat.com>
+
+ * configure.in: Check for no-common compiler flag (OS-X fix from
+ Benjamin Reed <ranger at befunk dot com>)
+
2006-09-01 John (J5) Palmieri <johnp at redhat.com>
* tools/dbus-launch.c: Add a sigterm handler (patch from Frederic Crozat
Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -d -r1.172 -r1.173
--- configure.in 25 Aug 2006 19:50:16 -0000 1.172
+++ configure.in 5 Sep 2006 21:51:58 -0000 1.173
@@ -165,6 +165,14 @@
;;
esac
+ case " $CFLAGS " in
+ *[\ \ ]-fno-common[\ \ ]*) ;;
+ *) if cc_supports_flag -fno-common; then
+ CFLAGS="$CFLAGS -fno-common"
+ fi
+ ;;
+ esac
+
if test "x$enable_ansi" = "xyes"; then
case " $CFLAGS " in
*[\ \ ]-ansi[\ \ ]*) ;;
More information about the dbus-commit
mailing list