diff options
| author | Zeev Suraski <zeev@php.net> | 1999-04-27 10:00:54 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-04-27 10:00:54 +0000 |
| commit | 1245356128de425b78ae9f69507ec89f16396644 (patch) | |
| tree | 9e245b85a4eba0a9593ffbc3a933b8bb72af01ef /main/configuration-scanner.l | |
| parent | 9b564535666d1d6e402b4f2f80c2a6ab1156d3f5 (diff) | |
| download | php-git-1245356128de425b78ae9f69507ec89f16396644.tar.gz | |
* Get rid of the memory leak messages in case of fatal errors or exit()
* .dsp fixes
* Minor fixes
Diffstat (limited to 'main/configuration-scanner.l')
| -rw-r--r-- | main/configuration-scanner.l | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main/configuration-scanner.l b/main/configuration-scanner.l index 709fbbbe64..e72a1c6ee9 100644 --- a/main/configuration-scanner.l +++ b/main/configuration-scanner.l @@ -64,6 +64,17 @@ void init_cfg_scanner() return T_ZEND_EXTENSION_TS; } + +<INITIAL>"zend_extension_debug" { + return T_ZEND_EXTENSION_DEBUG; +} + + +<INITIAL>"zend_extension_debug_ts" { + return T_ZEND_EXTENSION_DEBUG_TS; +} + + <INITIAL>[ ]*("true"|"on"|"yes")[ ]* { cfglval->value.str.val = php3_strndup("1",1); cfglval->value.str.len = 1; |
