diff options
author | ale <ale@FreeBSD.org> | 2006-01-16 20:08:20 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-01-16 20:08:20 +0800 |
commit | 223a176b09b25c0282d8d2c3e77499132df71e1e (patch) | |
tree | 3a2d5ffe3b3c869f81c7a511d48a9c07dc7b7b4c /databases/php5-mssql | |
parent | 081df03df9b317de0dabdb3786d7cef942292959 (diff) | |
download | freebsd-ports-gnome-223a176b09b25c0282d8d2c3e77499132df71e1e.tar.gz freebsd-ports-gnome-223a176b09b25c0282d8d2c3e77499132df71e1e.tar.zst freebsd-ports-gnome-223a176b09b25c0282d8d2c3e77499132df71e1e.zip |
Update to 5.1.2 release:
- add reflection
- enable xmlreader and xmlwriter by default in php5-extensions
Diffstat (limited to 'databases/php5-mssql')
-rw-r--r-- | databases/php5-mssql/files/patch-php_mssql.c | 23 | ||||
-rw-r--r-- | databases/php5-mssql/files/patch-php_mssql.h | 12 |
2 files changed, 0 insertions, 35 deletions
diff --git a/databases/php5-mssql/files/patch-php_mssql.c b/databases/php5-mssql/files/patch-php_mssql.c deleted file mode 100644 index 73eaa6a30057..000000000000 --- a/databases/php5-mssql/files/patch-php_mssql.c +++ /dev/null @@ -1,23 +0,0 @@ ---- php_mssql.c 2005/12/06 18:47:14 1.152.2.10 -+++ php_mssql.c 2005/12/21 22:43:06 1.152.2.11 -@@ -141,6 +141,9 @@ - STD_PHP_INI_BOOLEAN("mssql.datetimeconvert", "1", PHP_INI_ALL, OnUpdateBool, datetimeconvert, zend_mssql_globals, mssql_globals) - STD_PHP_INI_BOOLEAN("mssql.secure_connection", "0", PHP_INI_SYSTEM, OnUpdateBool, secure_connection, zend_mssql_globals, mssql_globals) - STD_PHP_INI_ENTRY_EX("mssql.max_procs", "-1", PHP_INI_ALL, OnUpdateLong, max_procs, zend_mssql_globals, mssql_globals, display_link_numbers) -+#ifdef HAVE_FREETDS -+ STD_PHP_INI_ENTRY("mssql.charset", "", PHP_INI_ALL, OnUpdateString, charset, zend_mssql_globals, mssql_globals) -+#endif - PHP_INI_END() - - /* error handler */ -@@ -495,7 +498,9 @@ - #endif - - #ifdef HAVE_FREETDS -- DBSETLCHARSET(mssql.login, "ISO-8859-1"); -+ if (MS_SQL_G(charset) && strlen(MS_SQL_G(charset))) { -+ DBSETLCHARSET(mssql.login, MS_SQL_G(charset)); -+ } - #endif - - DBSETLAPP(mssql.login,MS_SQL_G(appname)); diff --git a/databases/php5-mssql/files/patch-php_mssql.h b/databases/php5-mssql/files/patch-php_mssql.h deleted file mode 100644 index d8aefeadb1a0..000000000000 --- a/databases/php5-mssql/files/patch-php_mssql.h +++ /dev/null @@ -1,12 +0,0 @@ ---- php_mssql.h 2005/12/06 01:25:16 1.42.2.1 -+++ php_mssql.h 2005/12/21 22:43:06 1.42.2.2 -@@ -158,6 +158,9 @@ - zend_bool allow_persistent; - char *appname; - char *server_message; -+#ifdef HAVE_FREETDS -+ char *charset; -+#endif - long min_error_severity, min_message_severity; - long cfg_min_error_severity, cfg_min_message_severity; - long connect_timeout, timeout; |