From looking at the logs it looks like 1.0beta2 is what I should be
using, so I'm updating pkgsrc.

configure.in uses 'test ==' which is an unportable not-required-by-POSIX
bashism.

--- configure.in.orig   2009-07-02 13:45:34.000000000 -0400
+++ configure.in
@@ -79,7 +79,7 @@ AC_HELP_STRING([--enable-debug-log], [en
 
 if test "x${enable_debug_flags}" != "xno"
 then
-  if test "x${enable_developer}" == "xyes"
+  if test "x${enable_developer}" = "xyes"
   then
     CXXFLAGS="${CXXFLAGS} -Wall"
     CFLAGS="${CFLAGS} -Wstrict-prototypes -Wall"
@@ -342,7 +342,7 @@ AC_ARG_ENABLE([gps],
   AC_HELP_STRING([--enable-gps], [enable GPS map support - experimental]),
     [libgps=$enableval], [libgps=auto])
 
-if test "x${libgps}" == "xyes"; then
+if test "x${libgps}" = "xyes"; then
   PKG_CHECK_MODULES(LIBCHAMPLAIN, [champlain-0.3 >= 0.3],
     [
       HAVE_LIBCHAMPLAIN=yes
@@ -356,7 +356,7 @@ else
   HAVE_LIBCHAMPLAIN=disabled
 fi
 
-if test "x${libgps}" == "xyes"; then
+if test "x${libgps}" = "xyes"; then
   PKG_CHECK_MODULES(LIBCHAMPLAIN_GTK, [champlain-gtk-0.3 >= 0.3],
     [
       HAVE_LIBCHAMPLAIN_GTK=yes

Attachment: pgp3d1G9q4Tin.pgp
Description: PGP signature

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Geeqie-devel mailing list
Geeqie-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geeqie-devel

Reply via email to