diff options
author | obache <obache@pkgsrc.org> | 2014-11-09 07:20:23 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2014-11-09 07:20:23 +0000 |
commit | 008ca5e6302331e39ac464336588e7f16f59e2bb (patch) | |
tree | fa99df38b5e7646b95f781d42bb4421b7f28ef09 /graphics | |
parent | 444dd335f2a86ec84a7cde5ab8f20046f8216ae8 (diff) | |
download | pkgsrc-008ca5e6302331e39ac464336588e7f16f59e2bb.tar.gz |
add missing patches.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libsixel/patches/patch-configure | 24 | ||||
-rw-r--r-- | graphics/libsixel/patches/patch-configure.ac | 17 |
2 files changed, 41 insertions, 0 deletions
diff --git a/graphics/libsixel/patches/patch-configure b/graphics/libsixel/patches/patch-configure new file mode 100644 index 00000000000..dd1caa2353e --- /dev/null +++ b/graphics/libsixel/patches/patch-configure @@ -0,0 +1,24 @@ +$NetBSD: patch-configure,v 1.1 2014/11/09 07:20:23 obache Exp $ + +* test(1) portability + +--- configure.orig 2014-11-08 04:14:11.000000000 +0000 ++++ configure +@@ -14197,7 +14197,7 @@ fi + touch aclocal.m4 Makefile.in */Makefile.in configure config.h.in + + +- if test x$have_jpeg == xyes; then ++ if test x$have_jpeg = xyes; then + HAVE_JPEG_TRUE= + HAVE_JPEG_FALSE='#' + else +@@ -14205,7 +14205,7 @@ else + HAVE_JPEG_FALSE= + fi + +- if test x$have_png == xyes; then ++ if test x$have_png = xyes; then + HAVE_PNG_TRUE= + HAVE_PNG_FALSE='#' + else diff --git a/graphics/libsixel/patches/patch-configure.ac b/graphics/libsixel/patches/patch-configure.ac new file mode 100644 index 00000000000..92487def465 --- /dev/null +++ b/graphics/libsixel/patches/patch-configure.ac @@ -0,0 +1,17 @@ +$NetBSD: patch-configure.ac,v 1.1 2014/11/09 07:20:23 obache Exp $ + +* test(1) portability + +--- configure.ac.orig 2014-11-08 04:14:11.000000000 +0000 ++++ configure.ac +@@ -367,8 +367,8 @@ AC_DEFUN([LS_UPDATE_TIMESTAMP], [ + ]) + LS_UPDATE_TIMESTAMP + +-AM_CONDITIONAL([HAVE_JPEG], [test x$have_jpeg == xyes]) +-AM_CONDITIONAL([HAVE_PNG], [test x$have_png == xyes]) ++AM_CONDITIONAL([HAVE_JPEG], [test x$have_jpeg = xyes]) ++AM_CONDITIONAL([HAVE_PNG], [test x$have_png = xyes]) + + AC_CONFIG_FILES([Makefile + libsixel.pc |