Makefile.am. build with G_DISABLE_SINGLE_INCLUDES to prevent code from
authorMichael Natterer <mitch@imendio.com>
Mon, 5 May 2008 15:04:58 +0000 (15:04 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Mon, 5 May 2008 15:04:58 +0000 (15:04 +0000)
2008-05-05  Michael Natterer  <mitch@imendio.com>

* Makefile.am. build with G_DISABLE_SINGLE_INCLUDES to prevent
code from being checked in that breaks the build of applications
which use G_DISABLE_SINGLE_INCLUDES.

* gmodule.c: #include "glib.h" instead of "glibconfig.h"

svn path=/trunk/; revision=6877

gmodule/ChangeLog
gmodule/Makefile.am
gmodule/gmodule.c

index 6ff9b40..437a35e 100644 (file)
@@ -1,3 +1,11 @@
+2008-05-05  Michael Natterer  <mitch@imendio.com>
+
+       * Makefile.am. build with G_DISABLE_SINGLE_INCLUDES to prevent
+       code from being checked in that breaks the build of applications
+       which use G_DISABLE_SINGLE_INCLUDES.
+
+       * gmodule.c: #include "glib.h" instead of "glibconfig.h"
+
 2008-03-16  Tor Lillqvist  <tml@novell.com>
 
        * Makefile.am: Define gmodule_def locally here instead of using an
index 852aabb..3965fc8 100644 (file)
@@ -7,7 +7,8 @@ AM_CPPFLAGS =                           \
        -I$(top_srcdir)/gmodule         \
        -DG_LOG_DOMAIN=\"GModule\"      \
        @GLIB_DEBUG_FLAGS@              \
-       -DG_DISABLE_DEPRECATED
+       -DG_DISABLE_DEPRECATED          \
+       -DG_DISABLE_SINGLE_INCLUDES
 
 EXTRA_DIST +=                          \
                makefile.msc.in         \
index 40e9e2e..23e6828 100644 (file)
@@ -29,7 +29,8 @@
  */
 
 #include "config.h"
-#include "glibconfig.h"
+
+#include "glib.h"
 
 #include <errno.h>
 #include <string.h>