diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-11-25 08:49:25 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-11-25 08:49:25 +0100 |
commit | 1e57fd513db9d3992250cffa3f61e85cf7a54ff3 (patch) | |
tree | 8482796d77d8065f7e67f182ec758842a98e83a7 | |
parent | 5d241225a25c57aaecc11ee0989c6aea4da78043 (diff) | |
download | fbida-1e57fd513db9d3992250cffa3f61e85cf7a54ff3.tar.gz |
switch from libungif to libgif
-rw-r--r-- | GNUmakefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/GNUmakefile b/GNUmakefile index 466e6f2..5c477f2 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -44,7 +44,7 @@ HAVE_GLIBC := $(call ac_func,fopencookie) HAVE_STRCASESTR := $(call ac_func,strcasestr) HAVE_STRSIGNAL := $(call ac_func,strsignal) HAVE_LIBPCD := $(call ac_lib,pcd_open,pcd) -HAVE_LIBUNGIF := $(call ac_lib,DGifOpenFileName,ungif) +HAVE_LIBGIF := $(call ac_lib,DGifOpenFileName,gif) HAVE_LIBPNG := $(call ac_lib,png_read_info,png,-lz) HAVE_LIBTIFF := $(call ac_lib,TIFFOpen,tiff) HAVE_LIBWEBP := $(call ac_lib,WebPDecodeRGBA,webp) @@ -76,9 +76,9 @@ PKG_CONFIG = pkg-config # conditional stuff includes = ENDIAN_H STRCASESTR STRSIGNAL NEW_EXIF -libraries = PCD UNGIF PNG TIFF WEBP CURL SANE LIRC -ida_libs = PCD UNGIF PNG TIFF WEBP CURL SANE -fbi_libs = PCD UNGIF PNG TIFF WEBP CURL LIRC +libraries = PCD GIF PNG TIFF WEBP CURL SANE LIRC +ida_libs = PCD GIF PNG TIFF WEBP CURL SANE +fbi_libs = PCD GIF PNG TIFF WEBP CURL LIRC #MAGICK_CFLAGS = $(shell Magick-config --cflags) #MAGICK_LDFLAGS = $(shell Magick-config --ldflags) @@ -89,7 +89,7 @@ PNG_LDLIBS := -lpng -lz TIFF_LDLIBS := -ltiff WEBP_LDLIBS := -lwebp PCD_LDLIBS := -lpcd -UNGIF_LDLIBS := -lungif +GIF_LDLIBS := -lgif SANE_LDLIBS := -lsane CURL_LDLIBS := -lcurl LIRC_LDLIBS := -llirc_client @@ -98,7 +98,7 @@ PNG_OBJS := rd/read-png.o wr/write-png.o TIFF_OBJS := rd/read-tiff.o wr/write-tiff.o WEBP_OBJS := rd/read-webp.o PCD_OBJS := rd/read-pcd.o -UNGIF_OBJS := rd/read-gif.o +GIF_OBJS := rd/read-gif.o SANE_OBJS := sane.o CURL_OBJS := curl.o LIRC_OBJS := lirc.o |