diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-08-01 21:43:56 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-08-01 21:43:56 +0000 |
commit | 7bc2cb6e6ef4ed94a486cf1e41497ee2e46c045b (patch) | |
tree | f1191a89df72afd537c945d84772b1019bc1f2ce /gdk-pixbuf/io-tiff.c | |
parent | d0893cc5dd8bf29995e597f90d5a2873b1167c61 (diff) | |
download | gtk+-7bc2cb6e6ef4ed94a486cf1e41497ee2e46c045b.tar.gz |
Check for <unistd.h>.
2000-08-02 Tor Lillqvist <tml@iki.fi>
* configure.in: Check for <unistd.h>.
2000-08-02 Tor Lillqvist <tml@iki.fi>
* io-bmp.c
* io-ico.c
* io-ras.c
* io-tiff.c
* io-wbmp.c: Conditionalise inclusion of <unistd.h>.
* makefile.mingw.in: List loaders alphabetically. Add the wbmp
one. Fix names of DLLs to have '-' instead of '_'.
Diffstat (limited to 'gdk-pixbuf/io-tiff.c')
-rw-r--r-- | gdk-pixbuf/io-tiff.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk-pixbuf/io-tiff.c b/gdk-pixbuf/io-tiff.c index 0b2046c87b..7209d958f3 100644 --- a/gdk-pixbuf/io-tiff.c +++ b/gdk-pixbuf/io-tiff.c @@ -28,7 +28,9 @@ #include <config.h> #include <stdlib.h> #include <string.h> +#ifdef HAVE_UNISTD_H #include <unistd.h> +#endif #include <tiffio.h> #include "gdk-pixbuf-private.h" #include "gdk-pixbuf-io.h" |