Skip to content

Commit 5786064

Browse files
committed
Remove traces of OCI8/PDO_OCI from auxilairy files
1 parent 57b67e9 commit 5786064

File tree

7 files changed

+1
-165
lines changed

7 files changed

+1
-165
lines changed

.github/labeler.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@
9595
"Extension: mysqlnd":
9696
- ext/mysqlnd/**/*
9797

98-
"Extension: oci8":
99-
- ext/oci8/**/*
100-
10198
"Extension: odbc":
10299
- ext/odbc/**/*
103100

@@ -125,9 +122,6 @@
125122
"Extension: pdo_mysql":
126123
- ext/pdo_mysql/**/*
127124

128-
"Extension: pdo_oci":
129-
- ext/pdo_oci/**/*
130-
131125
"Extension: pdo_odbc":
132126
- ext/pdo_odbc/**/*
133127

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,6 @@ tmp-php.ini
277277
# ------------------------------------------------------------------------------
278278
# Generated by `./configure --enable-dtrace` for using DTrace framework
279279
# ------------------------------------------------------------------------------
280-
/ext/oci8/oci8_dtrace_gen.h
281-
/ext/oci8/oci8_dtrace_gen.h.bak
282280
/Zend/zend_dtrace_gen.h
283281
/Zend/zend_dtrace_gen.h.bak
284282

EXTENSIONS

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,6 @@ MAINTENANCE: Maintained
9393
STATUS: Working
9494
SINCE: 5.3
9595
-------------------------------------------------------------------------------
96-
EXTENSION: oci8
97-
PRIMARY MAINTAINER: Christopher Jones <[email protected]> (2007 - 2017)
98-
Antony Dovgal <[email protected]> (2003 - 2009)
99-
MAINTENANCE: Maintained
100-
STATUS: Working
101-
-------------------------------------------------------------------------------
10296
EXTENSION: odbc
10397
PRIMARY MAINTAINER: Daniel R. Kalowsky <[email protected]> (2000 - 2004)
10498
MAINTENANCE: Maintained
@@ -139,12 +133,6 @@ MAINTENANCE: Odd fixes
139133
STATUS: Working
140134
SINCE: 5.1
141135
-------------------------------------------------------------------------------
142-
EXTENSION: pdo_oci
143-
PRIMARY MAINTAINER: Christopher Jones <[email protected]> (2007 - 2017)
144-
MAINTENANCE: Odd fixes
145-
STATUS: Working
146-
SINCE: 5.1
147-
-------------------------------------------------------------------------------
148136
EXTENSION: pdo_pgsql
149137
PRIMARY MAINTAINER: Ilia Alshanetsky <[email protected]> (2004 - 2011)
150138
MAINTENANCE: Odd fixes

build/Makefile.global

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ clean:
128128
distclean: clean
129129
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 Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h
130130
rm -f main/build-defs.h scripts/phpize
131-
rm -f ext/date/lib/timelib_config.h ext/mbstring/libmbfl/config.h ext/oci8/oci8_dtrace_gen.h ext/oci8/oci8_dtrace_gen.h.bak
131+
rm -f ext/date/lib/timelib_config.h ext/mbstring/libmbfl/config.h
132132
rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 sapi/phpdbg/phpdbg.1 ext/phar/phar.1 ext/phar/phar.phar.1
133133
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
134134
rm -f ext/phar/phar.phar ext/phar/phar.php

configure.ac

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1842,24 +1842,6 @@ X
18421842
fi
18431843
fi
18441844
1845-
dnl Warn about Apache if oci8 extension is enabled on Linux.
1846-
if test "$PHP_OCI8" != "no"; then
1847-
if test "$PHP_SIGCHILD" != "yes"; then
1848-
if test "$PHP_OCI8_INSTANT_CLIENT" = "no"; then
1849-
cat <<X
1850-
+--------------------------------------------------------------------+
1851-
| Notice: |
1852-
| If you encounter <defunc> processes when using a local Oracle |
1853-
| database, set the value BEQUEATH_DETACH=YES in Oracle Net's |
1854-
| sqlnet.ora file on the PHP host, or set the environment variable |
1855-
| BEQUEATH_DETACH to YES before starting Apache. If the problem |
1856-
| still occurs, then recompile PHP and specify --enable-sigchild |
1857-
| when configuring. |
1858-
X
1859-
fi
1860-
fi
1861-
fi
1862-
18631845
fi
18641846
])
18651847
AC_OUTPUT

php.ini-development

Lines changed: 0 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -945,13 +945,10 @@ default_socket_timeout = 60
945945
;extension=mbstring
946946
;extension=exif ; Must be after mbstring as it depends on it
947947
;extension=mysqli
948-
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
949-
;extension=oci8_19 ; Use with Oracle Database 19 Instant Client
950948
;extension=odbc
951949
;extension=openssl
952950
;extension=pdo_firebird
953951
;extension=pdo_mysql
954-
;extension=pdo_oci
955952
;extension=pdo_odbc
956953
;extension=pdo_pgsql
957954
;extension=pdo_sqlite
@@ -1242,66 +1239,6 @@ mysqlnd.collect_memory_statistics = On
12421239
; key.
12431240
;mysqlnd.sha256_server_public_key =
12441241

1245-
[OCI8]
1246-
1247-
; Connection: Enables privileged connections using external
1248-
; credentials (OCI_SYSOPER, OCI_SYSDBA)
1249-
; https://php.net/oci8.privileged-connect
1250-
;oci8.privileged_connect = Off
1251-
1252-
; Connection: The maximum number of persistent OCI8 connections per
1253-
; process. Using -1 means no limit.
1254-
; https://php.net/oci8.max-persistent
1255-
;oci8.max_persistent = -1
1256-
1257-
; Connection: The maximum number of seconds a process is allowed to
1258-
; maintain an idle persistent connection. Using -1 means idle
1259-
; persistent connections will be maintained forever.
1260-
; https://php.net/oci8.persistent-timeout
1261-
;oci8.persistent_timeout = -1
1262-
1263-
; Connection: The number of seconds that must pass before issuing a
1264-
; ping during oci_pconnect() to check the connection validity. When
1265-
; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
1266-
; pings completely.
1267-
; https://php.net/oci8.ping-interval
1268-
;oci8.ping_interval = 60
1269-
1270-
; Connection: Set this to a user chosen connection class to be used
1271-
; for all pooled server requests with Oracle Database Resident
1272-
; Connection Pooling (DRCP). To use DRCP, this value should be set to
1273-
; the same string for all web servers running the same application,
1274-
; the database pool must be configured, and the connection string must
1275-
; specify to use a pooled server.
1276-
;oci8.connection_class =
1277-
1278-
; High Availability: Using On lets PHP receive Fast Application
1279-
; Notification (FAN) events generated when a database node fails. The
1280-
; database must also be configured to post FAN events.
1281-
;oci8.events = Off
1282-
1283-
; Tuning: This option enables statement caching, and specifies how
1284-
; many statements to cache. Using 0 disables statement caching.
1285-
; https://php.net/oci8.statement-cache-size
1286-
;oci8.statement_cache_size = 20
1287-
1288-
; Tuning: Enables row prefetching and sets the default number of
1289-
; rows that will be fetched automatically after statement execution.
1290-
; https://php.net/oci8.default-prefetch
1291-
;oci8.default_prefetch = 100
1292-
1293-
; Tuning: Sets the amount of LOB data that is internally returned from
1294-
; Oracle Database when an Oracle LOB locator is initially retrieved as
1295-
; part of a query. Setting this can improve performance by reducing
1296-
; round-trips.
1297-
; https://php.net/oci8.prefetch-lob-size
1298-
; oci8.prefetch_lob_size = 0
1299-
1300-
; Compatibility. Using On means oci_close() will not close
1301-
; oci_connect() and oci_new_connect() connections.
1302-
; https://php.net/oci8.old-oci-close-semantics
1303-
;oci8.old_oci_close_semantics = Off
1304-
13051242
[PostgreSQL]
13061243
; Allow or prevent persistent links.
13071244
; https://php.net/pgsql.allow-persistent

php.ini-production

Lines changed: 0 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -947,13 +947,10 @@ default_socket_timeout = 60
947947
;extension=mbstring
948948
;extension=exif ; Must be after mbstring as it depends on it
949949
;extension=mysqli
950-
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
951-
;extension=oci8_19 ; Use with Oracle Database 19 Instant Client
952950
;extension=odbc
953951
;extension=openssl
954952
;extension=pdo_firebird
955953
;extension=pdo_mysql
956-
;extension=pdo_oci
957954
;extension=pdo_odbc
958955
;extension=pdo_pgsql
959956
;extension=pdo_sqlite
@@ -1244,66 +1241,6 @@ mysqlnd.collect_memory_statistics = Off
12441241
; key.
12451242
;mysqlnd.sha256_server_public_key =
12461243

1247-
[OCI8]
1248-
1249-
; Connection: Enables privileged connections using external
1250-
; credentials (OCI_SYSOPER, OCI_SYSDBA)
1251-
; https://php.net/oci8.privileged-connect
1252-
;oci8.privileged_connect = Off
1253-
1254-
; Connection: The maximum number of persistent OCI8 connections per
1255-
; process. Using -1 means no limit.
1256-
; https://php.net/oci8.max-persistent
1257-
;oci8.max_persistent = -1
1258-
1259-
; Connection: The maximum number of seconds a process is allowed to
1260-
; maintain an idle persistent connection. Using -1 means idle
1261-
; persistent connections will be maintained forever.
1262-
; https://php.net/oci8.persistent-timeout
1263-
;oci8.persistent_timeout = -1
1264-
1265-
; Connection: The number of seconds that must pass before issuing a
1266-
; ping during oci_pconnect() to check the connection validity. When
1267-
; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
1268-
; pings completely.
1269-
; https://php.net/oci8.ping-interval
1270-
;oci8.ping_interval = 60
1271-
1272-
; Connection: Set this to a user chosen connection class to be used
1273-
; for all pooled server requests with Oracle Database Resident
1274-
; Connection Pooling (DRCP). To use DRCP, this value should be set to
1275-
; the same string for all web servers running the same application,
1276-
; the database pool must be configured, and the connection string must
1277-
; specify to use a pooled server.
1278-
;oci8.connection_class =
1279-
1280-
; High Availability: Using On lets PHP receive Fast Application
1281-
; Notification (FAN) events generated when a database node fails. The
1282-
; database must also be configured to post FAN events.
1283-
;oci8.events = Off
1284-
1285-
; Tuning: This option enables statement caching, and specifies how
1286-
; many statements to cache. Using 0 disables statement caching.
1287-
; https://php.net/oci8.statement-cache-size
1288-
;oci8.statement_cache_size = 20
1289-
1290-
; Tuning: Enables row prefetching and sets the default number of
1291-
; rows that will be fetched automatically after statement execution.
1292-
; https://php.net/oci8.default-prefetch
1293-
;oci8.default_prefetch = 100
1294-
1295-
; Tuning: Sets the amount of LOB data that is internally returned from
1296-
; Oracle Database when an Oracle LOB locator is initially retrieved as
1297-
; part of a query. Setting this can improve performance by reducing
1298-
; round-trips.
1299-
; https://php.net/oci8.prefetch-lob-size
1300-
; oci8.prefetch_lob_size = 0
1301-
1302-
; Compatibility. Using On means oci_close() will not close
1303-
; oci_connect() and oci_new_connect() connections.
1304-
; https://php.net/oci8.old-oci-close-semantics
1305-
;oci8.old_oci_close_semantics = Off
1306-
13071244
[PostgreSQL]
13081245
; Allow or prevent persistent links.
13091246
; https://php.net/pgsql.allow-persistent

0 commit comments

Comments
 (0)