diff options
author | Stig Bakken <ssb@php.net> | 1999-04-21 22:49:16 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-04-21 22:49:16 +0000 |
commit | f67a9bdc52c39eed6837aef8a1eca195549b1469 (patch) | |
tree | 0a7be5c5b405910f4d616df0d9bed82196d3c966 /ext/oracle/config.m4 | |
parent | 96660d9a8ce06f12f186d0e3bb5697ce747182a5 (diff) | |
download | php-git-f67a9bdc52c39eed6837aef8a1eca195549b1469.tar.gz |
moved dav, msql and oracle to ext/
Diffstat (limited to 'ext/oracle/config.m4')
-rw-r--r-- | ext/oracle/config.m4 | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/ext/oracle/config.m4 b/ext/oracle/config.m4 new file mode 100644 index 0000000000..1deec69bfe --- /dev/null +++ b/ext/oracle/config.m4 @@ -0,0 +1,162 @@ +dnl $Id$ + +AC_DEFUN(AC_ORACLE_VERSION,[ + AC_MSG_CHECKING([Oracle version]) + if test -f "$ORACLEINST_TOP/orainst/unix.rgs" + then + ORACLE_VERSION=`grep '"ocommon"' $ORACLEINST_TOP/orainst/unix.rgs | sed 's/[ ][ ]*/:/g' | cut -d: -f 6 | cut -c 2-4` + test -z "$ORACLE_VERSION" && ORACLE_VERSION=7.3 + else + ORACLE_VERSION=8.0 + fi + AC_MSG_RESULT($ORACLE_VERSION) +]) + +AC_MSG_CHECKING(for Oracle support) +AC_ARG_WITH(oracle, +[ --with-oracle[=DIR] Include Oracle database support. DIR is Oracle's + home directory, defaults to \$ORACLE_HOME.], +[ + case "$withval" in + yes) + ORACLEINST_TOP=$ORACLE_HOME + AC_MSG_RESULT(yes) + PHP_EXTENSION(oracle) + ;; + no) + ORACLEINST_TOP= + AC_MSG_RESULT(no) + ;; + *) + ORACLEINST_TOP=$withval + AC_MSG_RESULT(yes) + PHP_EXTENSION(oracle) + ;; + esac + + if test "$ORACLEINST_TOP" != "" + then + + # Oracle include files + + if test -f "$ORACLEINST_TOP/rdbms/public/ocidfn.h" + then + # V8.0.5 + ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/rdbms/public" + elif test -f "$ORACLEINST_TOP/rdbms/demo/ocidfn.h" + then + # V7.[0123] + ORACLE_INCLUDE=-I$ORACLEINST_TOP/rdbms/demo + fi + + if test -d "$ORACLEINST_TOP/network/public" + then + # V8 + ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/network/public" + fi + + if test -d "$ORACLEINST_TOP/plsql/public" + then + # V8 + ORACLE_INCLUDE="$ORACLE_INCLUDE -I$ORACLEINST_TOP/plsql/public" + fi + + # Need to know the version, otherwhise we will mixup nlsrtl + AC_ORACLE_VERSION($ORACLEINST_TOP) + + # Oracle libs - nightmare :-) + + ORACLE_LIBDIR=lib + ORACLE_LFLAGS="-L$ORACLEINST_TOP/$ORACLE_LIBDIR ${ld_runpath_switch}$ORACLEINST_TOP/$ORACLE_LIBDIR" + if test -f "$ORACLEINST_TOP/rdbms/lib/sysliblist" + then + ORA_SYSLIB="`cat $ORACLEINST_TOP/rdbms/lib/sysliblist`" + else + ORA_SYSLIB="-lm" + fi + + # Oracle Static libs + case $ORACLE_VERSION in + 7.0|7.1) + ORACLE_STLIBS="-locic $ORACLEINST_TOP/$ORACLE_LIBDIR/osntab.o \ + -lsqlnet -lora -lsqlnet -lnlsrtl -lcv6 -lcore -lnlsrtl -lcv6 \ + -lcore $ORA_SYSLIB -lcore $ORA_SYSLIB" + if test "`uname -s 2>/dev/null`" = "AIX"; then + ORACLE_STLIBS="$ORACLE_STLIBS -bI:$ORACLE_HOME/lib/mili.exp" + fi + ;; + 7.2) + ORACLE_STLIBS="-locic $ORACLEINST_TOP/$ORACLE_LIBDIR/osntab.o \ + -lsqlnet -lora -lsqlnet -lora -lnlsrtl3 -lc3v6 -lcore3 -lnlsrtl3 \ + -lcore3 $ORA_SYSLIB -lcore3 $ORA_SYSLIB" + ;; + 7.3) + ORACLE_STLIBS="-lclient -lsqlnet -lncr -lsqlnet -lclient -lcommon \ + -lgeneric -lsqlnet -lncr -lsqlnet -lclient -lcommon -lgeneric \ + -lepc -lnlsrtl3 -lc3v6 -lcore3 -lnlsrtl3 -lcore3 -lnlsrtl3 \ + $ORA_SYSLIB -lcore3 $ORA_SYSLIB" + ;; + 8.0) + ORACLE_STLIBS="-lclient -lsqlnet -lncr -lsqlnet -lclient -lcommon \ + -lgeneric -lsqlnet -lncr -lsqlnet -lclient -lcommon -lgeneric \ + -lepc -lnlsrtl3 -lc3v6 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 \ + $ORA_SYSLIB -lcore3 $ORA_SYSLIB" + ;; + *) + ORACLE_STLIBS= + ;; + esac + + # Oracle shared libs + case $ORACLE_VERSION in + 7.0) + # shared libs not supported + ORACLE_SHLIBS="$ORACLE_STLIBS" + ;; + 7.1) + if test -f $ORACLEINST_TOP/$ORACLE_LIBDIR/liboracle.s? + then + ORACLE_SHLIBS="-loracle $ORA_SYSLIB" + else + ORACLE_SHLIBS="$ORACLE_STLIBS" + fi + ;; + 7.2|7.3) + if test -f $ORACLEINST_TOP/$ORACLE_LIBDIR/libclntsh.s? + then + ORACLE_SHLIBS="-lclntsh $ORA_SYSLIB" + else + ORACLE_SHLIBS="$ORACLE_STLIBS" + fi + ;; + 8.0) + if test -f $ORACLEINST_TOP/$ORACLE_LIBDIR/libclntsh.s? -o \ + -f $ORACLEINST_TOP/$ORACLE_LIBDIR/libclntsh.a # AIX + then + if test "$CC" = "gcc" -a "`uname -sv`" = "AIX 4"; then + # for Oracle 8 on AIX 4 + ORA_SYSLIB="$ORA_SYSLIB -nostdlib /lib/crt0_r.o /usr/lib/libpthreads.a /usr/lib/libc_r.a -lgcc" + fi + ORACLE_SHLIBS="-lclntsh -lpsa -lcore4 -lnlsrtl3 -lclntsh $ORA_SYSLIB" + else + ORACLE_SHLIBS="$ORACLE_STLIBS" + fi + AC_DEFINE(HAVE_OCI8) + ;; + *) + ORACLE_SHLIBS= + ;; + esac + + # only using shared libs right now + ORACLE_LIBS=$ORACLE_SHLIBS + + AC_DEFINE(HAVE_ORACLE) + + fi + +],[AC_MSG_RESULT(no)]) +EXTRA_LIBS="$EXTRA_LIBS $ORACLE_SHLIBS $ORACLE_STLIBS $ORACLE_LIBS $ORACLE_LFLAGS" +INCLUDES="$INCLUDES $ORACLE_INCLUDE" +AC_SUBST(ORACLE_HOME) +AC_SUBST(ORACLE_VERSION) |