Include config.h in preparation of moving the definition
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 2 Feb 2012 11:54:33 +0000 (11:54 +0000)
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 2 Feb 2012 11:54:33 +0000 (11:54 +0000)
of _U_ from the compiler command line into config.h

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40806 f5534014-38df-0310-8fa8-9805f1628bb7

capture_stop_conditions.c
conditions.c
epan/asm_utils.c
epan/dfilter/drange.c
epan/dtd_grammar.lemon
epan/dtd_preparse.l
tools/lemon/lemon.c

index 09ac5b7d4ab94810feb1bd0bd64bb1b0682b74cb..d23f78ced174b3fdc3becc591a2d3cf2c6ac5fb4 100644 (file)
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <time.h>
 #include <string.h>
 #include <stdlib.h>
index f064587fea398dcd3d728c6d7547da0f5e23957d..882f9b4d7ac1c2c070e3bda195c7450b202e6dcf 100644 (file)
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <string.h>
 #include <stdlib.h>
 #include <stdarg.h>
index a76029ae21d357c31fa1413ffcced71bd230e28d..33adb6fe58bff64254e7f0606554f78b4f1e791a 100644 (file)
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <string.h>
 #include <ctype.h>
 #include <glib.h>
@@ -35,7 +39,7 @@ wrs_strcmp(gconstpointer a, gconstpointer b)
     return strcmp((const char*)a, (const char*)b);
 }
 
-gint 
+gint
 wrs_strcmp_with_data(gconstpointer a, gconstpointer b, gpointer user_data _U_)
 {
     return strcmp((const char*)a, (const char*)b);
@@ -47,7 +51,7 @@ wrs_str_equal(gconstpointer a, gconstpointer b)
     return !strcmp((const char*)a, (const char*)b);
 }
 
-guchar 
+guchar
 wrs_check_charset(const guchar table[256], const char *str)
 {
     const char *p = str;
index 218b8f3c014ccd014c2775ac06c7606d4083811c..800386680f1b62fd415f421eb8de8a11d5532a8e 100644 (file)
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "drange.h"
 
 /* drange_node constructor */
index 024dedc4e0f4c9533d30934bd3cf63aa1ba91647..2ae997d10a80a3ae81b7326070df69358611acb3 100644 (file)
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <glib.h>
 #include <assert.h>
index 7e951b0f6b96b892e96c2cc1d5d270d80df4b772..2857296e6f8abb8c3b8b8c40eb3180b48ca7575e 100644 (file)
         * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
         */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <glib.h>
 #include <string.h>
 #include <errno.h>
index 0968212cdeeeae47815d236d91451ebdd52edc9c..606eadc1488c380e7c80dbe6d530a4f9fa26d85e 100644 (file)
 ** Updated to sqlite lemon version 1.59
 ** $Id$
 */
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdarg.h>
 #include <stdlib.h>