Annotation of parser3/src/sql/oracle/configure.in, revision 1.4

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

E-mail: