summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2018-03-12 11:19:41 +0100
committerGeorge Joseph <gjoseph@digium.com>2018-03-13 16:26:33 -0500
commitd9776870e8d7808a82786ef569f44c68158e9b94 (patch)
tree6f7b10e8ba902c98cf35d54250e3bfc4df2d0edb
parent4b7872c9db995e99e91fc45adfd133094a51cde3 (diff)
BuildSystem: Enable IMAP storage on openSUSE and Arch Linux.
ASTERISK-27734 Change-Id: I8d6e6a1c08c031649764f5277fbbb85e57c3a9d4
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 9add31da4..46692a326 100755
--- a/configure
+++ b/configure
@@ -21707,7 +21707,7 @@ $as_echo_n "checking for system c-client library...... " >&6; }
CPPFLAGS="${saved_cppflags}"
LIBS="${saved_libs}"
imap_ldflags=""
- imap_libs="-lc-client"
+ imap_libs="-lcrypto -lssl -lc-client"
imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
CPPFLAGS="${CPPFLAGS} ${imap_include}"
LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
diff --git a/configure.ac b/configure.ac
index 893489ac3..b2cc86625 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1853,7 +1853,7 @@ if test "${USE_IMAP_TK}" != "no"; then
CPPFLAGS="${saved_cppflags}"
LIBS="${saved_libs}"
imap_ldflags=""
- imap_libs="-lc-client"
+ imap_libs="-lcrypto -lssl -lc-client"
imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
CPPFLAGS="${CPPFLAGS} ${imap_include}"
LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`