]> git.ipfire.org Git - thirdparty/pdns.git/blob - configure.ac
auth: remove opendbx backend
[thirdparty/pdns.git] / configure.ac
1 AC_PREREQ([2.61])
2
3 AC_INIT([pdns], m4_esyscmd([builder-support/gen-version]))
4
5 AC_CONFIG_SRCDIR([pdns/receiver.cc])
6 AC_CONFIG_MACRO_DIR([m4])
7 AC_CONFIG_HEADERS([config.h])
8 AC_CONFIG_AUX_DIR([build-aux])
9
10 AC_SUBST([pdns_configure_args], ["$ac_configure_args"])
11 AC_DEFINE_UNQUOTED([PDNS_CONFIG_ARGS],
12 ["$pdns_configure_args"],
13 [pdns configure arguments]
14 )
15
16 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-ustar -Wno-portability subdir-objects parallel-tests 1.11])
17 AM_SILENT_RULES([yes])
18
19 AC_CANONICAL_HOST
20 # Add some default CFLAGS and CXXFLAGS, can be appended to using the environment variables
21 CFLAGS="-g -O2 -Wall -Wextra -Wshadow -Wno-unused-parameter $CFLAGS"
22 CXXFLAGS="-g -O2 -Wall -Wextra -Wshadow -Wno-unused-parameter $CXXFLAGS"
23
24 AC_PROG_CC
25 AM_PROG_CC_C_O
26 PDNS_CHECK_BISON
27 PDNS_CHECK_FLEX
28 AC_PROG_INSTALL
29 AC_PROG_MAKE_SET
30
31 AC_PROG_CXX
32 AS_IF([test "x$CXX" = "xno" || test "x$CXX:x$GXX" = "xg++:x"],
33 [AC_MSG_ERROR([no C++ compiler found])]
34 )
35
36 AC_LANG([C++])
37
38 AC_DEFINE([_GNU_SOURCE], [1],
39 [Define _GNU_SOURCE so that we get all necessary prototypes]
40 )
41
42 # Warn when pkg.m4 is missing
43 m4_pattern_forbid([^_?PKG_[A-Z_]+$], [*** pkg.m4 missing, please install pkg-config])
44
45 PDNS_CHECK_OS
46 PTHREAD_SET_NAME
47
48 PDNS_WITH_LUA
49 PDNS_CHECK_LUA_HPP
50
51 AX_CXX_COMPILE_STDCXX_11
52
53 AC_MSG_CHECKING([whether we will enable compiler security checks])
54 AC_ARG_ENABLE([hardening],
55 [AS_HELP_STRING([--disable-hardening], [disable compiler security checks @<:@default=no@:>@])],
56 [enable_hardening=$enableval],
57 [enable_hardening=yes]
58 )
59 AC_MSG_RESULT([$enable_hardening])
60
61 AS_IF([test "x$enable_hardening" != "xno"], [
62 AC_CC_PIE
63 AC_CC_STACK_PROTECTOR
64 AC_CC_PARAM_SSP_BUFFER_SIZE([4])
65 AC_CC_D_FORTIFY_SOURCE
66 AC_LD_RELRO
67 ])
68
69 PDNS_ENABLE_KISS
70
71 PDNS_CHECK_NETWORK_LIBS
72
73 LT_PREREQ([2.2.2])
74 LT_INIT([disable-static dlopen])
75
76
77 MC_TM_GMTOFF
78
79 # Define full_libdir to be the fully expanded (${exec_prefix}, etc.)
80 # "system" library path.
81 # We use this to search for other libraries.
82 eval full_libdir="\"$libdir\""
83
84 # detect pkg-config explicitly
85 PKG_PROG_PKG_CONFIG
86
87 AC_CHECK_HEADERS(
88 [sys/mman.h],
89 [AC_CHECK_FUNC(
90 [mmap],
91 [AC_DEFINE(HAVE_MMAP, [1], [Define to 1 if you have mmap])],
92 [have_mmap=no]
93 )],
94 [have_mmap=no]
95 )
96
97 PDNS_WITH_LIBSODIUM
98 PDNS_WITH_LIBDECAF
99 PDNS_CHECK_LIBCRYPTO([
100 ],[
101 AC_MSG_ERROR([OpenSSL/libcrypto not found])
102 ]
103 )
104 PDNS_CHECK_LIBCRYPTO_ECDSA
105 PDNS_CHECK_LIBCRYPTO_EDDSA
106
107 PDNS_CHECK_RAGEL([pdns/dnslabeltext.cc], [www.powerdns.com])
108 PDNS_CHECK_CLOCK_GETTIME
109
110 BOOST_REQUIRE([1.42])
111 # Boost accumulators, as used by dnsbulktest and dnstcpbench, need 1.48+
112 # to be compatible with C++11
113 AM_CONDITIONAL([HAVE_BOOST_GE_148], [test "$boost_major_version" -ge 148])
114 AS_IF([test "$boost_major_version" -ge 148], [
115 AC_DEFINE(HAVE_BOOST_GE_148, [1], [Define to 1 if you have boost >= 1.48])
116 ])
117
118 BOOST_PROGRAM_OPTIONS([mt])
119 AS_IF([test "$boost_cv_lib_program_options" = "no"], [
120 AC_MSG_ERROR([Boost Program Options library not found])
121 ])
122 PDNS_ENABLE_UNIT_TESTS
123 PDNS_ENABLE_BACKEND_UNIT_TESTS
124 PDNS_ENABLE_REPRODUCIBLE
125 PDNS_ENABLE_FUZZ_TARGETS
126
127 PDNS_WITH_SQLITE3
128
129 PDNS_CHECK_VIRTUALENV
130 PDNS_FROM_GIT
131
132 dnl Checks for library functions.
133 dnl the *_r functions are in posix so we can use them unconditionally, but the ext/yahttp code is
134 dnl using the defines.
135 AC_CHECK_FUNCS_ONCE([strcasestr localtime_r gmtime_r recvmmsg sched_setscheduler getrandom arc4random])
136
137 AM_CONDITIONAL([HAVE_RECVMMSG], [test "x$ac_cv_func_recvmmsg" = "xyes"])
138
139 AS_IF([test "x$lt_cv_dlopen" = "xno"],
140 [AC_MSG_ERROR([Your system does not support dlopen])]
141 )
142
143 AC_SUBST([LIBDL], [$lt_cv_dlopen_libs])
144
145 PDNS_ENABLE_VERBOSE_LOGGING
146 PDNS_ENABLE_PKCS11
147 PDNS_ENABLE_GSS_TSIG
148
149 AC_SUBST([socketdir])
150 socketdir="/var/run"
151 AC_ARG_WITH([socketdir],
152 [AS_HELP_STRING([--with-socketdir], [where the controlsocket lives @<:@default=/var/run@:>@])],
153 [socketdir="$withval"]
154 )
155
156 modules="bind gmysql random"
157 AC_ARG_WITH([modules],
158 [AS_HELP_STRING([--with-modules], [which backends to compile with @<:@default=bind gmysql random@:>@])],
159 [modules="$withval"]
160 )
161
162 dynmodules="pipe"
163 AC_ARG_WITH([dynmodules],
164 [AS_HELP_STRING([--with-dynmodules], [which backends to build for dynamic loading @<:@default=pipe@:>@])],
165 [dynmodules="$withval"]
166 )
167
168 AC_SUBST([moduledirs])
169 AC_SUBST([moduleobjects])
170 AC_SUBST([modulelibs])
171 AC_DEFINE_UNQUOTED([PDNS_MODULES], "$modules", [Built-in modules])
172
173 AS_IF([test x"$modules" = "xno"], [modules=""])
174 AS_IF([test x"$dynmodules" = "xno"], [dynmodules=""])
175
176 for a in $modules $dynmodules; do
177 case "$a" in
178 godbc)
179 PDNS_WITH_UNIXODBC
180 ;;
181 gmysql)
182 PDNS_WITH_MYSQL
183 ;;
184 gpgsql)
185 PDNS_WITH_POSTGRESQL
186 ;;
187 gsqlite3)
188 needsqlite3=yes
189 ;;
190 ldap)
191 PDNS_CHECK_LDAP
192 needldap=yes
193 ;;
194 remote)
195 AS_IF([test "x$enable_unit_tests" = "xyes"],
196 [PDNS_CHECK_CURL_PROGRAM]
197 )
198 have_remotebackend=yes
199 ;;
200 tinydns)
201 needcdb=yes
202 PDNS_CHECK_CDB
203 ;;
204 geoip)
205 PDNS_CHECK_GEOIP
206 ;;
207 lua*)
208 AS_IF([test "x$with_lua" = "xno"],
209 [AC_MSG_ERROR([${a} backend needs lua, run ./configure --with-lua])]
210 )
211 AS_IF([test "x$LUAPC" = "x"],
212 [AC_MSG_ERROR([${a} backend needs lua but we cannot find it])]
213 )
214 ;;
215 lmdb)
216 needlmdb=yes
217 PDNS_CHECK_LMDB
218 BOOST_SERIALIZATION
219 ;;
220 esac
221 done
222
223 PDNS_ENABLE_REMOTEBACKEND_ZEROMQ
224
225 PDNS_ENABLE_TOOLS
226 PDNS_ENABLE_IXFRDIST
227
228 PDNS_WITH_PROTOBUF
229
230 PDNS_WITH_LUA_RECORDS
231
232 AM_CONDITIONAL([LDAP], [test "x$needldap" = "xyes"])
233
234 PDNS_CHECK_SQLITE3
235 AM_CONDITIONAL([SQLITE3], [test "x$needsqlite3" = "xyes"])
236
237 AM_CONDITIONAL([LMDB], [test "x$needlmdb" != "x"])
238 AM_CONDITIONAL([HAVE_LMDB], [test "x$LMDB_LIBS" != "x"])
239
240 AS_IF([test "x$needlmdb" = "xyes"], [
241 AS_IF([test "$with_lmdb" = "no"], [
242 AC_MSG_ERROR([--with-lmdb is set to 'no', but lmdb support is required])
243 ])
244 AS_IF([test "x$HAVE_LMDB" != "x1"], [
245 AC_MSG_ERROR([lmdb not found via pkg-config, please install lmdb or set --with-lmdb to your lmdb installation directory])
246 ])
247 ])
248
249 AM_CONDITIONAL([CDB], [test "x$needcdb" != "x"])
250 AM_CONDITIONAL([HAVE_CDB], [test "x$CDB_LIBS" != "x"])
251
252 AS_IF([test "x$needcdb" = "xyes"], [
253 AS_IF([test "x$HAVE_CDB" != "x1"], [
254 AC_MSG_ERROR([cdb not found via pkg-config, please install cdb])
255 ])
256 ])
257
258 for a in $modules; do
259 AC_MSG_CHECKING([whether we can build module "${a}"])
260 if [[ -d "$srcdir/modules/${a}backend" ]]; then
261 AC_MSG_RESULT([yes])
262 moduledirs="$moduledirs ${a}backend"
263
264 for b in `cat $srcdir/modules/${a}backend/OBJECTFILES`; do
265 moduleobjects="$moduleobjects ../modules/${a}backend/$b"
266 done
267 modulelibs="$modulelibs `cat $srcdir/modules/${a}backend/OBJECTLIBS`"
268 else
269 AC_MSG_RESULT([no])
270 AC_MSG_ERROR([Do not know how to build module "$a", "$srcdir/modules/${a}backend" does not exist! Please review --with-modules parameter for supported values.])
271 fi
272 done
273
274 for a in $dynmodules; do
275 AC_MSG_CHECKING([whether we can build dynamic module "${a}"])
276 if [[ -d "$srcdir/modules/${a}backend" ]]; then
277 AC_MSG_RESULT([yes])
278 moduledirs="$moduledirs ${a}backend"
279 else
280 AC_MSG_RESULT([no])
281 AC_MSG_ERROR([Do not know how to build module "$a", "$srcdir/modules/${a}backend" does not exist! Please review --with-dynmodules parameter for supported values.])
282 fi
283 done
284
285 AX_AVAILABLE_SYSTEMD
286 AX_CHECK_SYSTEMD_FEATURES
287 AM_CONDITIONAL([HAVE_SYSTEMD], [ test x"$systemd" = "xy" ])
288 PDNS_WITH_SERVICE_USER([pdns])
289
290 LDFLAGS="$RELRO_LDFLAGS $LDFLAGS"
291
292 CFLAGS="$PIE_CFLAGS $CFLAGS"
293 CXXFLAGS="$PIE_CFLAGS $CXXFLAGS"
294 PROGRAM_LDFLAGS="$PIE_LDFLAGS $PROGRAM_LDFLAGS"
295 AC_SUBST([PROGRAM_LDFLAGS])
296
297 PDNS_ENABLE_COVERAGE
298 PDNS_ENABLE_SANITIZERS
299 PDNS_ENABLE_MALLOC_TRACE
300
301 AC_SUBST(LIBS)
302
303 AC_SUBST([AM_CPPFLAGS],
304 ["AS_ESCAPE([-I$(top_builddir) -I$(top_srcdir)]) $THREADFLAGS $BOOST_CPPFLAGS"]
305 )
306
307 AC_SUBST([YAHTTP_CFLAGS], ['-I$(top_srcdir)/ext/yahttp'])
308 AC_SUBST([YAHTTP_LIBS], ['$(top_builddir)/ext/yahttp/yahttp/libyahttp.la'])
309 AC_SUBST([IPCRYPT_CFLAGS], ['-I$(top_srcdir)/ext/ipcrypt'])
310 AC_SUBST([IPCRYPT_LIBS], ['$(top_builddir)/ext/ipcrypt/libipcrypt.la'])
311
312 CXXFLAGS="$SANITIZER_FLAGS $CXXFLAGS"
313
314 AC_ARG_VAR(PACKAGEVERSION, [The version used in secpoll queries])
315 AS_IF([test "x$PACKAGEVERSION" != "x"],
316 [AC_DEFINE_UNQUOTED([PACKAGEVERSION], "$PACKAGEVERSION", [Set to the package version used for secpoll])]
317 )
318
319 export moduledirs moduleobjects modulelibs
320
321 AC_CONFIG_FILES([
322 Makefile
323 modules/Makefile
324 pdns/Makefile
325 codedocs/Makefile
326 docs/Makefile
327 pdns/pdns.init
328 ext/Makefile
329 ext/ipcrypt/Makefile
330 ext/yahttp/Makefile
331 ext/yahttp/yahttp/Makefile
332 ext/json11/Makefile
333 modules/bindbackend/Makefile
334 modules/geoipbackend/Makefile
335 modules/gmysqlbackend/Makefile
336 modules/godbcbackend/Makefile
337 modules/gpgsqlbackend/Makefile
338 modules/gsqlite3backend/Makefile
339 modules/ldapbackend/Makefile
340 modules/lmdbbackend/Makefile
341 modules/lua2backend/Makefile
342 modules/pipebackend/Makefile
343 modules/randombackend/Makefile
344 modules/remotebackend/Makefile
345 modules/tinydnsbackend/Makefile
346 ])
347 AC_OUTPUT
348
349 AC_MSG_NOTICE([])
350 AC_MSG_NOTICE([Configuration summary])
351 AC_MSG_NOTICE([=====================])
352 AC_MSG_NOTICE([])
353 AC_MSG_NOTICE([Configured with: $pdns_configure_args])
354 AC_MSG_NOTICE([])
355 AC_MSG_NOTICE([CC: $CC])
356 AC_MSG_NOTICE([CXX: $CXX])
357 AC_MSG_NOTICE([LD: $LD])
358 AC_MSG_NOTICE([CFLAGS: $CFLAGS])
359 AC_MSG_NOTICE([CPPFLAGS: $CPPFLAGS])
360 AC_MSG_NOTICE([CXXFLAGS: $CXXFLAGS])
361 AC_MSG_NOTICE([LDFLAGS: $LDFLAGS])
362 AC_MSG_NOTICE([LIBS: $LIBS])
363 AC_MSG_NOTICE([BOOST_CPPFLAGS: $BOOST_CPPFLAGS])
364 AC_MSG_NOTICE([])
365 AC_MSG_NOTICE([Extras enabled])
366 AC_MSG_NOTICE([--------------])
367 AS_IF([test "x$enable_tools" = "xyes"],
368 [AC_MSG_NOTICE([Tools: yes])],
369 [AC_MSG_NOTICE([Tools: no])]
370 )
371 AS_IF([test "x$enable_ixfrdist" = "xyes"],
372 [AC_MSG_NOTICE([ixfrdist: yes])],
373 [AC_MSG_NOTICE([ixfrdist: no])]
374 )
375 AC_MSG_NOTICE([])
376 AC_MSG_NOTICE([Server Features enabled])
377 AC_MSG_NOTICE([-----------------------])
378 AC_MSG_NOTICE([Built-in modules: $modules])
379 AC_MSG_NOTICE([Dynamic modules: $dynmodules])
380 AC_MSG_NOTICE([])
381 AS_IF([test "x$libcrypto_ecdsa" = "xyes"],
382 [AC_MSG_NOTICE([OpenSSL ecdsa: yes])],
383 [AC_MSG_NOTICE([OpenSSL ecdsa: no])]
384 )
385 AS_IF([test "x$LIBSODIUM_LIBS" != "x" || test "x$LIBDECAF_LIBS" != "x" || test "x$libcrypto_ed25519" = "xyes"],
386 [AC_MSG_NOTICE([ed25519: yes])],
387 [AC_MSG_NOTICE([ed25519: no])]
388 )
389 AS_IF([test "x$LIBDECAF_LIBS" != "x" || test "x$libcrypto_ed448" = "xyes"],
390 [AC_MSG_NOTICE([ed448: yes])],
391 [AC_MSG_NOTICE([ed448: no])]
392 )
393 AS_IF([test "x$needsqlite3" != "x"],
394 [AC_MSG_NOTICE([SQLite3: yes])],
395 [AC_MSG_NOTICE([SQLite3: no])]
396 )
397 AS_IF([test "x$LUAPC" != "x"],
398 [AC_MSG_NOTICE([Lua: $LUAPC])],
399 [AS_IF([test "x$LUAJITPC" != "x"],
400 [AC_MSG_NOTICE([LuaJit: $LUAJITPC])],
401 [AC_MSG_NOTICE([Lua/LuaJit: no])])
402 ])
403 AS_IF([test "x$enable_experimental_pkcs11" = "xyes"],
404 [AC_MSG_NOTICE([PKCS-11: yes])]
405 )
406 AS_IF([test "x$enable_experimental_gss_tsig" = "xyes"],
407 [AC_MSG_NOTICE([GSS-TSIG: yes])]
408 )
409 AS_IF([test "x$enable_lua_records" = "xyes"],
410 [AC_MSG_NOTICE([LUA records: yes])]
411 )
412 AS_IF([test "x$systemd" != "xn"],
413 [AC_MSG_NOTICE([systemd: yes])],
414 [AC_MSG_NOTICE([systemd: no])]
415 )
416 AS_IF([test "x$enable_remotebackend_zeromq" != "xno"],
417 [AC_MSG_NOTICE([ZeroMQ connector for remotebackend: yes])]
418 )
419 AS_IF([test -n "$GEOIP_LIBS"],
420 [AC_MSG_NOTICE([libgeoip for geoipbackend: yes])]
421 )
422 AS_IF([test -n "$MMDB_LIBS"],
423 [AC_MSG_NOTICE([libmaxminddb for geoipbackend: yes])]
424 )
425 AC_MSG_NOTICE([])