Annotation of sql/oracle/configure.in, revision 1.2
1.1 parser 1: dnl Process this file with autoconf to produce a configure script.
2: AC_INIT(parser3oracle.C)
3: AM_INIT_AUTOMAKE(parser3oracleclient, 3.0g, nodefine)
4:
5: AM_CONFIG_HEADER(config_auto.h)
6:
7: dnl Arguments
8:
1.2 ! parser 9: AC_ARG_WITH(oracleoci-inc,[ --with-oracleoci-inc[=DIR] DIR is the Oracle OCI includes directory],,
1.1 parser 10: withval="$ORACLE_HOME/rdbms/demo"
11: )
1.2 ! parser 12: ORACLE_OCI_INC=$withval
! 13: AC_SUBST(ORACLE_OCI_INC)
1.1 parser 14:
1.2 ! parser 15: if test \! -f "$ORACLE_OCI_INC/oci.h"; then
! 16: AC_MSG_ERROR($ORACLE_OCI_INC does not seem to be valid Oracle OCI includes directory)
! 17: fi
! 18:
! 19:
! 20: AC_ARG_WITH(oraclepublic-inc,[ --with-oraclepublic-inc[=DIR] DIR is the Oracle public includes directory],,
1.1 parser 21: withval="$ORACLE_HOME/network/public"
22: )
1.2 ! parser 23: ORACLE_PUBLIC_INC=$withval
! 24: AC_SUBST(ORACLE_PUBLIC_INC)
! 25:
! 26: if test \! -f "$ORACLE_PUBLIC_INC/nzt.h"; then
! 27: AC_MSG_ERROR($ORACLE_PUBLIC_INC does not seem to be valid Oracle public includes directory)
! 28: fi
1.1 parser 29:
30:
31: dnl Checks for programs.
32: AC_PROG_INSTALL
33: AC_PROG_MAKE_SET
34: AC_PROG_AWK
35:
36: AC_LANG_CPLUSPLUS
37: AC_PROG_CXX
38:
39: dnl Enable building of the convenience library
40: dnl and set LIBLTDL accordingly
41: AC_LIBLTDL_CONVENIENCE
42: dnl Substitute INCLTDL and LIBLTDL in the Makefiles
43: AC_SUBST(INCLTDL)
44: AC_SUBST(LIBLTDL)
45: AC_SUBST(LIBADD_DL)
46: dnl Check for dlopen support
47: AC_LIBTOOL_DLOPEN
48: dnl Configure libtool
49: AM_PROG_LIBTOOL
50: dnl Configure libltdl
51: AC_CONFIG_SUBDIRS(libltdl)
52:
53: dnl Checks for libraries.
54:
55: dnl Checks for header files.
56:
57: AC_CHECK_HEADERS(
58: stdio.h \
59: stdlib.h \
60: string.h \
61: setjmp.h \
62: ctype.h
63: )
64:
65: dnl Checks for typedefs, structures, and compiler characteristics.
66:
67: AC_TYPE_SIZE_T
68:
69: dnl Checks for library functions.
70:
71: dnl Output makefiles
72:
73: AC_OUTPUT(libltdl/Makefile Makefile)
E-mail: