summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2004-02-14 20:37:04 +0000
committerDan Winship <danw@src.gnome.org>2004-02-14 20:37:04 +0000
commit3646e57041b33ef47e9368924a0ddacb0ac92f01 (patch)
tree6de662b4b7a715d055987211ca35508f0dc9fc80
parentb54b0176095b61c972363e3940d2ef4bd692a274 (diff)
downloadlibsoup-3646e57041b33ef47e9368924a0ddacb0ac92f01.tar.gz
Use POSIX-compliant "test $foo = bar", rather than GNU-only "test $foo ==
* configure.in: Use POSIX-compliant "test $foo = bar", rather than GNU-only "test $foo == bar". #54354, from Julio M. Merino Vidal.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f4c8e9a3..7fb90e89 100644
--- 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
diff --git a/configure.in b/configure.in
index ab28eefa..5a9e00db 100644
--- a/configure.in
+++ b/configure.in
@@ -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