diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-09 18:41:17 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-09 18:41:17 +0800 |
commit | d8bb5b65d73668942101b33feda431e941a7f94c (patch) | |
tree | 88ab2cb2939376e7df75c8a8e878dce65ef0402f | |
parent | fedbee566107f89acab946d5ebd4ef3f5f6d7bdb (diff) | |
download | gsoc2013-epiphany-d8bb5b65d73668942101b33feda431e941a7f94c.tar.gz gsoc2013-epiphany-d8bb5b65d73668942101b33feda431e941a7f94c.tar.zst gsoc2013-epiphany-d8bb5b65d73668942101b33feda431e941a7f94c.zip |
Include config.h upfront.
2004-08-09 Christian Persch <chpe@cvs.gnome.org>
* lib/widgets/ephy-label.c:
Include config.h upfront.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-label.c | 8 |
2 files changed, 10 insertions, 4 deletions
@@ -1,6 +1,12 @@ 2004-08-09 Christian Persch <chpe@cvs.gnome.org> * lib/widgets/ephy-label.c: + + Include config.h upfront. + +2004-08-09 Christian Persch <chpe@cvs.gnome.org> + + * lib/widgets/ephy-label.c: * lib/widgets/ephy-label.h: Only use this for gtk < 2.5.1, and just add a few diff --git a/lib/widgets/ephy-label.c b/lib/widgets/ephy-label.c index 70f6b03fb..73968c2cd 100644 --- a/lib/widgets/ephy-label.c +++ b/lib/widgets/ephy-label.c @@ -23,14 +23,14 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <gtk/gtkversion.h> #if !GTK_CHECK_VERSION (2, 5, 1) -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - #include "ephy-label.h" #include <math.h> |