diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-19 08:21:01 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-19 08:21:01 +0800 |
commit | c8ad537cb8040ac3c2de85695a8b38b92c441575 (patch) | |
tree | c183ba90edc7b2af8aa56023e0dde099602d63b7 | |
parent | b04c89fedd05bbc62847161746fecadc6fc7dd59 (diff) | |
download | gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.tar gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.tar.gz gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.tar.bz2 gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.tar.lz gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.tar.xz gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.tar.zst gsoc2013-evolution-c8ad537cb8040ac3c2de85695a8b38b92c441575.zip |
Updated the checks for NSS and NSPR
2001-03-18 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Updated the checks for NSS and NSPR
svn path=/trunk/; revision=8803
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-03-18 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Updated the checks for NSS and NSPR + 2001-03-16 Jeffrey Stedfast <fejj@ximian.com> * README: Added directions on how to build with SSL support. diff --git a/configure.in b/configure.in index ff416a9a2b..364004c292 100644 --- a/configure.in +++ b/configure.in @@ -645,7 +645,8 @@ else AC_MSG_RESULT(no) fi -AC_ARG_WITH(nss-includes, [ --with-nss-includes=PREFIX Location of Mozilla nss3 includes.]) +AC_ARG_WITH(nss-includes, [ --with-nss-includes=PREFIX Location of Mozilla nss3 includes.], + with_nss_includes="$withval", with_nss_includes="no") have_nss_includes="no" if test "x${with_nss_includes}" != "xno" -a "x${have_nspr_libs}" != "xno"; then AC_MSG_CHECKING(for Mozilla nss3 includes in $with_nss_includes) @@ -667,7 +668,8 @@ else AC_MSG_RESULT(no) fi -AC_ARG_WITH(nss-libs, [ --with-nss-libs=PREFIX Location of Mozilla nss3 libs/includes.]) +AC_ARG_WITH(nss-libs, [ --with-nss-libs=PREFIX Location of Mozilla nss3 libs/includes.], + with_nss_libs="$withval", with_nss_libs="no") msg_nss="no" if test "x${with_nss_libs}" != "xno" -a "x${have_nss_includes}" != "xno"; then LDFLAGS_save="$LDFLAGS" |