123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- $OpenBSD: patch-php_ini-development,v 1.7 2016/12/19 20:35:09 martijn Exp $
- --- php.ini-development.orig.port Wed Nov 9 02:22:57 2016
- +++ php.ini-development Thu Dec 8 10:55:27 2016
- @@ -706,11 +706,8 @@ default_charset = "UTF-8"
- ;;;;;;;;;;;;;;;;;;;;;;;;;
-
- ; UNIX: "/path1:/path2"
- -;include_path = ".:/php/includes"
- +include_path = ".:OPENBSD_INCLUDE_PATH"
- ;
- -; Windows: "\path1;\path2"
- -;include_path = ".;c:\php\includes"
- -;
- ; PHP's default setting for include_path is ".;/path/to/php/pear"
- ; http://php.net/include-path
-
- @@ -732,6 +729,7 @@ user_dir =
- ; extension_dir = "./"
- ; On windows:
- ; extension_dir = "ext"
- +extension_dir = "MODULES_DIR"
-
- ; Directory where the temporary files should be placed.
- ; Defaults to the system default (see sys_get_temp_dir)
- @@ -828,7 +826,7 @@ max_file_uploads = 20
-
- ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
- ; http://php.net/allow-url-fopen
- -allow_url_fopen = On
- +allow_url_fopen = Off
-
- ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
- ; http://php.net/allow-url-include
- @@ -933,7 +931,7 @@ cli_server.color = On
- [Date]
- ; Defines the default timezone used by the date functions
- ; http://php.net/date.timezone
- -;date.timezone =
- +date.timezone = UTC
-
- ; http://php.net/date.default-latitude
- ;date.default_latitude = 31.7667
- @@ -1022,16 +1020,6 @@ pdo_mysql.default_socket=
- ;phar.cache_list =
-
- [mail function]
- -; For Win32 only.
- -; http://php.net/smtp
- -SMTP = localhost
- -; http://php.net/smtp-port
- -smtp_port = 25
- -
- -; For Win32 only.
- -; http://php.net/sendmail-from
- -;sendmail_from = me@example.com
- -
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
- ; http://php.net/sendmail-path
- ;sendmail_path =
|