I have updated pkgsrc to 1.2.2 (and not quite committed it yet). The only problem I had was that configure uses == with test, and that's a bash extension not specified by POSIX. This patch is against configure (because that's what I had to patch to build the tarball).
--- configure.orig 2015-09-10 14:28:36.000000000 +0000
+++ configure
@@ -9146,7 +9146,7 @@ else
fi
-if test x$gtk3 == xyes; then
+if test x$gtk3 = xyes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \"Gtk3 enabled\"" >&5
$as_echo "$as_me: WARNING: \"Gtk3 enabled\"" >&2;}
@@ -9158,7 +9158,7 @@ $as_echo "$as_me: WARNING: \"Gtk3 is pre
fi
fi
-if test x$gtk3 == xno; then
+if test x$gtk3 = xno; then
# Check whether --enable-gtktest was given.
if test "${enable_gtktest+set}" = set; then :
enableval=$enable_gtktest;
pgpHt1IRIdpj0.pgp
Description: PGP signature
------------------------------------------------------------------------------ Monitor Your Dynamic Infrastructure at Any Scale With Datadog! Get real-time metrics from all of your servers, apps and tools in one place. SourceForge users - Click here to start your Free Trial of Datadog now! http://pubads.g.doubleclick.net/gampad/clk?id=241902991&iu=/4140
_______________________________________________ Geeqie-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geeqie-devel
