* configure.in: Use POSIX-compliant "test $foo = bar", rather than
GNU-only "test $foo == bar". #54354, from Julio M. Merino Vidal.
+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
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
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