]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fixes a problem where Asterisk would not compile if IMAP_STORAGE was enabled.
authorMark Michelson <mmichelson@digium.com>
Tue, 26 Jun 2007 00:10:09 +0000 (00:10 +0000)
committerMark Michelson <mmichelson@digium.com>
Tue, 26 Jun 2007 00:10:09 +0000 (00:10 +0000)
Needed to add a space between file name and options.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@71732 65c4cc65-6c06-0410-ace0-fbb531ad65f3

configure
configure.ac

index 8d81408be651361474c82d262e32f5a28b0484b6..c58a758ae9929e0e490bcda648db8392b973641c 100755 (executable)
--- a/configure
+++ b/configure
@@ -19334,7 +19334,7 @@ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
    if test "${ac_cv_imap_tk}" = "yes"; then
       { echo "$as_me:$LINENO: result: yes" >&5
 echo "${ECHO_T}yes" >&6; }
-      IMAP_TK_LIB="${imap_libs}"`echo ${imap_ldflags}`
+      IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
       IMAP_TK_INCLUDE="${imap_include}"
       PBX_IMAP_TK=1
 
index f688a42c02fe1c24d04d217c9e228716ec8a2476..936dc54f494ad8332ebcb4bfeb28c1a05d30620a 100644 (file)
@@ -587,7 +587,7 @@ if test "${USE_IMAP_TK}" != "no"; then
    LIBS="${saved_libs}"
    if test "${ac_cv_imap_tk}" = "yes"; then
       AC_MSG_RESULT(yes) 
-      IMAP_TK_LIB="${imap_libs}"`echo ${imap_ldflags}`
+      IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
       IMAP_TK_INCLUDE="${imap_include}"
       PBX_IMAP_TK=1
       AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])