File tree 1 file changed +27
-27
lines changed
1 file changed +27
-27
lines changed Original file line number Diff line number Diff line change 58
58
#endif
59
59
#include "ext/standard/reg.h"
60
60
#include "ext/pcre/php_pcre.h"
61
- #if HAVE_UODBC
61
+ #ifdef HAVE_UODBC
62
62
#include "ext/odbc/php_odbc.h"
63
63
#endif
64
- #if HAVE_PHP_SESSION
64
+ #ifdef HAVE_PHP_SESSION
65
65
#include "ext/session/php_session.h"
66
66
#endif
67
- #if HAVE_MBSTRING
67
+ #ifdef HAVE_MBSTRING
68
68
#include "ext/mbstring/mbstring.h"
69
69
#endif
70
- #if HAVE_TOKENIZER
70
+ #ifdef HAVE_TOKENIZER
71
71
#include "ext/tokenizer/php_tokenizer.h"
72
72
#endif
73
- #if HAVE_ZLIB
73
+ #ifdef HAVE_ZLIB
74
74
#include "ext/zlib/php_zlib.h"
75
75
#endif
76
- #if HAVE_LIBXML
76
+ #ifdef HAVE_LIBXML
77
77
#include "ext/libxml/php_libxml.h"
78
- #if HAVE_DOM
78
+ #ifdef HAVE_DOM
79
79
#include "ext/dom/php_dom.h"
80
80
#endif
81
- #if HAVE_SIMPLEXML
81
+ #ifdef HAVE_SIMPLEXML
82
82
#include "ext/simplexml/php_simplexml.h"
83
83
#endif
84
84
#endif
85
- #if HAVE_XML
85
+ #ifdef HAVE_XML
86
86
#include "ext/xml/php_xml.h"
87
87
#endif
88
88
#include "ext/com_dotnet/php_com_dotnet.h"
89
89
#include "ext/spl/php_spl.h"
90
- #if HAVE_XML && HAVE_XMLREADER
90
+ #if defined( HAVE_XML ) && defined( HAVE_XMLREADER )
91
91
#include "ext/xmlreader/php_xmlreader.h"
92
92
#endif
93
- #if HAVE_XML && HAVE_XMLWRITER
93
+ #if defined( HAVE_XML ) && defined( HAVE_XMLWRITER )
94
94
#include "ext/xmlwriter/php_xmlwriter.h"
95
95
#endif
96
96
/* }}} */
97
97
98
98
/* {{{ php_builtin_extensions[] */
99
99
static zend_module_entry * const php_builtin_extensions [] = {
100
100
phpext_standard_ptr
101
- #if HAVE_BCMATH
101
+ #ifdef HAVE_BCMATH
102
102
,phpext_bcmath_ptr
103
103
#endif
104
- #if HAVE_CALENDAR
104
+ #ifdef HAVE_CALENDAR
105
105
,phpext_calendar_ptr
106
106
#endif
107
107
,phpext_com_dotnet_ptr
108
- #if HAVE_CTYPE
108
+ #ifdef HAVE_CTYPE
109
109
,phpext_ctype_ptr
110
110
#endif
111
111
,phpext_date_ptr
112
- #if HAVE_FTP
112
+ #ifdef HAVE_FTP
113
113
,phpext_ftp_ptr
114
114
#endif
115
115
,phpext_hash_ptr
116
- #if HAVE_ICONV
116
+ #ifdef HAVE_ICONV
117
117
,phpext_iconv_ptr
118
118
#endif
119
- #if HAVE_MBSTRING
119
+ #ifdef HAVE_MBSTRING
120
120
,phpext_mbstring_ptr
121
121
#endif
122
- #if HAVE_UODBC
122
+ #ifdef HAVE_UODBC
123
123
,phpext_odbc_ptr
124
124
#endif
125
125
,phpext_pcre_ptr
126
126
,phpext_reflection_ptr
127
- #if HAVE_PHP_SESSION
127
+ #ifdef HAVE_PHP_SESSION
128
128
,phpext_session_ptr
129
129
#endif
130
- #if HAVE_TOKENIZER
130
+ #ifdef HAVE_TOKENIZER
131
131
,phpext_tokenizer_ptr
132
132
#endif
133
- #if HAVE_ZLIB
133
+ #ifdef HAVE_ZLIB
134
134
,phpext_zlib_ptr
135
135
#endif
136
- #if HAVE_LIBXML
136
+ #ifdef HAVE_LIBXML
137
137
,phpext_libxml_ptr
138
- #if HAVE_DOM
138
+ #ifdef HAVE_DOM
139
139
,phpext_dom_ptr
140
140
#endif
141
- #if HAVE_SIMPLEXML
141
+ #ifdef HAVE_SIMPLEXML
142
142
,phpext_simplexml_ptr
143
143
#endif
144
144
#endif
145
- #if HAVE_XML
145
+ #ifdef HAVE_XML
146
146
,phpext_xml_ptr
147
147
#endif
148
148
,phpext_spl_ptr
149
- #if HAVE_XML && HAVE_XMLREADER
149
+ #if defined( HAVE_XML ) && defined ( HAVE_XMLREADER )
150
150
,phpext_xmlreader_ptr
151
151
#endif
152
- #if HAVE_XML && HAVE_XMLWRITER
152
+ #if defined( HAVE_XML ) && defined ( HAVE_XMLWRITER )
153
153
,phpext_xmlwriter_ptr
154
154
#endif
155
155
};
You can’t perform that action at this time.
0 commit comments