aboutsummaryrefslogtreecommitdiff
path: root/lang/php53/files/patch-ext_standard_basic_functions.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2011-02-11 03:06:03 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2011-02-11 03:06:03 +0000
commitb36e665e56175a7588102bec06e2ac62ffff3b5e (patch)
treed8c04c2dd9d515238e6ff20e97948fc22f7f82be /lang/php53/files/patch-ext_standard_basic_functions.c
parent9a9990fce5c321d0ddf8afab886e1a0b61cbee55 (diff)
Notes
Diffstat (limited to 'lang/php53/files/patch-ext_standard_basic_functions.c')
-rw-r--r--lang/php53/files/patch-ext_standard_basic_functions.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/php53/files/patch-ext_standard_basic_functions.c b/lang/php53/files/patch-ext_standard_basic_functions.c
deleted file mode 100644
index 1907338d0298..000000000000
--- a/lang/php53/files/patch-ext_standard_basic_functions.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- ext/standard/basic_functions.c.orig 2008-06-09 14:06:40.000000000 +0200
-+++ ext/standard/basic_functions.c 2008-06-09 14:08:28.000000000 +0200
-@@ -3859,7 +3860,7 @@
- SetEnvironmentVariable(pe->key, "bugbug");
- #endif
- putenv(pe->previous_value);
--# if defined(PHP_WIN32)
-+# if defined(PHP_WIN32) || __FreeBSD_version < 700050
- efree(pe->previous_value);
- # endif
- } else {
-@@ -4461,7 +4462,7 @@
- pe.previous_value = NULL;
- for (env = environ; env != NULL && *env != NULL; env++) {
- if (!strncmp(*env, pe.key, pe.key_len) && (*env)[pe.key_len] == '=') { /* found it */
--#if defined(PHP_WIN32)
-+#if defined(PHP_WIN32) || __FreeBSD_version < 700050
- /* must copy previous value because MSVCRT's putenv can free the string without notice */
- pe.previous_value = estrdup(*env);
- #else