1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-15 20:25:12 +01:00

Fix header cleaup fallout when using system pcre

Using the internal pcre has the side effect of exposing gregex.c to
glib.h.  When we use the system one, we lose that, so we need to
explicitly include the things we use (glist, gatomic, etc..)
This commit is contained in:
Ryan Lortie 2010-09-18 12:52:58 -04:00
parent 1bc08279b9
commit ac05f990db

@ -32,6 +32,10 @@
#include "gtypes.h" #include "gtypes.h"
#include "gregex.h" #include "gregex.h"
#include "glibintl.h" #include "glibintl.h"
#include "glist.h"
#include "gmessages.h"
#include "gstrfuncs.h"
#include "gatomic.h"
/** /**
* SECTION:gregex * SECTION:gregex