diff options
author | Federico Mena Quintero <federico@ximian.com> | 2004-03-06 03:38:59 +0000 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2004-03-06 03:38:59 +0000 |
commit | 80581c3011871fa000433a881554ffc1e9363468 (patch) | |
tree | 8b528a2413d95ba1c4831b7bf02a5b583924e438 /gdk-pixbuf | |
parent | 7d94c90fca82c3543c5f860fc5e57cf36a966db8 (diff) | |
download | gtk+-80581c3011871fa000433a881554ffc1e9363468.tar.gz |
Fixes #136082 and #135265, patch by Morten Welinder.
2004-03-05 Federico Mena Quintero <federico@ximian.com>
Fixes #136082 and #135265, patch by Morten Welinder.
* configure.in: Use AC_SYS_LARGEFILE.
* */*.c: #include <config.h>
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-csource.c | 2 | ||||
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-io.c | 2 | ||||
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-loader.c | 1 | ||||
-rw-r--r-- | gdk-pixbuf/gdk-pixdata.c | 1 | ||||
-rw-r--r-- | gdk-pixbuf/io-pcx.c | 1 | ||||
-rw-r--r-- | gdk-pixbuf/io-tga.c | 1 | ||||
-rw-r--r-- | gdk-pixbuf/pixops/pixops.c | 2 | ||||
-rw-r--r-- | gdk-pixbuf/pixops/timescale.c | 1 |
8 files changed, 8 insertions, 3 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-csource.c b/gdk-pixbuf/gdk-pixbuf-csource.c index 29669c8a09..9b0a662309 100644 --- a/gdk-pixbuf/gdk-pixbuf-csource.c +++ b/gdk-pixbuf/gdk-pixbuf-csource.c @@ -16,7 +16,7 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ -#include "config.h" +#include <config.h> #include "../gtk/gtkversion.h" /* versioning */ #include "gdk-pixbuf.h" diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c index 4ec06195b9..92ddb55b68 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.c +++ b/gdk-pixbuf/gdk-pixbuf-io.c @@ -22,7 +22,7 @@ * Boston, MA 02111-1307, USA. */ -#include "config.h" +#include <config.h> #include <stdlib.h> #include <stdio.h> diff --git a/gdk-pixbuf/gdk-pixbuf-loader.c b/gdk-pixbuf/gdk-pixbuf-loader.c index 54eff3280d..7bb0f74fa2 100644 --- a/gdk-pixbuf/gdk-pixbuf-loader.c +++ b/gdk-pixbuf/gdk-pixbuf-loader.c @@ -24,6 +24,7 @@ * Boston, MA 02111-1307, USA. */ +#include <config.h> #include <string.h> #include "gdk-pixbuf-private.h" diff --git a/gdk-pixbuf/gdk-pixdata.c b/gdk-pixbuf/gdk-pixdata.c index 10f14ce0fa..7e63bfa65a 100644 --- a/gdk-pixbuf/gdk-pixdata.c +++ b/gdk-pixbuf/gdk-pixdata.c @@ -16,6 +16,7 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ +#include <config.h> #include "gdk-pixdata.h" #include "gdk-pixbuf-private.h" diff --git a/gdk-pixbuf/io-pcx.c b/gdk-pixbuf/io-pcx.c index 4a9d0bef81..4904f3acf8 100644 --- a/gdk-pixbuf/io-pcx.c +++ b/gdk-pixbuf/io-pcx.c @@ -21,6 +21,7 @@ * Boston, MA 02111-1307, USA. */ +#include <config.h> #include <stdio.h> #include <string.h> #include "gdk-pixbuf-private.h" diff --git a/gdk-pixbuf/io-tga.c b/gdk-pixbuf/io-tga.c index 32c6af0b57..99f413ce88 100644 --- a/gdk-pixbuf/io-tga.c +++ b/gdk-pixbuf/io-tga.c @@ -36,6 +36,7 @@ * - Error handling was designed to be very paranoid. */ +#include <config.h> #include <stdio.h> #include <string.h> diff --git a/gdk-pixbuf/pixops/pixops.c b/gdk-pixbuf/pixops/pixops.c index 548d48ee18..633b5bc0b7 100644 --- a/gdk-pixbuf/pixops/pixops.c +++ b/gdk-pixbuf/pixops/pixops.c @@ -1,6 +1,6 @@ +#include <config.h> #include <math.h> #include <glib.h> -#include "config.h" #include "pixops.h" #include "pixops-internal.h" diff --git a/gdk-pixbuf/pixops/timescale.c b/gdk-pixbuf/pixops/timescale.c index bc890d437e..94ed3cf138 100644 --- a/gdk-pixbuf/pixops/timescale.c +++ b/gdk-pixbuf/pixops/timescale.c @@ -1,3 +1,4 @@ +#include <config.h> #include <glib.h> #include <string.h> #include <stdlib.h> |