summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--EXTENSIONS5
-rw-r--r--NEWS3
-rw-r--r--UPGRADING6
-rw-r--r--appveyor/build_task.bat2
-rw-r--r--php.ini-development32
-rw-r--r--php.ini-production32
6 files changed, 10 insertions, 70 deletions
diff --git a/EXTENSIONS b/EXTENSIONS
index 905402aa03..ec4386d008 100644
--- a/EXTENSIONS
+++ b/EXTENSIONS
@@ -76,11 +76,6 @@ MAINTENANCE: Maintained
STATUS: Working
COMMENT: DBM abstraction for db2, db3, db4, dbm, ndbm, gdbm, ini
-------------------------------------------------------------------------------
-EXTENSION: interbase
-PRIMARY MAINTAINER: Ard Biesheuvel <ard@ard.nu> (2003 - 2005)
-MAINTENANCE: Odd fixes
-STATUS: Working
--------------------------------------------------------------------------------
EXTENSION: mysqli
PRIMARY MAINTAINER: Georg Richter <georg@php.net> (2003 - 2006)
Andrey Hristov <andrey@php.net> (2003 - 2016)
diff --git a/NEWS b/NEWS
index a74f06e472..76659c2563 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,9 @@ PHP NEWS
. Removed deprecated image2wbmp(). (cmb)
. Removed deprecated png2wbmp() and jpeg2wbmp(). (cmb)
+- InterBase:
+ . Unbundled the InterBase extension and moved it to PECL. (Kalle)
+
- Intl:
. Removed deprecated INTL_IDNA_VARIANT_2003. (cmb)
diff --git a/UPGRADING b/UPGRADING
index 93376b6fa4..657aab9504 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -227,6 +227,12 @@ PHP 8.0 UPGRADE NOTES
8. Removed Extensions and SAPIs
========================================
+- Interbase:
+ . The interbase extension has been moved to PECL. Access to an InterBase
+ and/or FireBird based database is still available with the PDO_Firebird
+ extension. For more details see the RFC:
+ https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase
+
========================================
9. Other Changes to Extensions
========================================
diff --git a/appveyor/build_task.bat b/appveyor/build_task.bat
index c7e68894d8..5d03402f82 100644
--- a/appveyor/build_task.bat
+++ b/appveyor/build_task.bat
@@ -51,7 +51,7 @@ if %errorlevel% neq 0 exit /b 3
if "%THREAD_SAFE%" equ "0" set ADD_CONF=%ADD_CONF% --disable-zts
if "%INTRINSICS%" neq "" set ADD_CONF=%ADD_CONF% --enable-native-intrinsics=%INTRINSICS%
-set EXT_EXCLUDE_FROM_TEST=snmp,oci8_12c,pdo_oci,pdo_firebird,interbase,ldap,imap,ftp
+set EXT_EXCLUDE_FROM_TEST=snmp,oci8_12c,pdo_oci,pdo_firebird,ldap,imap,ftp
if "%OPCACHE%" equ "0" set EXT_EXCLUDE_FROM_TEST=%EXT_EXCLUDE_FROM_TEST%,opcache
cmd /c configure.bat ^
diff --git a/php.ini-development b/php.ini-development
index 3335fda34b..3234b7f287 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -894,7 +894,6 @@ default_socket_timeout = 60
;extension=gmp
;extension=intl
;extension=imap
-;extension=interbase
;extension=ldap
;extension=mbstring
;extension=exif ; Must be after mbstring as it depends on it
@@ -1107,37 +1106,6 @@ odbc.defaultlrl = 4096
; http://php.net/odbc.defaultbinmode
odbc.defaultbinmode = 1
-[Interbase]
-; Allow or prevent persistent links.
-ibase.allow_persistent = 1
-
-; Maximum number of persistent links. -1 means no limit.
-ibase.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-ibase.max_links = -1
-
-; Default database name for ibase_connect().
-;ibase.default_db =
-
-; Default username for ibase_connect().
-;ibase.default_user =
-
-; Default password for ibase_connect().
-;ibase.default_password =
-
-; Default charset for ibase_connect().
-;ibase.default_charset =
-
-; Default timestamp format.
-ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
-
-; Default date format.
-ibase.dateformat = "%Y-%m-%d"
-
-; Default time format.
-ibase.timeformat = "%H:%M:%S"
-
[MySQLi]
; Maximum number of persistent links. -1 means no limit.
diff --git a/php.ini-production b/php.ini-production
index 49c7d324ca..c873f3a954 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -894,7 +894,6 @@ default_socket_timeout = 60
;extension=gmp
;extension=intl
;extension=imap
-;extension=interbase
;extension=ldap
;extension=mbstring
;extension=exif ; Must be after mbstring as it depends on it
@@ -1107,37 +1106,6 @@ odbc.defaultlrl = 4096
; http://php.net/odbc.defaultbinmode
odbc.defaultbinmode = 1
-[Interbase]
-; Allow or prevent persistent links.
-ibase.allow_persistent = 1
-
-; Maximum number of persistent links. -1 means no limit.
-ibase.max_persistent = -1
-
-; Maximum number of links (persistent + non-persistent). -1 means no limit.
-ibase.max_links = -1
-
-; Default database name for ibase_connect().
-;ibase.default_db =
-
-; Default username for ibase_connect().
-;ibase.default_user =
-
-; Default password for ibase_connect().
-;ibase.default_password =
-
-; Default charset for ibase_connect().
-;ibase.default_charset =
-
-; Default timestamp format.
-ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
-
-; Default date format.
-ibase.dateformat = "%Y-%m-%d"
-
-; Default time format.
-ibase.timeformat = "%H:%M:%S"
-
[MySQLi]
; Maximum number of persistent links. -1 means no limit.