1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# configure.ac -- process this file with autoconf to produce a configure script
AC_INIT([sqlite3cc], [0.1.0], [edam@waxworlds.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_SRCDIR([src/database.cc])
AM_CONFIG_HEADER([config.h])
# checks for programs.
AC_PROG_CXX
AC_PROG_LIBTOOL
AC_PROG_INSTALL
# checks for libraries.
# checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h])
# checks for typedefs, structures, and compiler characteristics.
# checks for library functions.
AC_OUTPUT(Makefile src/Makefile test/Makefile)
|