diff options
| author | Andi Gutmans <andi@php.net> | 1999-09-01 19:28:07 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 1999-09-01 19:28:07 +0000 |
| commit | b6789ae332cd1677dcdac29bc24fe16006f4d383 (patch) | |
| tree | 76b6af17f1375d9a22e8387d0d5cbd8676967cf7 | |
| parent | 7894c0cc1a7fa1f06d8366d146bf2dc128a83376 (diff) | |
| download | php-git-b6789ae332cd1677dcdac29bc24fe16006f4d383.tar.gz | |
- Add sessions module to standard win32 build.
| -rw-r--r-- | main/internal_functions_win32.c | 4 | ||||
| -rw-r--r-- | main/main.c | 2 | ||||
| -rw-r--r-- | php4dllts.dsp | 8 |
3 files changed, 6 insertions, 8 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index f9312062a0..df72b65fea 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -49,6 +49,7 @@ #include "ext/standard/reg.h" #include "ext/pcre/php_pcre.h" #include "ext/odbc/php3_odbc.h" +#include "ext/session/php_session.h" /* SNMP has to be moved to ext */ /* #include "dl/snmp/php3_snmp.h" */ @@ -78,7 +79,8 @@ zend_module_entry *php3_builtin_modules[] = { phpext_regex_ptr, phpext_pcre_ptr, phpext_odbc_ptr, - phpext_lcg_ptr + phpext_lcg_ptr, + phpext_session_ptr }; diff --git a/main/main.c b/main/main.c index 77b0d160a5..3cc34ddb12 100644 --- a/main/main.c +++ b/main/main.c @@ -643,7 +643,7 @@ static void php_message_handler_for_zend(long message, void *data) time(&curtime); ta = localtime(&curtime); datetime_str = asctime(ta); - datetime_str[strlen(datetime_str)-1]=0; /* get rid of the traililng newline */ + datetime_str[strlen(datetime_str)-1]=0; /* get rid of the trailing newline */ fprintf(stderr, "[%s] Script: '%s'\n", datetime_str, SAFE_FILENAME(SG(request_info).path_translated)); } break; diff --git a/php4dllts.dsp b/php4dllts.dsp index 9392ac1438..c53cad3249 100644 --- a/php4dllts.dsp +++ b/php4dllts.dsp @@ -331,7 +331,7 @@ SOURCE=.\ext\standard\iptc.c # End Source File
# Begin Source File
-SOURCE=.\ext\lcg\lcg.c
+SOURCE=.\ext\standard\lcg.c
# End Source File
# Begin Source File
@@ -523,15 +523,11 @@ SOURCE=.\ext\standard\php3_string.h # End Source File
# Begin Source File
-SOURCE=.\functions\php3_string.h
-# End Source File
-# Begin Source File
-
SOURCE=.\functions\php3_syslog.h
# End Source File
# Begin Source File
-SOURCE=.\ext\lcg\php_lcg.h
+SOURCE=.\ext\standard\php_lcg.h
# End Source File
# Begin Source File
|
