[asterisk-commits] mmichelson: trunk r71732 - in /trunk: configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 25 19:10:09 CDT 2007
Author: mmichelson
Date: Mon Jun 25 19:10:09 2007
New Revision: 71732
URL: http://svn.digium.com/view/asterisk?view=rev&rev=71732
Log:
Fixes a problem where Asterisk would not compile if IMAP_STORAGE was enabled.
Needed to add a space between file name and options.
Modified:
trunk/configure
trunk/configure.ac
Modified: trunk/configure
URL: http://svn.digium.com/view/asterisk/trunk/configure?view=diff&rev=71732&r1=71731&r2=71732
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Mon Jun 25 19:10:09 2007
@@ -19334,7 +19334,7 @@
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
Modified: trunk/configure.ac
URL: http://svn.digium.com/view/asterisk/trunk/configure.ac?view=diff&rev=71732&r1=71731&r2=71732
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Jun 25 19:10:09 2007
@@ -587,7 +587,7 @@
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.])
More information about the asterisk-commits
mailing list