Use POSIX-compliant "test $foo = bar", rather than GNU-only "test $foo ==
authorDan Winship <danw@src.gnome.org>
Sat, 14 Feb 2004 20:37:04 +0000 (20:37 +0000)
committerDan Winship <danw@src.gnome.org>
Sat, 14 Feb 2004 20:37:04 +0000 (20:37 +0000)
        * configure.in: Use POSIX-compliant "test $foo = bar", rather than
        GNU-only "test $foo == bar". #54354, from Julio M. Merino Vidal.

ChangeLog
configure.in

index f4c8e9a..7fb90e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-14  Dan Winship  <danw@ximian.com>
+
+       * configure.in: Use POSIX-compliant "test $foo = bar", rather than
+       GNU-only "test $foo == bar". #54354, from Julio M. Merino Vidal.
+
 2004-02-12  Joe Shaw  <joe@ximian.com>
 
        * libsoup/soup-dns.c (check_hostent): Call read() in a do-while
index ab28eef..5a9e00d 100644 (file)
@@ -197,7 +197,7 @@ if test "$enable_ssl" != "no"; then
        AM_PATH_LIBGNUTLS(1.0.0, have_ssl=yes, have_ssl=no)
 
        if test "$have_ssl" != "yes"; then
-               if test "$enable_ssl" == "auto"; then
+               if test "$enable_ssl" = "auto"; then
                        AC_MSG_WARN(Disabling SSL support);
                        enable_ssl=no;
                else
@@ -222,7 +222,7 @@ if test "$enable_ssl" != "no"; then
                libgpg_error_libs="$GPG_ERROR_LIBS"
        fi
 
-       if test "$enable_static_ssl" == "yes"; then
+       if test "$enable_static_ssl" = "yes"; then
                gnutls_libdir=`$LIBGNUTLS_CONFIG --exec-prefix`/lib
                LIBGNUTLS_LIBS="$gnutls_libdir/libgnutls.a $gnutls_libdir/libgcrypt.a $libgpg_error_libs_static"
        fi