From: Mark Michelson Date: Tue, 26 Jun 2007 00:10:09 +0000 (+0000) Subject: Fixes a problem where Asterisk would not compile if IMAP_STORAGE was enabled. X-Git-Tag: 1.6.0-beta1~3^2~2251 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2f93119c5365c13ce5e205441be4c343b2355bf;p=thirdparty%2Fasterisk.git Fixes a problem where Asterisk would not compile if IMAP_STORAGE was enabled. 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 --- diff --git a/configure b/configure index 8d81408be6..c58a758ae9 100755 --- 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 diff --git a/configure.ac b/configure.ac index f688a42c02..936dc54f49 100644 --- a/configure.ac +++ b/configure.ac @@ -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.])