File tree 2 files changed +3
-27
lines changed
2 files changed +3
-27
lines changed Original file line number Diff line number Diff line change @@ -135,19 +135,19 @@ AC_MSG_CHECKING(whether to enable Zend debugging)
135
135
AC_MSG_RESULT ( $ZEND_DEBUG )
136
136
137
137
if test "$ZEND_DEBUG" = "yes"; then
138
- AC_DEFINE ( ZEND_DEBUG ,1 )
138
+ AC_DEFINE ( ZEND_DEBUG ,1 , [ ] )
139
139
echo " $CFLAGS" | grep ' -g' >/dev/null || DEBUG_CFLAGS="-g"
140
140
test -n "$GCC" && DEBUG_CFLAGS="$DEBUG_CFLAGS -Wall"
141
141
test -n "$GCC" && test "$USE_MAINTAINER_MODE" = "yes" && \
142
142
DEBUG_CFLAGS="$DEBUG_CFLAGS -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations"
143
143
else
144
- AC_DEFINE ( ZEND_DEBUG ,0 )
144
+ AC_DEFINE ( ZEND_DEBUG ,0 , [ ] )
145
145
fi
146
146
147
147
test -n "$DEBUG_CFLAGS" && CFLAGS="$CFLAGS $DEBUG_CFLAGS"
148
148
149
149
if test "$ZEND_EXPERIMENTAL_ZTS" = "yes"; then
150
- AC_DEFINE ( ZTS )
150
+ AC_DEFINE ( ZTS , 1 , [ ] )
151
151
ZEND_SCANNER_TYPE=cc
152
152
CPPFLAGS="$CPPFLAGS -I../TSRM"
153
153
LIBZEND_CPLUSPLUS_CHECKS
Original file line number Diff line number Diff line change 3
3
4
4
@TOP @
5
5
6
- /* This is the default configuration file to read */
7
- #define USE_CONFIG_FILE 1
8
-
9
6
/* these are defined by automake */
10
7
#undef PACKAGE
11
8
#undef VERSION
12
9
13
- /* define uint by configure if it is missed (QNX and BSD derived) */
14
10
#undef uint
15
-
16
- /* define ulong by configure if it is missed (most probably is) */
17
11
#undef ulong
18
12
19
- /* Undefine if you want stricter XML/SGML compliance by default */
20
- /* (this disables "<?expression?>" by default) */
21
- #define T_DEFAULT_SHORT_OPEN_TAG 1
22
-
23
- /* Define both of these if you want the bundled REGEX library */
24
- #define REGEX 0
25
- #define HSREGEX 0
26
-
27
- #undef ZEND_DEBUG
28
-
29
13
/* Define if you want to enable memory limit support */
30
14
#define MEMORY_LIMIT 0
31
15
32
- /* Define to compile Zend thread safe */
33
- #undef ZTS
34
-
35
- #undef HAVE_LIBDL
36
-
37
16
@BOTTOM @
38
17
39
18
#ifdef HAVE_STDLIB_H
50
29
# include <strings.h>
51
30
#endif
52
31
53
- /* Define if you have stdiostream.h */
54
- #undef HAVE_STDIOSTREAM_H
55
-
56
32
#if ZEND_BROKEN_SPRINTF
57
33
int zend_sprintf (char * buffer , const char * format , ...);
58
34
#else
You can’t perform that action at this time.
0 commit comments