diff options
author | Michael Natterer <mitch@imendio.com> | 2008-03-14 19:30:38 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-03-14 19:30:38 +0000 |
commit | f4bb21aa1d405fd11043a03e0962358eb0f42a5e (patch) | |
tree | 5a61a68360791fb866dbd37544bc1e058793987a /glib/grand.h | |
parent | 51d7fc9e965c64da40597d007756d330b5e3cc5f (diff) | |
download | glib-f4bb21aa1d405fd11043a03e0962358eb0f42a5e.tar.gz |
make it possible to disable single-file includes by defining
2008-03-14 Michael Natterer <mitch@imendio.com>
* glib/*.h: make it possible to disable single-file includes by
defining G_DISABLE_SINGLE_INCLUDES when building against GLib.
Approved by Tim Janik.
* glib/glib.h: include <glib/gslice.h>.
* glib/gi18n.h
* glib/gi18n-lib.h
* glib/gprintf.h: include <glib.h> so the above works when these
files are included without including <glib.h> first.
svn path=/trunk/; revision=6713
Diffstat (limited to 'glib/grand.h')
-rw-r--r-- | glib/grand.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/glib/grand.h b/glib/grand.h index cb6887bcf..fd2847ec6 100644 --- a/glib/grand.h +++ b/glib/grand.h @@ -21,9 +21,13 @@ * Modified by the GLib Team and others 1997-2000. See the AUTHORS * file for a list of people on the GLib Team. See the ChangeLog * files for a list of changes. These files are distributed with - * GLib at ftp://ftp.gtk.org/pub/gtk/. + * GLib at ftp://ftp.gtk.org/pub/gtk/. */ +#if defined(G_DISABLE_SINGLE_INCLUDES) && !defined (__G_LIB_H__) && !defined (GLIB_COMPILATION) +#error "Only <glib.h> can be included directly." +#endif + #ifndef __G_RAND_H__ #define __G_RAND_H__ @@ -79,9 +83,3 @@ gdouble g_random_double_range (gdouble begin, G_END_DECLS #endif /* __G_RAND_H__ */ - - - - - - |