|
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 |
|---|
| 11 | AC_INIT([Alue], |
|---|
| 12 | [0.1pre0], |
|---|
| 13 | [http://the-alue.org/trac/newticket], |
|---|
| 14 | [alue], |
|---|
| 15 | [http://the-alue.org/]) |
|---|
| 16 | AC_CONFIG_SRCDIR([alue_posix.cc]) |
|---|
| 17 | # checks for programs |
|---|
| 18 | AC_PROG_CC |
|---|
| 19 | AC_PROG_CXX |
|---|
| 20 | AC_PROG_INSTALL |
|---|
| 21 | AC_LANG(C++) |
|---|
| 22 | # checks for libraries |
|---|
| 23 | AX_BOOST_BASE([1.35]) |
|---|
| 24 | if test "x$want_boost" != "xyes" ; then |
|---|
| 25 | AC_MSG_ERROR([Boost is required.]) |
|---|
| 26 | fi |
|---|
| 27 | AX_BOOST_DATE_TIME |
|---|
| 28 | AX_BOOST_SYSTEM |
|---|
| 29 | AX_BOOST_PROGRAM_OPTIONS |
|---|
| 30 | AX_BOOST_THREAD |
|---|
| 31 | AX_BOOST_UNIT_TEST_FRAMEWORK |
|---|
| 32 | PKG_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 |
|---|
| 40 | AC_CONFIG_FILES([GNUmakefile]) |
|---|
| 41 | AC_OUTPUT |
|---|