mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 04:48:06 +01:00
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
Description: Remove include ungif library (will use gif library)
|
|
Author: Rodolfo García Peñas (kix) <kix@debian.org>
|
|
Last-Update: 2014-10-09
|
|
Index: wmaker-crm/m4/wm_imgfmt_check.m4
|
|
===================================================================
|
|
--- wmaker-crm.orig/m4/wm_imgfmt_check.m4
|
|
+++ wmaker-crm/m4/wm_imgfmt_check.m4
|
|
@@ -20,7 +20,7 @@
|
|
# WM_IMGFMT_CHECK_GIF
|
|
# -------------------
|
|
#
|
|
-# Check for GIF file support through 'libgif', 'libungif' or 'giflib v5'
|
|
+# Check for GIF file support through 'libgif' or 'giflib v5'
|
|
# The check depends on variable 'enable_gif' being either:
|
|
# yes - detect, fail if not found
|
|
# no - do not detect, disable support
|
|
@@ -38,7 +38,7 @@ AS_IF([test "x$enable_gif" = "xno"],
|
|
wm_save_LIBS="$LIBS"
|
|
dnl
|
|
dnl We check first if one of the known libraries is available
|
|
- for wm_arg in "-lgif" "-lungif" ; do
|
|
+ for wm_arg in "-lgif" ; do
|
|
AS_IF([wm_fn_lib_try_link "DGifOpenFileName" "$XLFLAGS $XLIBS $wm_arg"],
|
|
[wm_cv_imgfmt_gif="$wm_arg" ; break])
|
|
done
|