]> git.ipfire.org Git - ddns.git/blame_incremental - configure.ac
Add domains.google.com as provider.
[ddns.git] / configure.ac
... / ...
CommitLineData
1###############################################################################
2# #
3# Pakfire - The IPFire package management system #
4# Copyright (C) 2013 Pakfire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21AC_PREREQ([2.64])
22
23AC_INIT([ddns],
24 [006],
25 [info@ipfire.org],
26 [ddns],
27 [http://git.ipfire.org/?p=oddments/ddns.git;a=summary])
28
29AC_CONFIG_MACRO_DIR([m4])
30AC_CONFIG_AUX_DIR([build-aux])
31
32AC_PREFIX_DEFAULT([/usr])
33
34AM_INIT_AUTOMAKE([
35 foreign
36 1.11
37 -Wall
38 -Wno-portability
39 silent-rules
40 tar-pax
41 subdir-objects
42])
43AM_SILENT_RULES([yes])
44
45IT_PROG_INTLTOOL([0.40.0])
46
47GETTEXT_PACKAGE=ddns
48AC_SUBST(GETTEXT_PACKAGE)
49
50AC_PROG_LN_S
51AC_PROG_MKDIR_P
52AC_PROG_SED
53
54AC_PATH_PROG([XSLTPROC], [xsltproc])
55
56# Python
57AM_PATH_PYTHON([2.7])
58
59save_LIBS="$LIBS"
60
61# ------------------------------------------------------------------------------
62have_manpages=no
63AC_ARG_ENABLE(manpages, AS_HELP_STRING([--disable-man-pages],
64 [do not install man pages]))
65AS_IF([test "x$enable_manpages" != xno], [have_manpages=yes])
66AM_CONDITIONAL(ENABLE_MANPAGES, [test "x$have_manpages" = "xyes"])
67
68# ------------------------------------------------------------------------------
69
70AC_CONFIG_FILES([
71 Makefile
72 po/Makefile.in
73 src/ddns/__version__.py
74])
75
76AC_OUTPUT
77AC_MSG_RESULT([
78 ${PACKAGE_NAME} ${VERSION}
79
80 prefix : ${prefix}
81 sysconfdir : ${sysconfdir}
82
83 Generate man-pages : ${have_manpages}
84])