diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-24 18:02:42 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-24 18:02:42 +0000 |
commit | 7b98592282ad0de385411cbe2f6e1946fd5ff0dd (patch) | |
tree | 60d559ee59563c69afae8543d8a25d07b97040ca /main/internal_functions_win32.c | |
parent | e115fdc6d606b146ab13aa6b27a870ff0f8fe24a (diff) | |
download | php-git-7b98592282ad0de385411cbe2f6e1946fd5ff0dd.tar.gz |
include regex in Win32 build
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 6861ddb573..9d2e36479f 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -56,6 +56,7 @@ #include "ext/standard/php3_syslog.h" #include "ext/standard/php3_standard.h" #include "ext/COM/php3_COM.h" +#include "ext/standard/reg.h" /* SNMP has to be moved to ext */ /* #include "dl/snmp/php3_snmp.h" */ @@ -79,7 +80,8 @@ zend_module_entry *php3_builtin_modules[] = { phpext_syslog_ptr, phpext_bcmath_ptr, phpext_standard_ptr, - COM_module_ptr + COM_module_ptr, + phpext_regex_ptr }; |