diff options
author | Thies C. Arntzen <thies@php.net> | 2000-05-08 10:10:00 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-05-08 10:10:00 +0000 |
commit | cd721534551adb45f2c9e7eb2db3014dc3937686 (patch) | |
tree | 5ec2b1f2d4978de449bbc005a1e617cd28cd7061 /ext/oracle/oracle.c | |
parent | 36c1a9a39d429c333861f1752d16e9a0066e3cbe (diff) | |
download | php-git-cd721534551adb45f2c9e7eb2db3014dc3937686.tar.gz |
config.m4 redone - now supports building oracle extension as shared module
# i really hope i didn't break linking agains ancient oracle-versions!
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 071d82716b..3a603e9164 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -1512,11 +1512,10 @@ PHP_MINFO_FUNCTION(oracle) php_info_print_table_start(); php_info_print_table_row(2, "Oracle Support", "enabled"); - #ifndef PHP_WIN32 - php_info_print_table_row(2, "Oracle Version", PHP_ORACLE_VERSION ); - php_info_print_table_row(2, "Compile-time ORACLE_HOME", PHP_ORACLE_HOME ); - php_info_print_table_row(2, "Libraries Used", PHP_ORACLE_LIBS ); + php_info_print_table_row(2, "Oracle Version", PHP_ORACLE_VERSION ); + php_info_print_table_row(2, "Compile-time ORACLE_HOME", PHP_ORACLE_DIR ); + php_info_print_table_row(2, "Libraries Used", PHP_ORACLE_SHARED_LIBADD ); #endif php_info_print_table_end(); } |