summaryrefslogtreecommitdiffstats
path: root/php-wip.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2013-11-08 18:46:08 +0100
committerRemi Collet <fedora@famillecollet.com>2013-11-08 18:46:08 +0100
commit6d668eeb928999737b989eed5bfef5a683e11b95 (patch)
tree3c371fc47a3c6ea980113841e65db2170fe45395 /php-wip.patch
parentb26d9a2c05a6fac857c30156b246576aa60536de (diff)
php: add --with debug option for debug build
Diffstat (limited to 'php-wip.patch')
-rw-r--r--php-wip.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/php-wip.patch b/php-wip.patch
index af82ce6..0fcc0e7 100644
--- a/php-wip.patch
+++ b/php-wip.patch
@@ -102,3 +102,27 @@ index 8cee80f..72b5a1b 100644
--
1.8.4.rc3
+diff -up ext/date/lib/parse_iso_intervals.c.old ext/date/lib/parse_iso_intervals.c
+--- a/ext/date/lib/parse_iso_intervals.c.old 2013-11-08 18:22:12.225586458 +0100
++++ b/ext/date/lib/parse_iso_intervals.c 2013-11-08 18:22:47.484721897 +0100
+@@ -380,7 +380,7 @@ yy6:
+ break;
+ }
+ ptr++;
+- } while (*ptr);
++ } while (!s->errors->error_count && *ptr);
+ s->have_period = 1;
+ TIMELIB_DEINIT;
+ return TIMELIB_PERIOD;
+diff -up ext/date/lib/parse_iso_intervals.re.old ext/date/lib/parse_iso_intervals.re
+--- a/ext/date/lib/parse_iso_intervals.re.old 2013-11-08 18:09:18.815549958 +0100
++++ b/ext/date/lib/parse_iso_intervals.re 2013-11-08 18:09:34.461608419 +0100
+@@ -348,7 +348,7 @@ isoweek = year4 "-"? "W" weekof
+ break;
+ }
+ ptr++;
+- } while (*ptr);
++ } while (!s->errors->error_count && *ptr);
+ s->have_period = 1;
+ TIMELIB_DEINIT;
+ return TIMELIB_PERIOD;