-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
61 lines (55 loc) · 1.87 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Hive Viriatum Web Server
# Copyright (c) 2008-2020 Hive Solutions Lda.
#
# This file is part of Hive Viriatum Web Server.
#
# Hive Viriatum Web Server is free software: you can redistribute it and/or modify
# it under the terms of the Apache License as published by the Apache
# Foundation, either version 2.0 of the License, or (at your option) any
# later version.
#
# Hive Viriatum Web Server is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# Apache License for more details.
#
# You should have received a copy of the Apache License along with
# Hive Viriatum Web Server. If not, see <http://www.apache.org/licenses/>.
# __author__ = João Magalhães <[email protected]>
# __version__ = 1.0.0
# __revision__ = $LastChangedRevision$
# __date__ = $LastChangedDate$
# __copyright__ = Copyright (c) 2008-2020 Hive Solutions Lda.
# __license__ = Apache License, Version 2.0
# inclides the settings
m4_include([m4/settings.m4])
# requires autoconf
AC_PREREQ(2.61)
# defines the general values
AC_INIT(viriatum, viriatum_version, [email protected])
AM_INIT_AUTOMAKE([subdir-objects])
AC_CONFIG_SRCDIR([src])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_MACRO_DIR([m4])
# requires the libtool
LT_INIT
AC_PROG_LIBTOOL
AM_PROG_LIBTOOL
m4_include([m4/extra/network.m4])
m4_include([m4/initialization.m4])
m4_include([m4/exports.m4])
m4_include([m4/programs.m4])
m4_include([m4/features.m4])
m4_include([m4/ipv6.m4])
m4_include([m4/characteristics.m4])
m4_include([m4/hosts.m4])
m4_include([m4/libraries.m4])
m4_include([m4/headers.m4])
m4_include([m4/functions.m4])
m4_include([m4/variables.m4])
m4_include([m4/poll.m4])
m4_include([m4/epoll.m4])
m4_include([m4/poll_methods.m4])
m4_include([m4/have_validation.m4])
m4_include([m4/output.m4])
m4_include([m4/message.m4])