From 74f31a51bc4fdf14b6f3a5d2f886c65ff882bd55 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sun, 18 Feb 2007 15:03:42 +0000 Subject: add -Wundef to the --enable-dev-mode flags, so that mistyped macro names in #if expressions will be caught convert various #if expressions to #ifdef for macros that may not be defined (and where the value is not important) Note: two of these changes are in bison generated files which is going to be inconvenient when they are regenerated git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55329 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/ast_expr2.c | 2 +- main/editline/refresh.c | 2 +- main/enum.c | 2 ++ main/srv.c | 2 ++ 4 files changed, 6 insertions(+), 2 deletions(-) (limited to 'main') diff --git a/main/ast_expr2.c b/main/ast_expr2.c index 5c1d9bf71..85515c455 100644 --- a/main/ast_expr2.c +++ b/main/ast_expr2.c @@ -367,7 +367,7 @@ typedef short int yytype_int16; #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ -# if YYENABLE_NLS +# ifdef YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) diff --git a/main/editline/refresh.c b/main/editline/refresh.c index 935117741..fcebe1253 100644 --- a/main/editline/refresh.c +++ b/main/editline/refresh.c @@ -215,7 +215,7 @@ re_refresh(EditLine *el) prompt_print(el, EL_PROMPT); /* draw the current input buffer */ -#if notyet +#ifdef notyet termsz = el->el_term.t_size.h * el->el_term.t_size.v; if (el->el_line.lastchar - el->el_line.buffer > termsz) { /* diff --git a/main/enum.c b/main/enum.c index 0cdf308fa..5db6adb01 100644 --- a/main/enum.c +++ b/main/enum.c @@ -48,9 +48,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include #include #include +#ifdef __APPLE__ #if __APPLE_CC__ >= 1495 #include #endif +#endif #include #include #include diff --git a/main/srv.c b/main/srv.c index 8b7e76bfc..7cf072cda 100644 --- a/main/srv.c +++ b/main/srv.c @@ -36,9 +36,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include #include #include +#ifdef __APPLE__ #if __APPLE_CC__ >= 1495 #include #endif +#endif #include #include #include -- cgit v1.2.3