Annotation of parser3/src/sql/pgsql/configure.in, revision 1.3
1.1 parser 1: dnl Process this file with autoconf to produce a configure script.
2: AC_INIT(parser3pgsql.C)
3: AM_INIT_AUTOMAKE(parser3pgsqlclient, 3.0g, nodefine)
4:
5: AM_CONFIG_HEADER(config_auto.h)
6:
1.2 parser 7: dnl Arguments
8:
9: AC_ARG_WITH(pgsql_inc,[ --with-pgsql_inc[=DIR] DIR is the PgSQL includes directory],,
10: withval="/usr/local/pgsql/include"
11: )
12: PGSQL_INC=$withval
13: AC_SUBST(PGSQL_INC)
14:
15:
1.1 parser 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)
31: dnl Check for dlopen support
32: AC_LIBTOOL_DLOPEN
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: