9fcc47fadb
- fix pecl launcher (need ini to be parsed for some extenstions going to be build as shared, mainly simplexml) - add fix for new unpack format (php 5.5)
10 lines
251 B
Bash
10 lines
251 B
Bash
#!/bin/sh
|
|
exec /usr/bin/php -C -q \
|
|
-d include_path=/usr/share/pear \
|
|
-d date.timezone=UTC \
|
|
-d output_buffering=1 \
|
|
-d variables_order=EGPCS \
|
|
-d safe_mode=0 \
|
|
-d register_argc_argv="On" \
|
|
/usr/share/pear/peclcmd.php "$@"
|