]> git.ipfire.org Git - oddments/ddns.git/blob - configure.ac
Add "badagent" response handling for DDNSProtocolDynDNS2.
[oddments/ddns.git] / configure.ac
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
21 AC_PREREQ([2.64])
22
23 AC_INIT([ddns],
24 [004],
25 [info@ipfire.org],
26 [ddns],
27 [http://git.ipfire.org/?p=oddments/ddns.git;a=summary])
28
29 AC_CONFIG_MACRO_DIR([m4])
30 AC_CONFIG_AUX_DIR([build-aux])
31
32 AC_PREFIX_DEFAULT([/usr])
33
34 AM_INIT_AUTOMAKE([
35 foreign
36 1.11
37 -Wall
38 -Wno-portability
39 silent-rules
40 tar-pax
41 subdir-objects
42 ])
43 AM_SILENT_RULES([yes])
44
45 IT_PROG_INTLTOOL([0.40.0])
46
47 GETTEXT_PACKAGE=ddns
48 AC_SUBST(GETTEXT_PACKAGE)
49
50 AC_PROG_LN_S
51 AC_PROG_MKDIR_P
52 AC_PROG_SED
53
54 # Python
55 AM_PATH_PYTHON([2.7])
56
57 # BIND nsupdate
58 AC_CHECK_TOOL([NSUPDATE], [nsupdate])
59 if test -z "${NSUPDATE}"; then
60 AC_MSG_ERROR([*** nsupdate not found])
61 fi
62
63 save_LIBS="$LIBS"
64
65 AC_CONFIG_FILES([
66 Makefile
67 po/Makefile.in
68 src/ddns/__version__.py
69 ])
70
71 AC_OUTPUT
72 AC_MSG_RESULT([
73 ${PACKAGE_NAME} ${VERSION}
74
75 prefix : ${prefix}
76 sysconfdir : ${sysconfdir}
77
78 nsupdate : ${NSUPDATE}
79 ])