Skip to content

Commit 9274655

Browse files
committed
---
yaml --- r: 79886 b: refs/heads/master c: a6a1785 h: refs/heads/master v: v3
1 parent 16a5ac0 commit 9274655

File tree

1,177 files changed

+131215
-80835
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,177 files changed

+131215
-80835
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
refs/heads/migration/sqlite-start: 15d2dda909da2176151dffe0af9f6516dc9397ea
3-
refs/heads/master: 58f4bf441a89bde7e91e3a8fdcd900cbc61df558
3+
refs/heads/master: a6a1785e23eba03f71998cc2f58e0293edeed82e

trunk/.gdbinit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ define dump_bt
106106
printf "%ld", $zvalue->value.lval
107107
end
108108
if $type == 2
109-
printf "%lf", $zvalue->value.dval
109+
printf "%f", $zvalue->value.dval
110110
end
111111
if $type == 3
112112
if $zvalue->value.lval
@@ -185,7 +185,7 @@ define ____printzv_contents
185185
printf "long: %ld", $zvalue->value.lval
186186
end
187187
if $type == 2
188-
printf "double: %lf", $zvalue->value.dval
188+
printf "double: %f", $zvalue->value.dval
189189
end
190190
if $type == 3
191191
printf "bool: "

trunk/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ sapi/fpm/php-fpm.1
246246
sapi/fpm/init.d.php-fpm
247247
sapi/fpm/php-fpm.conf
248248
sapi/fpm/fpm/php-cgi
249+
sapi/phpdbg/phpdbg_parser.c
250+
sapi/phpdbg/phpdbg_parser.h
249251
sapi/phpdbg/phpdbg
250252
scripts/php-config
251253
scripts/phpize

trunk/CODING_STANDARDS

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,10 @@ The file labelled 'EXPERIMENTAL' should include the following
279279
information::
280280

281281
Any authoring information (known bugs, future directions of the module).
282-
Ongoing status notes which may not be appropriate for SVN comments.
282+
Ongoing status notes which may not be appropriate for Git comments.
283+
284+
In general new features should go to PECL or experimental branches until
285+
there are specific reasons for directly adding it to the core distribution.
283286

284287
Aliases & Legacy Documentation
285288
-----------------------------------

trunk/Makefile.global

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ clean:
120120
distclean: clean
121121
rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module sapi/apache_hooks/libphp$(PHP_MAJOR_VERSION).module buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h
122122
rm -f php5.spec main/build-defs.h scripts/phpize
123-
rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/mysqlnd/php_mysqlnd_config.h
123+
rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/oci8/oci8_dtrace_gen.h ext/oci8/oci8_dtrace_gen.h.bak
124124
rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 ext/phar/phar.1 ext/phar/phar.phar.1
125125
rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html
126126
rm -f ext/iconv/php_have_bsd_iconv.h ext/iconv/php_have_glibc_iconv.h ext/iconv/php_have_ibm_iconv.h ext/iconv/php_have_iconv.h ext/iconv/php_have_libiconv.h ext/iconv/php_iconv_aliased_libiconv.h ext/iconv/php_iconv_supports_errno.h ext/iconv/php_php_iconv_h_path.h ext/iconv/php_php_iconv_impl.h

0 commit comments

Comments
 (0)