Annotation of parser3/src/sql/mysql/configure.in, revision 1.3
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:
7: dnl Checks for programs.
8: AC_PROG_INSTALL
9: AC_PROG_MAKE_SET
10: AC_PROG_AWK
11:
12: AC_LANG_CPLUSPLUS
13: AC_PROG_CXX
14:
15: dnl Enable building of the convenience library
16: dnl and set LIBLTDL accordingly
17: AC_LIBLTDL_CONVENIENCE
18: dnl Substitute INCLTDL and LIBLTDL in the Makefiles
19: AC_SUBST(INCLTDL)
20: AC_SUBST(LIBLTDL)
21: AC_SUBST(LIBADD_DL)
1.3 ! paf 22: dnl Check for dlopen support
! 23: AC_LIBTOOL_DLOPEN
1.2 paf 24: dnl Configure libtool
25: AM_PROG_LIBTOOL
26: dnl Configure libltdl
27: AC_CONFIG_SUBDIRS(libltdl)
28:
29: CALC_ARGS
30:
31: dnl Checks for libraries.
32:
33: dnl Checks for header files.
34:
35: AC_CHECK_HEADERS(
36: stdio.h \
37: stdlib.h \
38: string.h
39: )
40:
41: dnl Checks for typedefs, structures, and compiler characteristics.
42:
43: AC_TYPE_SIZE_T
44:
45: dnl Checks for library functions.
46:
47: dnl Output makefiles
48:
49: AC_OUTPUT(libltdl/Makefile Makefile)
E-mail: