diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-07 22:56:48 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-07 22:56:48 +0800 |
commit | 1f4d1db93534a70ca729e5bd23be0a792502bf12 (patch) | |
tree | 24aa0da05904774b74651bb2f6413f6e60e76cb7 /configure.in | |
parent | 330abd560923fdb2e419b16729c11fc7794d5613 (diff) | |
download | gsoc2013-evolution-1f4d1db93534a70ca729e5bd23be0a792502bf12.tar.gz gsoc2013-evolution-1f4d1db93534a70ca729e5bd23be0a792502bf12.tar.zst gsoc2013-evolution-1f4d1db93534a70ca729e5bd23be0a792502bf12.zip |
one-line OpenSSL fix from Yanko Kaneti <yaneti@declera.com>
* configure.in: one-line OpenSSL fix from Yanko Kaneti
<yaneti@declera.com>
svn path=/trunk/; revision=12674
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ba3fb02552..126d29d95f 100644 --- a/configure.in +++ b/configure.in @@ -920,7 +920,7 @@ if test "x${msg_nss}" != "xyes"; then case $with_openssl_libs in ""|-L*) ;; - *) $with_openssl_libs="-L$with_openssl_libs" ;; + *) with_openssl_libs="-L$with_openssl_libs" ;; esac AC_CHECK_LIB(dl, dlopen, DL_LDFLAGS="-ldl", DL_LDFLAGS="") |