summaryrefslogtreecommitdiff
path: root/main/configuration-parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'main/configuration-parser.y')
-rw-r--r--main/configuration-parser.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/configuration-parser.y b/main/configuration-parser.y
index a2ea934bb1..0f4a57d0fc 100644
--- a/main/configuration-parser.y
+++ b/main/configuration-parser.y
@@ -382,25 +382,25 @@ statement:
php3_dl(&$3,MODULE_PERSISTENT,&dummy);
}
| T_ZEND_EXTENSION '=' string {
-#if !defined(ZTS) && !defined(ZEND_DEBUG)
+#if !defined(ZTS) && !ZEND_DEBUG
zend_load_extension($3.value.str.val);
#endif
free($3.value.str.val);
}
| T_ZEND_EXTENSION_TS '=' string {
-#if defined(ZTS) && !defined(ZEND_DEBUG)
+#if defined(ZTS) && !ZEND_DEBUG
zend_load_extension($3.value.str.val);
#endif
free($3.value.str.val);
}
| T_ZEND_EXTENSION_DEBUG '=' string {
-#if !defined(ZTS) && defined(ZEND_DEBUG)
+#if !defined(ZTS) && ZEND_DEBUG
zend_load_extension($3.value.str.val);
#endif
free($3.value.str.val);
}
| T_ZEND_EXTENSION_DEBUG_TS '=' string {
-#if defined(ZTS) && defined(ZEND_DEBUG)
+#if defined(ZTS) && ZEND_DEBUG
zend_load_extension($3.value.str.val);
#endif
free($3.value.str.val);