1 AC_INIT([tlsproxy], [0.1], [simon@ruderich.org])
3 AC_CONFIG_AUX_DIR([build-aux])
4 AC_CONFIG_MACRO_DIR([m4])
5 AC_CONFIG_SRCDIR([src/tlsproxy.c])
7 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
11 if test "x$GCC" = xyes; then
12 CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror -D_XOPEN_SOURCE=500 $CFLAGS"
15 AC_CHECK_LIB([pthread], [pthread_create],
16 [], [AC_MSG_ERROR([pthread is required])])
17 AC_CHECK_LIB([gnutls], [gnutls_certificate_verify_peers2],
18 [], [AC_MSG_ERROR([GnuTLS is required])])
20 AC_ARG_ENABLE([debug],
21 [AC_HELP_STRING([--enable-debug], [enable debug output])],
22 [if test "x$enableval" = xyes; then
23 AC_DEFINE([DEBUG], 1, [Define to enable debug output.])
26 AC_CONFIG_HEADERS([config.h])
27 AC_CONFIG_FILES([Makefile src/Makefile])