diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-14 18:25:16 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-14 18:25:16 +0000 |
commit | 1fb61df8a5d7f801be8fb5850ff639b26fc7dd0c (patch) | |
tree | ac5415670848e3834080e57c11be0a2fcaf03b64 /main/internal_functions.c.in | |
parent | 67296f0704403c84a5921011dbe44d4fee578cc5 (diff) | |
download | php-git-1fb61df8a5d7f801be8fb5850ff639b26fc7dd0c.tar.gz |
* Include all of the standard modules in internal_functions.c.in. Stig - is that
the way you intended it to be? How does the basic_functions module get in there?
* Fix to get MySQL objects working, even though I'll probably make a dedicated
MySQL object in the future.
Diffstat (limited to 'main/internal_functions.c.in')
-rw-r--r-- | main/internal_functions.c.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/internal_functions.c.in b/main/internal_functions.c.in index 4b144063db..d849b80faf 100644 --- a/main/internal_functions.c.in +++ b/main/internal_functions.c.in @@ -41,6 +41,17 @@ #include <stdio.h> #include "ext/standard/reg.h" +#include "ext/standard/dl.h" +#include "ext/standard/file.h" +#include "ext/standard/fsock.h" +#include "ext/standard/head.h" +#include "ext/standard/pack.h" +#include "ext/standard/php3_browscap.h" +#include "ext/standard/php3_crypt.h" +#include "ext/standard/php3_dir.h" +#include "ext/standard/php3_filestat.h" +#include "ext/standard/php3_mail.h" +#include "ext/standard/php3_syslog.h" @EXT_INCLUDE_CODE@ /* SNMP has to be moved to ext */ @@ -53,6 +64,17 @@ unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW }; zend_module_entry *php3_builtin_modules[] = { phpext_regex_ptr, + phpext_dl_ptr, + phpext_file_ptr, + phpext_fsock_ptr, + phpext_head_ptr, + phpext_pack_ptr, + phpext_browscap_ptr, + phpext_crypt_ptr, + phpext_dir_ptr, + phpext_filestat_ptr, + phpext_mail_ptr, + phpext_syslog_ptr, @EXT_MODULE_PTRS@ }; |