Annotation of sql/sqlite/libltdl/configure.in, revision 1.3
1.1 misha 1: dnl Process this file with autoconf to create configure.
2:
3: AC_INIT(ltdl.c)
4:
5: dnl We shouldn't be using these internal macros of autoconf,
6: dnl but CONFIG_AUX_DIR($with_auxdir) breaks automake.
7: AC_ARG_WITH(auxdir,
8: [ --with-auxdir=DIR path to autoconf auxiliary files],
9: [AC_CONFIG_AUX_DIRS($with_auxdir)],
10: [AC_CONFIG_AUX_DIR_DEFAULT])
11:
12: if test -z "$enable_ltdl_install$enable_ltdl_convenience"; then
13: if test -f ${srcdir}/ltmain.sh; then
14: # if libltdl is libtoolized, it is assumed to be stand-alone and
15: # installed unless the command line overrides it (tested above)
16: enable_ltdl_install=yes
17: else
18: AC_MSG_WARN([*** The top-level configure must select either])
19: AC_MSG_WARN([*** [A""C_LIBLTDL_INSTALLABLE] or [A""C_LIBLTDL_CONVENIENCE].])
20: AC_MSG_ERROR([*** Maybe you want to --enable-ltdl-install?])
21: fi
22: fi
23:
24: AM_INIT_AUTOMAKE(libltdl,1.2,-)
25: AM_CONFIG_HEADER(config_auto.h)
26: AM_MAINTAINER_MODE
27:
28: AC_PROG_CC
29: AC_C_CONST
30: AC_C_INLINE
31:
32: AC_DISABLE_SHARED
33: AC_LIBTOOL_WIN32_DLL
34: AC_PROG_LIBTOOL
35: AC_SUBST(LIBTOOL_DEPS)
36:
37: AC_LIB_LTDL
38:
39: dnl Output the makefile
40: AC_OUTPUT(Makefile)
41:
42: # Local Variables:
43: # mode:shell-script
44: # sh-indentation:2
45: # End:
E-mail: