Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Bug 556186 – gpoll.h breaks gmain.h inclusion
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=7599
  • Loading branch information
Christian Persch committed Oct 14, 2008
1 parent 6251042 commit 0879e4a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
2008-10-14 Christian Persch <chpe@gnome.org>

Bug 556186 – gpoll.h breaks gmain.h inclusion

* glib/gpoll.h: Only disallow direct inclusion when
G_DISABLE_SINGLE_INCLUDES is defined.

2008-10-13 Sven Herzberg <sven@imendio.com>

Bug 556101 – static mutex yields warnings with g++
Expand Down
2 changes: 1 addition & 1 deletion glib/gpoll.h
Expand Up @@ -17,7 +17,7 @@
* Boston, MA 02111-1307, USA.
*/

#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
#if defined(G_DISABLE_SINGLE_INCLUDES) && !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
#error "Only <glib.h> can be included directly."
#endif

Expand Down

0 comments on commit 0879e4a

Please sign in to comment.