1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-22 05:48:01 +01:00

debian: Import version 0.95.6-1.

This commit is contained in:
Doug Torrance
2015-05-26 17:13:13 -05:00
committed by Carlos R. Mafra
parent 945f4d2389
commit 67da339ccb
25 changed files with 127 additions and 155 deletions

25
debian/patches/55_ungif_problem.diff vendored Normal file
View File

@@ -0,0 +1,25 @@
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: WindowMaker-0.95.6/m4/wm_imgfmt_check.m4
===================================================================
--- WindowMaker-0.95.6.orig/m4/wm_imgfmt_check.m4
+++ WindowMaker-0.95.6/m4/wm_imgfmt_check.m4
@@ -19,7 +19,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
@@ -37,7 +37,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