diff options
author | Eduardo Chappa <chappa@washington.edu> | 2016-12-09 23:52:56 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2016-12-09 23:52:56 -0700 |
commit | 4638db18b0a2ebc5e631886e7d89218641be819f (patch) | |
tree | 194afec3e47c087bf8579781ffe9b89dc158f528 /configure | |
parent | 702c64290612155aec75cac92dbfe8caab0ba196 (diff) | |
download | alpine-4638db18b0a2ebc5e631886e7d89218641be819f.tar.xz |
* Add location of openssl libraries, include files, etc for openssl in
manjaro Linux.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.ac Rev:19 by chappa@washington.edu. +# From configure.ac Rev:20 by chappa@washington.edu. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for alpine 2.20.99. # @@ -17202,6 +17202,12 @@ else alpine_SSLINCLUDE="/usr/include/openssl" alpine_SSLLIB="/usr/lib" fi + elif test -f /etc/manjaro-release ; then + alpine_SSLDIR="/etc/ssl" + alpine_SSLCERTS="$alpine_SSLDIR/certs" + alpine_SSLKEYS="$alpine_SSLDIR/private" + alpine_SSLINCLUDE="/usr/include/openssl" + alpine_SSLLIB="/usr/lib" else alpine_SSLTYPE="nopwd" alpine_SSLDIR="/usr" @@ -18494,7 +18500,7 @@ fi if test "x$alpine_CRYPTO_DEVEL" = "xnone" ; then - as_fn_error $? "crypto library file crypt.h NOT found. Install correspoding licrypt-devel package" "$LINENO" 5 + as_fn_error $? "crypto library file crypto.h NOT found. Install correspoding libcrypt-devel package" "$LINENO" 5 exit 1 fi fi |