root/configure.ac

Revision 33c5f1ca68d9a1e7b15d73fb0ac2426b3d9ed2a5, 1.1 KB (checked in by Antti-Juhani Kaijanaho <antti-juhani@…>, 2 years ago)

Add an installation procedure

Signed-off-by: Antti-Juhani Kaijanaho <antti-juhani@…>

  • Property mode set to 100644
Line 
1#    This file is part of Alue, the multiprotocol Internet discussion daemon
2#
3#    Copyright © 2009 Antti-Juhani Kaijanaho
4#
5#    Copying and distribution of this file, with or without modification,
6#    are permitted in any medium without royalty provided the copyright
7#    notice and this notice are preserved.  This file is offered as-is,
8#    without any warranty.
9
10#     information on the package
11AC_INIT([Alue],
12        [0.1pre0],
13        [http://the-alue.org/trac/newticket],
14        [alue],
15        [http://the-alue.org/])
16AC_CONFIG_SRCDIR([alue_posix.cc])
17#     checks for programs
18AC_PROG_CC
19AC_PROG_CXX
20AC_PROG_INSTALL
21AC_LANG(C++)
22#     checks for libraries
23AX_BOOST_BASE([1.35])
24if test "x$want_boost" != "xyes" ; then
25   AC_MSG_ERROR([Boost is required.])
26fi
27AX_BOOST_DATE_TIME
28AX_BOOST_SYSTEM
29AX_BOOST_PROGRAM_OPTIONS
30AX_BOOST_THREAD
31AX_BOOST_UNIT_TEST_FRAMEWORK
32PKG_CHECK_MODULES(GnuTLS[],[gnutls])
33#     checks for header files
34#     checks for types
35#     checks for structures
36#     checks for compiler characteristics
37#     checks for library functions
38#     checks for system services
39#     output
40AC_CONFIG_FILES([GNUmakefile])
41AC_OUTPUT
Note: See TracBrowser for help on using the browser.