diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-03-19 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Fix ettore's fix ;-) + 2001-03-19 Christopher James Lahey <clahey@ximian.com> * configure.in: Bumped gal requirement to 0.5.99.8. diff --git a/configure.in b/configure.in index 0355ae4546..84c19354c4 100644 --- a/configure.in +++ b/configure.in @@ -609,7 +609,7 @@ if test "x${with_nspr_includes}" != "xno"; then HEADERS="$with_nspr_includes/nspr.h $with_nspr_includes/prio.h" AC_CHECK_FILES($HEADERS, [ moz_nspr_includes="yes" ]) - if test "x{$moz_nspr_includes}" != "xno" -a test "x{$moz_nspr_includes}" != "x" ; then + if test "x{$moz_nspr_includes}" != "xno" -a "x{$moz_nspr_includes}" != "x" ; then have_nspr_includes="yes" NSPR_CFLAGS="-I$with_nspr_includes" fi @@ -656,7 +656,7 @@ if test "x${with_nss_includes}" != "xno" -a "x${have_nspr_libs}" != "xno"; then HEADERS="$with_nss_includes/nss.h $with_nss_includes/ssl.h $with_nss_includes/smime.h" AC_CHECK_FILES($HEADERS, [ moz_nspr_includes="yes" ]) - if test "x{$moz_nss_includes}" != "xno" -a test "x{$moz_nss_includes}" != "x"; then + if test "x{$moz_nss_includes}" != "xno" -a "x{$moz_nss_includes}" != "x"; then have_nss_includes="yes" NSS_CFLAGS="-I$with_nss_includes" else |