source: tags/release-0.4/configure.in @ 704

Revision 219, 1.3 KB checked in by dcarter, 5 years ago (diff)

Merged revision 194:218 from reporting branch

Line 
1# Copyright (C) 2005-2006 David Carter <dcarter@arm4.org>
2
3# This file is free software; as a special exception the author gives
4# unlimited permission to copy and/or distribute it, with or without
5# modifications, as long as this notice is preserved.
6#
7# This program is distributed in the hope that it will be useful, but
8# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
11AC_INIT([arm4],[0.4])
12AC_COPYRIGHT([Copyright (C) 2005-2006 David Carter <dcarter@arm4.org>.
13This is free software; see the source for copying conditions.  There is NO
14warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.])
15AM_CONFIG_HEADER(config.h)
16AM_INIT_AUTOMAKE
17AC_PROG_CC
18AC_AIX
19AC_ISC_POSIX
20AC_MINIX
21AC_HEADER_STDC([])
22AC_PROG_LIBTOOL
23AC_CHECK_HEADERS([getopt.h],,,)
24AC_CHECK_FUNCS([getopt_long],,)
25ARM4_CHECK_XMLRPC
26ARM4_CHECK_UUID
27AC_CHECK_HEADERS([openssl/md5.h],,[AC_MSG_ERROR(require openssl libraries)],)
28ARM4_PTHREAD_MUTEX_PROCESS
29ARM4_PTHREAD_CONDATTR_PROCESS
30ARM4_VERSION_DB([4.2],,[AC_MSG_ERROR(db version 4.2 or greater is required)])
31AC_CONFIG_FILES([Makefile
32        doc/Makefile
33        m4/Makefile
34        include/Makefile
35        src/Makefile
36        src/libarm4db/Makefile
37        src/libarm4/Makefile
38        examples/Makefile
39        examples/arm4sdk/Makefile
40        tests/Makefile])
41AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.