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

Revision 190, 1.3 KB checked in by dcarter, 6 years ago (diff)

merging -r 175:189 - removing APR from build requirements, adding xmlrpc-c

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.3])
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_VERSION_DB([4.2],,[AC_MSG_ERROR(db version 4.2 or greater is required)])
30AC_CONFIG_FILES([Makefile
31        doc/Makefile
32        m4/Makefile
33        include/Makefile
34        src/Makefile
35        src/libarm4db/Makefile
36        src/libarm4/Makefile
37        examples/Makefile
38        examples/arm4sdk/Makefile
39        tests/Makefile])
40AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.