[asterisk-commits] mjordan: trunk r432282 - in /trunk: ./ configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Feb 25 17:09:53 CST 2015
Author: mjordan
Date: Wed Feb 25 17:09:51 2015
New Revision: 432282
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=432282
Log:
configure: Promote SQLite3 "not installed" warning to error
Since Asterisk won't build without the library, not having it is definitely
an error. Thanks to Kyle Kurz for pointing this out.
........
Merged revisions 432280 from http://svn.asterisk.org/svn/asterisk/branches/11
........
Merged revisions 432281 from http://svn.asterisk.org/svn/asterisk/branches/13
Modified:
trunk/ (props changed)
trunk/configure
trunk/configure.ac
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.
Modified: trunk/configure.ac
URL: http://svnview.digium.com/svn/asterisk/trunk/configure.ac?view=diff&rev=432282&r1=432281&r2=432282
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Feb 25 17:09:51 2015
@@ -2245,8 +2245,8 @@
AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
if test "${PBX_SQLITE3}" != 1; then
- AC_MSG_WARN(*** Asterisk now uses SQLite3 for the internal Asterisk database.)
- AC_MSG_WARN(*** Please install the SQLite3 development package.)
+ AC_MSG_ERROR(*** Asterisk now uses SQLite3 for the internal Asterisk database.)
+ AC_MSG_ERROR(*** Please install the SQLite3 development package.)
exit 1
fi
More information about the asterisk-commits
mailing list