forked from hivesolutions/colony-npapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
51 lines (45 loc) · 1.65 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
# Hive Colony Framework
# Copyright (C) 2008-2012 Hive Solutions Lda.
#
# This file is part of Hive Colony Framework.
#
# Hive Colony Framework is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Hive Colony Framework 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
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Hive Colony Framework. If not, see <http://www.gnu.org/licenses/>.
# __author__ = João Magalhães <[email protected]>
# __version__ = 1.0.0
# __revision__ = $LastChangedRevision$
# __date__ = $LastChangedDate$
# __copyright__ = Copyright (c) 2008-2012 Hive Solutions Lda.
# __license__ = GNU General Public License (GPL), Version 3
# inclides the settings
m4_include([m4/settings.m4])
# requires autoconf
AC_PREREQ(2.61)
# defines the general values
AC_INIT(colony_npapi, colony_npapi_version, [email protected])
AM_INIT_AUTOMAKE
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/exports.m4])
m4_include([m4/programs.m4])
m4_include([m4/features.m4])
m4_include([m4/characteristics.m4])
m4_include([m4/libraries.m4])
m4_include([m4/headers.m4])
m4_include([m4/output.m4])
m4_include([m4/message.m4])