projects
/
php
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
56a9e10
)
Kill undefined reference
author
Sascha Schumann
<sas@php.net>
Fri, 26 Nov 1999 22:37:45 +0000
(22:37 +0000)
committer
Sascha Schumann
<sas@php.net>
Fri, 26 Nov 1999 22:37:45 +0000
(22:37 +0000)
ext/standard/basic_functions.c
patch
|
blob
|
history
diff --git
a/ext/standard/basic_functions.c
b/ext/standard/basic_functions.c
index a4f09ecfed239f9f906a98eab97c1400d41edc4d..e5a7677e33a47ff6207fc4b91a245355f32134d3 100644
(file)
--- a/
ext/standard/basic_functions.c
+++ b/
ext/standard/basic_functions.c
@@
-71,6
+71,10
@@
typedef struct _php_shutdown_function_entry {
int arg_count;
} php_shutdown_function_entry;
+#ifdef ZTS
+#undef HAVE_PUTENV
+#endif
+
/* some prototypes for local functions */
int user_shutdown_function_dtor(php_shutdown_function_entry *shutdown_function_entry);
void php3_call_shutdown_functions(void);
@@
-324,10
+328,6
@@
php3_module_entry basic_functions_module = {
STANDARD_MODULE_PROPERTIES
};
-#ifdef ZTS
-#undef HAVE_PUTENV
-#endif
-
#if defined(HAVE_PUTENV)
static HashTable putenv_ht;