diff options
author | Gustavo J. A. M. Carneiro <gjc@src.gnome.org> | 2007-08-27 12:44:16 +0000 |
---|---|---|
committer | Gustavo J. A. M. Carneiro <gjc@src.gnome.org> | 2007-08-27 12:44:16 +0000 |
commit | 4c8bec8e5e7506ff386f234494e247ed5bc01026 (patch) | |
tree | 5df758c02352a63c67ed3d5bd0b68fa6f1cb9e30 | |
parent | 753ed7640594bf88fd7a1f693fde9e08d581631b (diff) | |
download | pygobject-4c8bec8e5e7506ff386f234494e247ed5bc01026.tar.gz pygobject-4c8bec8e5e7506ff386f234494e247ed5bc01026.tar.xz pygobject-4c8bec8e5e7506ff386f234494e247ed5bc01026.zip |
removed unwanted defines
svn path=/trunk/; revision=697
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gobject/Makefile.am | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 3 |
3 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,9 @@ 2007-08-27 Gustavo J. A. M. Carneiro <gjc@gnome.org> + * tests/Makefile.am, + * gobject/Makefile.am: Remove -D_XOPEN_SOURCE=600 + -D__EXTENSIONS__, no longer needed. + * configure.ac: Don't add -std=c9x CFLAG on Solaris. Fixes #339924 again. diff --git a/gobject/Makefile.am b/gobject/Makefile.am index 57a961b..94cafc7 100644 --- a/gobject/Makefile.am +++ b/gobject/Makefile.am @@ -1,6 +1,6 @@ AUTOMAKE_OPTIONS = 1.7 PLATFORM_VERSION = 2.0 -INCLUDES = $(PYTHON_INCLUDES) $(GLIB_CFLAGS) -DPY_SSIZE_T_CLEAN -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ +INCLUDES = $(PYTHON_INCLUDES) $(GLIB_CFLAGS) -DPY_SSIZE_T_CLEAN pkgincludedir = $(includedir)/pygtk-$(PLATFORM_VERSION) pkginclude_HEADERS = pygobject.h diff --git a/tests/Makefile.am b/tests/Makefile.am index efa0d9c..3b05018 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,8 +1,7 @@ INCLUDES = \ $(PYTHON_INCLUDES) \ $(GLIB_CFLAGS) \ - -I$(top_srcdir)/gobject \ - -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ + -I$(top_srcdir)/gobject EXTRA_DIST = \ $(tests) \ |