CVSROOT: /sources/m4 Module name: m4 Changes by: Gary V. Vaughan <gary> 07/04/02 12:06:23
Index: modules/traditional.c =================================================================== RCS file: /sources/m4/m4/modules/traditional.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- modules/traditional.c 15 Jan 2007 14:04:27 -0000 1.6 +++ modules/traditional.c 2 Apr 2007 12:06:23 -0000 1.7 @@ -19,7 +19,13 @@ #include <config.h> -#include <m4module.h> +/* Build using only the exported interfaces, unless NDEBUG is set, in + which case use private symbols to speed things up as much as possible. */ +#ifndef NDEBUG +# include <m4/m4module.h> +#else +# include "m4private.h" +#endif /* Rename exported symbols for dlpreload()ing. */ #define m4_macro_table traditional_LTX_m4_macro_table
