# HG changeset patch # User zas_ # Date 1248509593 0 # Node ID 49460282eed9ae3baa7ba215080acc26d04d4ebb # Parent ffe1f5787a89882b25490f17a28b08e4432e7cc5 Remove some bashisms from configure.in. Patch by Greg Troxel. diff -r ffe1f5787a89 -r 49460282eed9 configure.in --- a/configure.in Sat Jul 25 08:00:07 2009 +0000 +++ b/configure.in Sat Jul 25 08:13:13 2009 +0000 @@ -79,7 +79,7 @@ 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_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 @@ 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