1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
dnl mrj
dnl check if we have oracle then test it. otherwise, RESULT no.
AC_DEFUN([MRJ_CHECK_ORACLE],
[
AC_MSG_CHECKING([for oracle])
dnl the default
have_oracle=yes
AC_ARG_WITH(oracle,
[ --with-oracle=DIR enable support for Oracle (default ORACLE_HOME)],
[
if test $withval = no; then
have_oracle=no
elif test $withval != yes; then
ORACLE_HOME=$withval
fi
], )
oracle_user_inc=
AC_ARG_WITH(oracle-includes,
[ --with-oracle-includes=DIR
set oracle include dir (default ORACLE_HOME/subdirs)],
[
have_oracle=yes
oracle_user_inc=$withval
], )
oracle_user_lib=
AC_ARG_WITH(oracle-libraries,
[ --with-oracle-libraries=DIR
set oracle lib dir (default ORACLE_HOME/lib)],
[
have_oracle=yes
oracle_user_lib=$withval
], )
oracle_user_otl_ver=
AC_ARG_WITH(oci-version,
[[ --with-oci-version=[8, 8I, 9I, 10G]
this is the version of the client, not the database.]],
[
have_oracle=yes
oracle_user_otl_ver=$withval
], )
oracle_user_instant=
AC_ARG_WITH(instant-client,
[[ --with-instant-client
define if compiling against Oracle Instant Client.
Disables testing for ORACLE_HOME and tnsnames.]],
[
have_oracle=yes
oracle_user_instant=$withval
], )
cflags_ora_save=$CFLAGS
ldflags_ora_save=$LDFLAGS
libs_ora_save=$LIBS
ora_cflags=
ora_libdir=
ora_ldflags=
ora_lib=-lclntsh
if test $have_oracle = no; then
dnl yeah, this is backwards.
AC_DEFINE(TO_NO_ORACLE, 1, [Define if you do _not_ have Oracle.])
AC_MSG_RESULT(no)
elif test "x$oracle_user_instant" != "x"; then
dnl user says we're running on the instant client libraries.
AC_DEFINE(TO_INSTANT_CLIENT, 1, [Define if compiled against Oracle Instant Client])
if test "x$oracle_user_lib" = "x" && test "x$oracle_user_inc" = "x"; then
dnl try to find oracle includes for instant client
dnl these are from the rpm install. they're all i know of so far.
for dir in `ls /usr/lib/oracle/`; do
echo "trying $dir" >&5
if expr $dir \> 10 >/dev/null; then
oracle_user_otl_ver=10G
fi
ora_ldflags="-L/usr/lib/oracle/$dir/client/lib"
incdir=/usr/include/oracle/$dir/client
if ! test -d $incdir; then
AC_MSG_ERROR([$incdir doesn't exist. Please install the sdk package or use --oracle-includes.])
fi
ora_cflags="-I$incdir"
break
done
else
ora_ldflags="-L$oracle_user_lib"
ora_cflags="-I$oracle_user_inc"
fi
elif test "x$ORACLE_HOME" != "x"; then
AC_MSG_RESULT($ORACLE_HOME)
dnl try to find oracle includes
ora_check_inc="
$oracle_user_inc
$ORACLE_HOME/rdbms/demo
$ORACLE_HOME/plsql/public
$ORACLE_HOME/rdbms/public
$ORACLE_HOME/network/public
$ORACLE_HOME/sdk/
$ORACLE_HOME/include/"
for dir in $ora_check_inc; do
if test -d $dir; then
ora_cflags="$ora_cflags -I$dir"
fi
done
ora_check_lib="
$oracle_user_lib
$ORACLE_HOME/lib
$ORACLE_HOME/lib32
$ORACLE_HOME/lib64"
for dir in $ora_check_lib; do
if test -d $dir; then
ora_ldflags="$ora_ldflags -L$dir"
fi
done
else
dnl test if we have includes or libraries
if test -z "$oracle_user_lib" || test -z "$oracle_user_inc"; then
AC_MSG_WARN(no)
have_oracle=no
else
ora_ldflags="-L$oracle_user_lib"
ora_cflags="-I$oracle_user_inc"
fi
fi
if test "x$ORACLE_HOME" != "x"; then
dnl check real quick that ORACLE_HOME doesn't end with a slash
dnl for some stupid reason, the 10g instant client bombs.
ora_home_oops=`echo $ORACLE_HOME | $AWK '/\/@S|@/ {print "oops"}'`
if test "$ora_home_oops" = "oops"; then
AC_MSG_WARN([Your ORACLE_HOME environment variable ends with a
slash (i.e. /). Oracle 10g Instant Client is known to have a problem
with this. If you get the message "otl_initialize failed!" at the
console when running TOra, this is probably why.])
fi
fi
if test $have_oracle = yes; then
AC_MSG_CHECKING([oci works])
CFLAGS="$CFLAGS $ora_cflags"
LDFLAGS="$LDFLAGS $ora_ldflags"
LIBS="$ora_lib"
# i pulled this from one of the examples in the demo dir.
AC_RUN_IFELSE([[
#include <oci.h>
Lda_Def lda;
ub4 hda [HDA_SIZE/(sizeof(ub4))];
int main(int c, char **v) {
return 0;
}
]], [found_oracle=yes],
[found_oracle=no], )
if test $found_oracle = no; then
AC_MSG_ERROR([Couldn't compile and run a simpile OCI app.
Try setting ORACLE_HOME or check config.log.
Otherwise, make sure ORACLE_HOME/lib is in /etc/ld.so.conf or LD_LIBRARY_PATH])
fi
sqlplus=
if test -x "$ORACLE_HOME/bin/sqlplus"; then
sqlplus="$ORACLE_HOME/bin/sqlplus"
fi
if test "x${sqlplus}" = "x"; then
if test -x "$ORACLE_HOME/bin/sqlplusO"; then
sqlplus="$ORACLE_HOME/bin/sqlplusO"
fi
fi
if test "x$oracle_user_otl_ver" != "x"; then
otl_ver=$oracle_user_otl_ver
elif test "x${sqlplus}" = "x"; then
AC_MSG_ERROR([Couldn't find sqlplus. Set the Oracle version manually.])
else
# get oracle oci version. know a better way?
sqlplus_ver=`$sqlplus -? | $AWK '/Release/ {print @S|@3}'`
echo "sqlplus_ver: $sqlplus_ver" >&5
if expr $sqlplus_ver \> 10 >/dev/null; then
dnl our version of otl doesn't have 10g defined yet
otl_ver=10G
elif expr $sqlplus_ver \> 9 >/dev/null; then
otl_ver=9I
elif expr $sqlplus_ver \< 8.1 >/dev/null; then
otl_ver=8
else
otl_ver=8I
fi
fi
ora_cflags="$ora_cflags -DOTL_ORA${otl_ver} -DOTL_ORA_TIMESTAMP -DOTL_ANSI_CPP -DOTL_FUNC_THROW_SPEC_ON -DOTL_EXCEPTION_ENABLE_ERROR_OFFSET"
# don't change flags for all targets, just export ORA variables.
CFLAGS=$cflags_ora_save
AC_SUBST(ORACLE_CXXFLAGS, $ora_cflags)
LDFLAGS=$ldflags_ora_save
AC_SUBST(ORACLE_LDFLAGS, $ora_ldflags)
LIBS=$libs_ora_save
AC_SUBST(ORACLE_LIBS, $ora_lib)
# AM_CONDITIONAL in configure.in uses this variable to enable oracle
# targets.
enable_oracle=yes
AC_MSG_RESULT(yes)
fi
])
|