diff options
| author | Alexander Barton <alex@barton.de> | 2009-09-02 14:28:09 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2009-09-02 14:28:09 +0200 |
| commit | 933da741c6485e090990f296ad89e6173583829b (patch) | |
| tree | 6ec7e1fb39aafde56e8aa745ed587622b1c344fe /configure.in | |
| parent | cf7e19193b79af0711c5a03ac7da33bd84947b16 (diff) | |
| download | ngircd-933da741c6485e090990f296ad89e6173583829b.tar.gz ngircd-933da741c6485e090990f296ad89e6173583829b.zip | |
Fix --with-{openssl|gnutls} to accept path names
This patch fixes --with-openssl and --with-gnutls and enables both to accept path names, so that you can use "./configure --with-XXX=/path". All the other --with-XXX parameters support this already.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d10f6ec6..1940834b 100644 --- a/configure.in +++ b/configure.in @@ -315,7 +315,7 @@ fi AC_ARG_WITH(openssl, [ --with-openssl enable SSL support using OpenSSL], - [ if test "$withval" = "yes"; then + [ if test "$withval" != "no"; then if test "$withval" != "yes"; then CFLAGS="-I$withval/include $CFLAGS" CPPFLAGS="-I$withval/include $CPPFLAGS" @@ -332,7 +332,7 @@ AC_ARG_WITH(openssl, AC_ARG_WITH(gnutls, [ --with-gnutls enable SSL support using gnutls], - [ if test "$withval" = "yes"; then + [ if test "$withval" != "no"; then if test "$withval" != "yes"; then CFLAGS="-I$withval/include $CFLAGS" CPPFLAGS="-I$withval/include $CPPFLAGS" |