X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=blobdiff_plain;f=configure.ac;h=6ddf591b91f7f4b52cc729bd571a42561372d538;hp=c71222a93dba29cd77a109a74daed2dcd9896c3e;hb=b7ce41b809a3b3533d398c0da8fd9787c149434c;hpb=3b5cc897aaab145273870aa6e1027432fcb648df diff --git a/configure.ac b/configure.ac index c71222a..6ddf591 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -dnl Copyright (C) 2011-2012 Simon Ruderich +dnl Copyright (C) 2011-2013 Simon Ruderich dnl dnl This program is free software: you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by @@ -14,10 +14,12 @@ dnl You should have received a copy of the GNU General Public License dnl along with this program. If not, see . -AC_INIT([tlsproxy], [0.2], [simon@ruderich.org]) +AC_PREREQ([2.69]) +AC_INIT([tlsproxy],[0.2],[simon@ruderich.org]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([src/tlsproxy.c]) AM_INIT_AUTOMAKE([foreign -Wall -Werror]) @@ -26,13 +28,12 @@ AC_PROG_CC if test "x$GCC" = xyes; then CFLAGS="-std=c89 -pedantic -Wall -Wextra -Werror $CFLAGS" - CFLAGS="-D_XOPEN_SOURCE=500 -Wno-error=int-to-pointer-cast $CFLAGS" - # Additional security flags. - CFLAGS="$CFLAGS -Wformat -Wformat-security -Werror=format-security" - CFLAGS="$CFLAGS -fstack-protector-all -Wstack-protector" - CFLAGS="$CFLAGS --param ssp-buffer-size=1" - CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -fPIE" - LDFLAGS="$LDFLAGS -Wl,-z,relro -Wl,-z,now -fPIE -pie" + CFLAGS="-Wno-error=int-to-pointer-cast $CFLAGS" + CPPFLAGS="-D_XOPEN_SOURCE=500 $CPPFLAGS" + # Additional hardening flags. + CFLAGS="-fPIE -fstack-protector-all -Wformat -Werror=format-security $CFLAGS" + CPPFLAGS="-D_FORTIFY_SOURCE=2 $CPPFLAGS" + LDFLAGS="-fPIE -pie -Wl,-z,relro -Wl,-z,now $LDFLAGS" fi AC_CHECK_LIB([pthread], [pthread_create], @@ -41,18 +42,17 @@ AC_CHECK_LIB([gnutls], [gnutls_certificate_verify_peers2], [], [AC_MSG_ERROR([GnuTLS is required])]) AC_ARG_ENABLE([debug], - [AC_HELP_STRING([--enable-debug], [enable debug output])], + [AS_HELP_STRING([--enable-debug],[enable debug output])], [if test "x$enableval" = xyes; then AC_DEFINE([DEBUG], 1, [Define to enable debug output.]) fi]) AC_ARG_ENABLE([ipv6], - [AC_HELP_STRING([--disable-ipv6], + [AS_HELP_STRING([--disable-ipv6], [disable IPv6, for IPv4 only network stacks])], [if test "x$enableval" = xno; then AC_DEFINE([USE_IPV4_ONLY], 1, [Define to not use IPv6.]) fi]) -AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile]) AC_OUTPUT