source: branches/development-0.7-arm2/configure.in @ 704

Revision 369, 1.4 KB checked in by dcarter, 4 years ago (diff)

merge of development-0.6 branch

Line 
1# Copyright (C) 2005-2007 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.6])
12AC_COPYRIGHT([Copyright (C) 2005-2007 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_GNU_SOURCE
19AC_AIX
20AC_ISC_POSIX
21AC_MINIX
22ARM4_THREAD_SAFE
23AC_HEADER_STDC([])
24AC_PROG_LIBTOOL
25AC_CHECK_HEADERS([getopt.h],,,)
26AC_CHECK_FUNCS([getopt_long],,)
27#ARM4_CHECK_XMLRPC
28ARM4_CHECK_UUID
29AC_CHECK_HEADERS([openssl/md5.h],,[AC_MSG_ERROR(require openssl libraries)],)
30ARM4_PTHREAD_MUTEX_PROCESS
31ARM4_PTHREAD_CONDATTR_PROCESS
32ARM4_VERSION_DB([4.3],,[AC_MSG_ERROR(db version 4.3 or greater is required)])
33ARM4_CHECK_EFENCE
34AC_CONFIG_FILES([Makefile
35        doc/Makefile
36        m4/Makefile
37        man/Makefile
38        include/Makefile
39        src/Makefile
40        src/libarm4db/Makefile
41        src/libarm4/Makefile
42        examples/Makefile
43        examples/arm4sdk/Makefile
44        tests/validation/Makefile
45        tests/Makefile])
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.