Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
oci8 /
Delete
Unzip
Name
Size
Permission
Date
Action
tests
[ DIR ]
drwxrwxr-x
2022-10-31 11:36
CREDITS
173
B
-rw-rw-r--
2022-10-31 11:36
LICENSE
3.13
KB
-rw-rw-r--
2022-10-31 11:36
README.md
960
B
-rw-rw-r--
2022-10-31 11:36
config.m4
15.67
KB
-rw-rw-r--
2022-10-31 11:36
config.w32
3.75
KB
-rw-rw-r--
2022-10-31 11:36
oci8.c
116.86
KB
-rw-rw-r--
2022-10-31 11:36
oci8_collection.c
23.48
KB
-rw-rw-r--
2022-10-31 11:36
oci8_dtrace.d
2.28
KB
-rw-rw-r--
2022-10-31 11:36
oci8_failover.c
4.93
KB
-rw-rw-r--
2022-10-31 11:36
oci8_interface.c
68.54
KB
-rw-rw-r--
2022-10-31 11:36
oci8_lob.c
27.06
KB
-rw-rw-r--
2022-10-31 11:36
oci8_statement.c
59.09
KB
-rw-rw-r--
2022-10-31 11:36
package.xml
46.82
KB
-rw-rw-r--
2022-10-31 11:36
php_oci8.h
2.57
KB
-rw-rw-r--
2022-10-31 11:36
php_oci8_int.h
24.61
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
// vim:ft=javascript if (PHP_OCI8 != "no" && PHP_OCI8_11G != "no") { if (!PHP_OCI8_SHARED && !PHP_OCI8_11G_SHARED) { WARNING("oci8 and oci8-11g provide the same extension and cannot both be built statically"); PHP_OCI8 = "no" } } if (PHP_OCI8 != "no" && PHP_OCI8_12C != "no") { if (!PHP_OCI8_SHARED && !PHP_OCI8_12C_SHARED) { WARNING("oci8 and oci8-12c provide the same extension and cannot both be built statically"); PHP_OCI8 = "no" } } if (PHP_OCI8_11G != "no" && PHP_OCI8_12C != "no") { if (!PHP_OCI8_11G_SHARED && !PHP_OCI8_12C_SHARED) { WARNING("oci8-11g and oci8-12c provide the same extension and cannot both be built statically"); PHP_OCI8_11G = "no" } } ARG_WITH("oci8", "OCI8 support", "no"); if (PHP_OCI8 != "no") { oci8_dirs = new Array( PHP_OCI8 ); oci8_lib_paths = ""; oci8_inc_paths = ""; // find the Oracle install for (i = 0; i < oci8_dirs.length; i++) { oci8_lib_paths += oci8_dirs[i] + "\\lib;"; oci8_lib_paths += oci8_dirs[i] + "\\lib\\msvc;"; oci8_inc_paths += oci8_dirs[i] + "\\include;"; } oci8_inc_paths += PHP_PHP_BUILD + "\\include\\instantclient;" oci8_lib_paths += PHP_PHP_BUILD + "\\lib\\instantclient;"; if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8", oci8_inc_paths) && CHECK_LIB("oci.lib", "oci8", oci8_lib_paths)) { EXTENSION('oci8', 'oci8.c oci8_lob.c oci8_statement.c oci8_collection.c oci8_interface.c oci8_failover.c'); AC_DEFINE('HAVE_OCI8', 1); AC_DEFINE('HAVE_OCI_INSTANT_CLIENT', 1); } else { WARNING("oci8 not enabled: Oracle Database client libraries or Oracle 10g Instant Client not found"); PHP_OCI8 = "no" } } ARG_WITH("oci8-11g", "OCI8 support using Oracle 11g Instant Client", "no"); if (PHP_OCI8_11G != "no") { oci8_11g_dirs = new Array( PHP_OCI8_11G ); oci8_11g_lib_paths = ""; oci8_11g_inc_paths = ""; // find the Oracle install for (i = 0; i < oci8_11g_dirs.length; i++) { oci8_11g_lib_paths += oci8_11g_dirs[i] + "\\lib;"; oci8_11g_lib_paths += oci8_11g_dirs[i] + "\\lib\\msvc;"; oci8_11g_inc_paths += oci8_11g_dirs[i] + "\\include;"; } oci8_11g_inc_paths += PHP_PHP_BUILD + "\\include\\instantclient_11;" oci8_11g_lib_paths += PHP_PHP_BUILD + "\\lib\\instantclient_11;"; if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8_11G", oci8_11g_inc_paths) && CHECK_LIB("oci.lib", "oci8_11g", oci8_11g_lib_paths)) { EXTENSION('oci8_11g', 'oci8.c oci8_lob.c oci8_statement.c oci8_collection.c oci8_interface.c oci8_failover.c', null, null, null, "ext\\oci8_11g") AC_DEFINE('HAVE_OCI8', 1); AC_DEFINE('HAVE_OCI_INSTANT_CLIENT', 1); } else { WARNING("oci8-11g not enabled: Oracle Database client libraries or Oracle 11g Instant Client not found"); PHP_OCI8_11G = "no" } } ARG_WITH("oci8-12c", "OCI8 support using Oracle Database 12c Instant Client", "no"); if (PHP_OCI8_12C != "no") { oci8_12c_dirs = new Array( PHP_OCI8_12C ); oci8_12c_lib_paths = ""; oci8_12c_inc_paths = ""; // find the Oracle install for (i = 0; i < oci8_12c_dirs.length; i++) { oci8_12c_lib_paths += oci8_12c_dirs[i] + "\\lib;"; oci8_12c_lib_paths += oci8_12c_dirs[i] + "\\lib\\msvc;"; oci8_12c_inc_paths += oci8_12c_dirs[i] + "\\include;"; } oci8_12c_inc_paths += PHP_PHP_BUILD + "\\include\\instantclient_12;" oci8_12c_lib_paths += PHP_PHP_BUILD + "\\lib\\instantclient_12;"; if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8_12C", oci8_12c_inc_paths) && CHECK_LIB("oci.lib", "oci8_12c", oci8_12c_lib_paths)) { EXTENSION('oci8_12c', 'oci8.c oci8_lob.c oci8_statement.c oci8_collection.c oci8_interface.c oci8_failover.c', null, null, null, "ext\\oci8_12c") AC_DEFINE('HAVE_OCI8', 1); AC_DEFINE('HAVE_OCI_INSTANT_CLIENT', 1); } else { WARNING("oci8-12c not enabled: Oracle Database client libraries or Oracle Database 12c Instant Client not found"); PHP_OCI8_12C = "no" } }