[svn-commits] branch group/autoconf_and_menuselect r18487 - in /team/group/autoconf_and_men...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Sat Apr 8 11:21:40 MST 2006


Author: russell
Date: Sat Apr  8 13:21:38 2006
New Revision: 18487

URL: http://svn.digium.com/view/asterisk?rev=18487&view=rev
Log:
move the check for HAVE_LIBPRI to after asterisk.h is included

Modified:
    team/group/autoconf_and_menuselect/build_tools/menuselect.c
    team/group/autoconf_and_menuselect/channels/chan_zap.c

Modified: team/group/autoconf_and_menuselect/build_tools/menuselect.c
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/build_tools/menuselect.c?rev=18487&r1=18486&r2=18487&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/build_tools/menuselect.c (original)
+++ team/group/autoconf_and_menuselect/build_tools/menuselect.c Sat Apr  8 13:21:38 2006
@@ -901,8 +901,8 @@
 	if ((res = build_member_list()))
 		exit(res);
 
-	/* This option is used to ask this application to check to see if
-	 * that an existing menuselect.makeopts file contails all of the
+	/* The --check-deps option is used to ask this application to check to
+	 * see if that an existing menuselect.makeopts file contails all of the
 	 * modules that have dependencies that have not been met.  If this
 	 * is not the case, an informative message will be printed to the
 	 * user and the build will fail. */

Modified: team/group/autoconf_and_menuselect/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/channels/chan_zap.c?rev=18487&r1=18486&r2=18487&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/channels/chan_zap.c (original)
+++ team/group/autoconf_and_menuselect/channels/chan_zap.c Sat Apr  8 13:21:38 2006
@@ -60,17 +60,18 @@
 #include <math.h>
 #include <tonezone.h>
 #include <ctype.h>
+#ifdef ZAPATA_R2
+#include <libmfcr2.h>
+#endif
+
+#include "asterisk.h"
+
 #ifdef HAVE_LIBPRI
 #include <libpri.h>
 #ifndef PRI_KEYPAD_FACILITY_TX
 #error "You need newer libpri"
 #endif
 #endif
-#ifdef ZAPATA_R2
-#include <libmfcr2.h>
-#endif
-
-#include "asterisk.h"
 
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 



More information about the svn-commits mailing list