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-wbmp.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-wbmp.c')
-rw-r--r-- | gdk-pixbuf/io-wbmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk-pixbuf/io-wbmp.c b/gdk-pixbuf/io-wbmp.c index d49658930b..5e08d6bad3 100644 --- a/gdk-pixbuf/io-wbmp.c +++ b/gdk-pixbuf/io-wbmp.c @@ -30,7 +30,9 @@ Known bugs: #include <config.h> #include <stdio.h> +#ifdef HAVE_UNISTD_H #include <unistd.h> +#endif #include <string.h> #include "gdk-pixbuf-private.h" #include "gdk-pixbuf-io.h" |