svn commit: r456403 - head/graphics/geeqie/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Dec 15 15:32:35 UTC 2017


Author: amdmi3
Date: Fri Dec 15 15:32:34 2017
New Revision: 456403
URL: https://svnweb.freebsd.org/changeset/ports/456403

Log:
  - Add forgotten patch, fixes build with LIRC

Added:
  head/graphics/geeqie/files/patch-configure.in   (contents, props changed)

Added: head/graphics/geeqie/files/patch-configure.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/geeqie/files/patch-configure.in	Fri Dec 15 15:32:34 2017	(r456403)
@@ -0,0 +1,15 @@
+--- configure.in.orig	2017-11-27 13:02:57 UTC
++++ configure.in
+@@ -277,7 +277,11 @@ for dir in `echo "$withval" | tr : ' '`;
+ HAVE_LIRC=no
+ if test "x${lirc}" != "xno" ; then
+   AC_CHECK_HEADER(lirc/lirc_client.h,
+-    [AC_CHECK_LIB(lirc_client,lirc_init,[HAVE_LIRC=yes;LIBS=-llirc_client $LIBS;AC_DEFINE([HAVE_LIRC],[],[Define to 1 if LIRC must be used])],,)],)
++    [AC_CHECK_LIB(lirc_client,lirc_init,[
++      HAVE_LIRC=yes
++      LIBS="-llirc_client $LIBS"
++      AC_DEFINE([HAVE_LIRC],[],[Define to 1 if LIRC must be used])
++    ],,)],)
+ fi
+ AM_CONDITIONAL(HAVE_LIRC, [test "x$HAVE_LIRC" = xyes])
+ 


More information about the svn-ports-head mailing list