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

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

E-mail: