Date: Fri, 15 Dec 2017 15:32:34 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456403 - head/graphics/geeqie/files Message-ID: <201712151532.vBFFWYht048324@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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]) +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712151532.vBFFWYht048324>