freewtp/configure.ac

258 lines
6.4 KiB
Plaintext
Raw Normal View History

2016-08-22 16:59:55 +02:00
# FreeWTP -- An Open Source CAPWAP AC
2013-05-01 14:52:55 +02:00
#
# Copyright (C) 2012-2013 Massimo Vellucci <vemax78@gmail.com>
2016-08-22 16:59:55 +02:00
# Copyright (C) 2016 Travelping GmbH <info@travelping.com>
2013-05-01 14:52:55 +02:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program (see the file COPYING included with this
# distribution); if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
AC_PREREQ(2.63)
2013-05-01 14:52:55 +02:00
2016-08-22 16:59:55 +02:00
AC_INIT([freewtp], [1.3.0], [https://github.com/travelping/freewtp], [freewtp])
AC_CONFIG_AUX_DIR([config])
2013-05-01 14:52:55 +02:00
AC_CONFIG_MACRO_DIR([m4])
2016-08-22 16:59:55 +02:00
AM_INIT_AUTOMAKE([1.11 -Wall foreign subdir-objects silent-rules])
AC_USE_SYSTEM_EXTENSIONS
2013-05-01 14:52:55 +02:00
2016-08-22 16:59:55 +02:00
AM_SILENT_RULES([yes])
2013-05-01 14:52:55 +02:00
# cross-compile macros
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
#
AC_COPYRIGHT("SmartCapwap by Massimo Vellucci <vemax78@gmail.com>")
2016-08-22 16:59:55 +02:00
AC_COPYRIGHT("FreeWTP by Travelping <info@travelping.com>")
2013-05-01 14:52:55 +02:00
AC_REVISION($Revision: 1.0 $)
2016-08-22 16:59:55 +02:00
#
AM_MAINTAINER_MODE
#
AC_PROG_INSTALL
AC_LANG(C)
AC_HEADER_STDC
2013-05-01 14:52:55 +02:00
#
AC_ARG_ENABLE(
[dtls],
[AS_HELP_STRING([--disable-dtls], [disable DTLS support])],
2013-05-01 14:52:55 +02:00
,
[enable_dtls="yes"]
)
AC_ARG_ENABLE(
[debug],
[AS_HELP_STRING([--disable-debug], [disable debug support])],
2013-05-01 14:52:55 +02:00
,
[enable_debug="yes"]
)
AC_ARG_ENABLE(
[logging],
[AS_HELP_STRING([--disable-logging], [disable logging support])],
2013-05-01 14:52:55 +02:00
,
[enable_logging="yes"]
)
AC_ARG_WITH(
[mem-check],
[AS_HELP_STRING([--with-mem-check=TYPE], [build with debug memory checking, TYPE=no|internal|valgrind])],
2013-05-01 14:52:55 +02:00
[
case "${withval}" in
valgrind|internal|no) ;;
*) AC_MSG_ERROR([bad value ${withval} for --mem-check]) ;;
esac
],
[with_mem_check="internal"]
)
2016-08-22 16:59:55 +02:00
# WTP drivers wifi binding
2013-05-01 21:33:54 +02:00
AC_ARG_ENABLE(
[wifi-drivers-nl80211],
[AS_HELP_STRING([--disable-wifi-drivers-nl80211], [disable WTP support for nl80211 wifi binding])],
2013-05-01 21:33:54 +02:00
,
[enable_wifi_drivers_nl80211="yes"]
)
2013-05-01 14:52:55 +02:00
# specify output header file
2016-08-22 16:59:55 +02:00
AM_CONFIG_HEADER(lib/config.h)
2013-05-01 14:52:55 +02:00
#
AC_PROG_CC([gcc])
2016-08-22 16:59:55 +02:00
AC_PROG_CC_C99
AC_PROG_CPP
AM_PROG_CC_C_O
AM_PROG_AR
AM_PROG_LIBTOOL
2013-05-01 14:52:55 +02:00
#
2016-08-22 16:59:55 +02:00
AM_CONDITIONAL([DEBUG_BUILD], [test "$enable_debug" = yes])
2013-05-01 14:52:55 +02:00
if test "${enable_debug}" = "yes"; then
CFLAGS="${CFLAGS} -DDEBUG -Wall -Werror -g -O0"
AC_CHECK_HEADERS([execinfo.h], [have_backtrace="yes"],[])
if test "x${have_backtrace}" = "xyes"; then
AC_DEFINE([USE_DEBUG_BACKTRACE], [1], [Use debug backtrace])
fi
2013-05-01 14:52:55 +02:00
else
CFLAGS="${CFLAGS} -O2"
2013-05-03 22:28:06 +02:00
AC_DEFINE([DISABLE_LOGGING_DEBUG], [1], [Disable logging debug])
2013-05-01 14:52:55 +02:00
fi
# Check LIBCONFIG library
AC_CHECK_HEADER([libconfig.h], [], [AC_MSG_ERROR(You need the libconfig headers)])
AC_CHECK_LIB([config], [config_init], [CONFIG_LIBS="-lconfig"], [AC_MSG_ERROR(You need the libconfig library)])
2014-01-23 21:24:45 +01:00
# Check LIBCONFIG config_lookup_int() param type
LIBCONFIG_LOOKUP_INT_ARG=int
AC_MSG_CHECKING([what type of argument config_lookup_int() is expecting])
saved_CFLAGS="${CFLAGS}"
saved_LIBS="${LIBS}"
saved_LDFLAGS="${LDFLAGS}"
CFLAGS="$CFLAGS $LIBCONFIG_CFLAGS -Werror"
LIBS="$LIBS $CONFIG_LIBS"
LDFLAGS="$LDFLAGS $LIBCONFIG_LDFLAGS"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[
#include <libconfig.h>
],
[
int check;
config_t config;
(void)config_lookup_int(&config, "check", &check);
]
)],
[
AC_MSG_RESULT([int])
LIBCONFIG_LOOKUP_INT_ARG=int
],
[AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[
#include <libconfig.h>
],
[
long check;
config_t config;
(void)config_lookup_int(&config, "check", &check);
]
)],
[
AC_MSG_RESULT([long])
LIBCONFIG_LOOKUP_INT_ARG=long
],
[
AC_MSG_RESULT([unknown])
AC_MSG_ERROR([failed to determine config_lookup_int() argument type])
]
)]
)
CFLAGS="$saved_CFLAGS"
LIBS="$saved_LIBS"
LDFLAGS="$saved_LDFLAGS"
AC_DEFINE_UNQUOTED([LIBCONFIG_LOOKUP_INT_ARG], [$LIBCONFIG_LOOKUP_INT_ARG], [config_lookup_int() argument type])
AC_CHECK_LIB([ev], [ev_run],, [AC_MSG_ERROR(Required library ev missing)])
2013-05-01 14:52:55 +02:00
# Check SSL library
PKG_CHECK_MODULES([WOLFSSL], [wolfssl >= 3.8.0], [have_wolfssl_ssl="yes"], [have_wolfssl_ssl="no"])
# Check Netlink library
PKG_CHECK_MODULES(
2016-02-04 15:00:07 +01:00
[LIBNL3],
2016-03-14 10:40:11 +01:00
[libnl-3.0 >= 3.1 libnl-genl-3.0 >= 3.1],
2016-02-04 15:00:07 +01:00
[have_libnl3=yes],
[PKG_CHECK_MODULES(
2013-05-05 19:25:58 +02:00
[LIBNL],
2016-02-04 15:00:07 +01:00
[libnl-1],
[AC_DEFINE([HAVE_LIBNL_10], [1], [Use libnl-1.0 library])],
[PKG_CHECK_MODULES(
[LIBNL],
[libnl-tiny],
[AC_DEFINE([HAVE_LIBNL_TINY], [1], [Use libnl-tiny library])],
[AC_MSG_ERROR(You need the libnl or libnl-tiny)]
)]
)]
)
2016-02-04 15:00:07 +01:00
if test "${have_libnl3}" = "yes"; then
AC_DEFINE([HAVE_LIBNL_3], [1], [Use libnl-3.1+ library])
CFLAGS="${CFLAGS} ${LIBNL3_CFLAGS}"
LIBS="${LIBS} ${LIBNL3_LIBS}"
fi
AC_CHECK_HEADERS([netlink/genl/genl.h netlink/genl/family.h netlink/genl/ctrl.h], [], [AC_MSG_ERROR(You need the netlink header)])
AC_CHECK_HEADER([linux/nl80211.h], [], [AC_MSG_ERROR(You need the nl80211 header)])
2013-05-01 14:52:55 +02:00
# Check nl80211
if test "${enable_wifi_drivers_nl80211}" = "yes"; then
2013-05-05 19:25:58 +02:00
AC_DEFINE([ENABLE_WIFI_DRIVERS_NL80211], [1], [Enable WTP support for nl80211 wifi binding])
fi
AM_CONDITIONAL([BUILD_WTP_WIFI_DRIVERS_NL80211], [test "${enable_wifi_drivers_nl80211}" = "yes"])
2013-05-01 14:52:55 +02:00
if test "${enable_dtls}" = "yes"; then
2016-02-04 14:59:55 +01:00
test "x${have_wolfssl_ssl}" != "xyes" && AC_MSG_ERROR(You need the wolfssl library)
2013-05-01 14:52:55 +02:00
AC_DEFINE([ENABLE_DTLS], [1], [Enable DTLS])
fi
2013-05-02 21:32:03 +02:00
# Check UDPLite
2013-05-02 18:37:36 +02:00
AC_CHECK_HEADERS([netinet/udplite.h])
2013-05-01 14:52:55 +02:00
# Memory check
case "${with_mem_check}" in
internal)
LIBS="${LIBS} -rdynamic"
AC_DEFINE([USE_INTERNAL_MEMCHECK], [1], [Use internal memory debugging])
;;
valgrind)
AC_CHECK_HEADER(
[valgrind/memcheck.h],
[
CFLAGS="${CFLAGS} -g -fno-inline"
AC_DEFINE([USE_VALGRIND_MEMCHECK], [1], [Use valgrind memory debugging library])
],
[AC_MSG_ERROR([valgrind headers not found.])]
)
;;
esac
#
test "${enable_logging}" = "yes" && AC_DEFINE([ENABLE_LOGGING], [1], [Enable logging])
#
AM_CONDITIONAL([BUILD_DEBUG], [test "${enable_debug}" = "yes"])
AM_CONDITIONAL([DTLS_ENABLED], [test "${enable_dtls}" = "yes"])
#
AC_SUBST([SSL_CFLAGS])
AC_SUBST([SSL_LIBS])
AC_SUBST([CONFIG_LIBS])
#
AC_CONFIG_FILES([
Makefile
2016-08-22 16:59:55 +02:00
lib/Makefile
src/Makefile
2013-05-01 14:52:55 +02:00
])
AC_OUTPUT