[asterisk-commits] branch group/autoconf_and_menuselect r18485 - in
/team/group/autoconf_and_men...
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sat Apr 8 10:41:31 MST 2006
Author: kpfleming
Date: Sat Apr 8 12:41:30 2006
New Revision: 18485
URL: http://svn.digium.com/view/asterisk?rev=18485&view=rev
Log:
include header files properly so autoconf output can be used
Modified:
team/group/autoconf_and_menuselect/ast_expr2.c
team/group/autoconf_and_menuselect/ast_expr2.fl
team/group/autoconf_and_menuselect/ast_expr2.y
team/group/autoconf_and_menuselect/ast_expr2f.c
team/group/autoconf_and_menuselect/res/res_musiconhold.c
Modified: team/group/autoconf_and_menuselect/ast_expr2.c
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/ast_expr2.c?rev=18485&r1=18484&r2=18485&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/ast_expr2.c (original)
+++ team/group/autoconf_and_menuselect/ast_expr2.c Sat Apr 8 12:41:30 2006
@@ -145,9 +145,11 @@
#include <limits.h>
#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
#include "asterisk/ast_expr.h"
#include "asterisk/logger.h"
-#include "asterisk/strings.h"
#if defined(LONG_LONG_MIN) && !defined(QUAD_MIN)
#define QUAD_MIN LONG_LONG_MIN
Modified: team/group/autoconf_and_menuselect/ast_expr2.fl
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/ast_expr2.fl?rev=18485&r1=18484&r2=18485&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/ast_expr2.fl (original)
+++ team/group/autoconf_and_menuselect/ast_expr2.fl Sat Apr 8 12:41:30 2006
@@ -38,6 +38,9 @@
#include <limits.h>
#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
#include "asterisk/ast_expr.h"
#include "asterisk/logger.h"
#include "asterisk/strings.h"
Modified: team/group/autoconf_and_menuselect/ast_expr2.y
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/ast_expr2.y?rev=18485&r1=18484&r2=18485&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/ast_expr2.y (original)
+++ team/group/autoconf_and_menuselect/ast_expr2.y Sat Apr 8 12:41:30 2006
@@ -26,8 +26,13 @@
#include <errno.h>
#include <regex.h>
#include <limits.h>
-#include <asterisk/ast_expr.h>
-#include <asterisk/logger.h>
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/ast_expr.h"
+#include "asterisk/logger.h"
#if defined(LONG_LONG_MIN) && !defined(QUAD_MIN)
#define QUAD_MIN LONG_LONG_MIN
Modified: team/group/autoconf_and_menuselect/ast_expr2f.c
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/ast_expr2f.c?rev=18485&r1=18484&r2=18485&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/ast_expr2f.c (original)
+++ team/group/autoconf_and_menuselect/ast_expr2f.c Sat Apr 8 12:41:30 2006
@@ -1267,9 +1267,14 @@
#include <errno.h>
#include <regex.h>
#include <limits.h>
-#include <asterisk/ast_expr.h>
-#include <asterisk/logger.h>
-#include <asterisk/strings.h>
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/ast_expr.h"
+#include "asterisk/logger.h"
+#include "asterisk/strings.h"
enum valtype {
AST_EXPR_integer, AST_EXPR_numeric_string, AST_EXPR_string
Modified: team/group/autoconf_and_menuselect/res/res_musiconhold.c
URL: http://svn.digium.com/view/asterisk/team/group/autoconf_and_menuselect/res/res_musiconhold.c?rev=18485&r1=18484&r2=18485&view=diff
==============================================================================
--- team/group/autoconf_and_menuselect/res/res_musiconhold.c (original)
+++ team/group/autoconf_and_menuselect/res/res_musiconhold.c Sat Apr 8 12:41:30 2006
@@ -37,6 +37,13 @@
#include <netinet/in.h>
#include <sys/stat.h>
#include <dirent.h>
+#include <unistd.h>
+#include <sys/ioctl.h>
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
#ifdef HAVE_ZAPTEL
#ifdef __linux__
#include <linux/zaptel.h>
@@ -44,12 +51,6 @@
#include <zaptel.h>
#endif /* __linux__ */
#endif
-#include <unistd.h>
-#include <sys/ioctl.h>
-
-#include "asterisk.h"
-
-ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/lock.h"
#include "asterisk/file.h"
More information about the asterisk-commits
mailing list