From 1d0afa980c9665f0f3e0f6d57333f077a9743ea8 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Mon, 19 Mar 2001 17:21:29 +0000 Subject: Make sure we never define `NSPR_CFLAGS' or `NSS_CFLAGS' as just "-I". 2001-03-19 Ettore Perazzoli * configure.in: Make sure we never define `NSPR_CFLAGS' or `NSS_CFLAGS' as just "-I". svn path=/trunk/; revision=8824 --- ChangeLog | 5 +++++ configure.in | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index c34ae9296a..fbeab8b503 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-03-19 Ettore Perazzoli + + * configure.in: Make sure we never define `NSPR_CFLAGS' or + `NSS_CFLAGS' as just "-I". + 2001-03-19 Jeffrey Stedfast * NEWS: pulled from the 0.9 release. diff --git a/configure.in b/configure.in index 364004c292..4f14ea62c5 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"; then + if test "x{$moz_nspr_includes}" != "xno" -a test "x{$moz_nspr_includes}" != "x" ; then have_nspr_includes="yes" NSPR_CFLAGS="-I$with_nspr_includes" fi @@ -656,12 +656,12 @@ 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"; then + if test "x{$moz_nss_includes}" != "xno" -a test "x{$moz_nss_includes}" != "x"; then have_nss_includes="yes" NSS_CFLAGS="-I$with_nss_includes" else - NSPR_CLFAGS="" - NSPR_LDFLAGS="" + NSS_CFLAGS="" + NSS_LDFLAGS="" fi else AC_MSG_CHECKING(for Mozilla nss3 includes) -- cgit v1.2.3