asn1c/configure.ac

300 lines
11 KiB
Plaintext
Raw Normal View History

2017-03-26 10:48:43 +00:00
AC_INIT([asn1c],[0.9.29],[vlm@lionet.info])
AC_CONFIG_AUX_DIR(config)
2010-11-09 11:10:36 +00:00
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([foreign])
2010-11-09 11:10:36 +00:00
AC_CONFIG_MACRO_DIR([m4])
2004-06-03 03:38:44 +00:00
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_YACC
AM_PROG_LEX
dnl locate ar using standard macro (old automake 1.11 does not know about AM_PROG_AR)
m4_ifdef([AM_PROG_AR],
[AM_PROG_AR],
[AC_PATH_PROG(AR, ar, ar, $PATH:/usr/ucb:/usr/ccs/bin)])
2017-09-16 04:57:29 +00:00
AC_PROG_CXX
CXXFLAGS="-std=c++11"
LT_INIT
2004-06-03 03:38:44 +00:00
2014-10-13 01:51:52 +00:00
dnl If you need to see the details, just run make V=1.
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
2013-05-21 07:56:38 +00:00
2004-08-23 10:40:21 +00:00
case "$host_os" in
2006-03-18 06:39:12 +00:00
cygwin)
2004-08-23 10:40:21 +00:00
case "$target" in
*mingw*)
CC="$CC -mno-cygwin"
esac
;;
2006-03-18 06:24:33 +00:00
esac
AC_ARG_ENABLE([ASN_DEBUG],
2015-04-10 07:09:57 +00:00
[AS_HELP_STRING([--enable-ASN_DEBUG],
[produce debug log during `make check` testing])],
[enable_asn_debug=$enableval], [enable_asn_debug=no])
AS_IF([test x$enable_asn_debug != xno], [
TESTSUITE_CFLAGS="-DEMIT_ASN_DEBUG"
2016-03-14 12:14:07 +00:00
SKELETONS_CFLAGS="-DEMIT_ASN_DEBUG"
2015-04-10 07:09:57 +00:00
])
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])
AX_CHECK_COMPILE_FLAG([-Wcast-qual], [CFLAGS="$CFLAGS -Wcast-qual"])
AX_CHECK_COMPILE_FLAG([-Wchar-subscripts],
2014-09-15 00:19:21 +00:00
[CFLAGS="$CFLAGS -Wchar-subscripts"])
AX_CHECK_COMPILE_FLAG([-Wmissing-prototypes],
2014-09-15 00:19:21 +00:00
[CFLAGS="$CFLAGS -Wmissing-prototypes"])
AX_CHECK_COMPILE_FLAG([-Wmissing-declarations],
2014-09-15 00:19:21 +00:00
[CFLAGS="$CFLAGS -Wmissing-declarations"])
2004-06-03 03:38:44 +00:00
dnl There are legitimate uses for these features, disable warnings/errors.
AX_CHECK_COMPILE_FLAG([-Wno-error=attributes],
[CFLAGS="$CFLAGS -Wno-error=attributes"])
AX_CHECK_COMPILE_FLAG([-Wno-error=cast-align],
2014-09-15 00:19:21 +00:00
[CFLAGS="$CFLAGS -Wno-error=cast-align"])
AX_CHECK_COMPILE_FLAG([-Wno-error=visibility],
2014-09-15 00:19:21 +00:00
[CFLAGS="$CFLAGS -Wno-error=visibility"])
AX_CHECK_COMPILE_FLAG([-Wno-error=parentheses-equality],
2014-09-15 00:19:21 +00:00
[CFLAGS="$CFLAGS -Wno-error=parentheses-equality"])
2016-03-14 11:07:45 +00:00
AX_CHECK_COMPILE_FLAG([-std=gnu99],
2017-08-07 06:41:11 +00:00
[CFLAGS="$CFLAGS -std=gnu99"
TESTSUITE_CFLAGS="${TESTSUITE_CFLAGS} -std=gnu99"])
2014-09-15 00:19:21 +00:00
AX_CHECK_COMPILE_FLAG([-Wno-error=unused-variable],
[TESTSUITE_CFLAGS="${TESTSUITE_CFLAGS} -Wno-error=unused-variable"])
dnl Lower the optimization level in tests to aid debugging.
dnl AX_CHECK_COMPILE_FLAG([-O1],
dnl [TESTSUITE_CFLAGS="${TESTSUITE_CFLAGS} -O1"])
dnl AX_CHECK_COMPILE_FLAG([-fno-inline],
dnl [TESTSUITE_CFLAGS="${TESTSUITE_CFLAGS} -fno-inline"])
2014-09-15 00:19:21 +00:00
AX_CODE_COVERAGE
AS_IF([test x$enable_code_coverage != xno], [
CFLAGS="$CFLAGS $CODE_COVERAGE_CFLAGS"
# The CODE_COVERAGE_CPPFLAGS contains -DNDEBUG flag
# which removes assert(...) macros from code coverage and improves the
# branches score. But when it is defined it results in few
# unsed-but-set-variable warnings that are treated as errors in the travis-ci
# build because these variables are only used inside assert macros.
# error: variable ret set but not used [-Werror=unused-but-set-variable]
#CPPFLAGS="$CPPFLAGS $CODE_COVERAGE_CPPFLAGS"
CXXFLAGS="$CXXFLAGS $CODE_COVERAGE_CXXFLAGS"
2017-03-26 23:12:11 +00:00
AC_SEARCH_LIBS(gcov_open, gcov, [LDFLAGS="$LDFLAGS $CODE_COVERAGE_LDFLAGS"])
])
2016-01-25 03:23:02 +00:00
dnl Skeletons should be very compatible with most of the compilers, hence
dnl very strict backward compatibility flags.
2016-03-14 12:14:07 +00:00
SKELETONS_CFLAGS="${ADD_CFLAGS} ${SKELETONS_CFLAGS}"
2016-01-25 03:23:02 +00:00
AX_CHECK_COMPILE_FLAG([-std=c89],
2016-01-25 06:13:27 +00:00
[SKELETONS_CFLAGS="$SKELETONS_CFLAGS -std=c89"])
2016-01-25 03:23:02 +00:00
AX_CHECK_COMPILE_FLAG([-Wpedantic],
[SKELETONS_CFLAGS="$SKELETONS_CFLAGS -Wpedantic"],
[
dnl When -Wpedantic is not supported try the -pedantic instead. (gcc-4.7)
dnl See https://gcc.gnu.org/gcc-4.8/changes.html
AX_CHECK_COMPILE_FLAG([-pedantic],
[SKELETONS_CFLAGS="$SKELETONS_CFLAGS -pedantic"], [], [-Werror])
],
[-Werror]) #clang 3.0 prints warning when the flag is not supported
2017-09-13 22:52:39 +00:00
AC_ARG_ENABLE(Werror,
[AS_HELP_STRING([--enable-Werror],
[abort compilation after any C compiler warning])],
[enable_werror=$enableval], [enable_werror=no])
AS_IF([test x$enable_werror != xno], [
ADD_CFLAGS="${ADD_CFLAGS} -Werror -W -Wall -Wpointer-arith"
SKELETONS_CFLAGS="${SKELETONS_CFLAGS} -Werror -W -Wall -Wpointer-arith"
AX_CHECK_COMPILE_FLAG([-Wgnu],
[SKELETONS_CFLAGS="${SKELETONS_CFLAGS} -Wgnu"])
])
AC_ARG_ENABLE(test-Werror,
[AS_HELP_STRING([--enable-test-Werror],
[abort compiling tests after any C compiler warning])],
[enable_test_werror=$enableval], [enable_test_werror=no])
AS_IF([test x$enable_test_werror != xno], [
TESTSUITE_CFLAGS="${TESTSUITE_CFLAGS} -Werror -W -Wpointer-arith"
])
AX_CHECK_COMPILE_FLAG([-Wno-format],
[SKELETONS_CFLAGS="$SKELETONS_CFLAGS -Wno-format"])
2017-09-13 22:52:39 +00:00
2017-09-16 02:12:24 +00:00
2017-10-19 07:33:54 +00:00
dnl If requested and -m32 is available to create 32-bit code,
2017-10-18 17:05:26 +00:00
dnl treat it like a special case to be checked.
AC_ARG_ENABLE([test-32bit],
2017-10-19 07:33:54 +00:00
[AS_HELP_STRING([--enable-test-32bit],
[Enable tests for 32-bit compatibility])],
[enable_test_32bit=$enableval], [enable_test_32bit=no])
AS_IF([test "x$enable_test_32bit" != xno], [
2017-10-18 17:05:26 +00:00
AX_CHECK_COMPILE_FLAG([-m32], [CFLAGS_M32=-m32],
[
CFLAGS_M32=""
2017-10-19 07:33:54 +00:00
AC_MSG_FAILURE([--enable-test-32bit=$enable_test_32bit is requested but not supported by the _AC_LANG compiler])
2017-10-18 17:05:26 +00:00
])
])
AC_SUBST(CFLAGS_M32)
AM_CONDITIONAL([EXPLICIT_M32], [test "x${CFLAGS_M32}" != "x"])
2017-09-16 02:12:24 +00:00
SANITIZER_CFLAGS=""
dnl Enable Undefined Behavior Sanitizer, if supported.
AC_ARG_ENABLE([test-ubsan],
[AS_HELP_STRING([--disable-test-ubsan],
[Disable Undefined Behavior Sanitizer for tests])],
[disable_test_ubsan=$enableval], [disable_test_ubsan=maybe])
AS_IF([test "x$disable_test_ubsan" != xno], [
2017-10-19 07:25:09 +00:00
AX_CHECK_COMPILE_AND_LINK_FLAG([-fsanitize=undefined],
2017-09-16 02:12:24 +00:00
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fsanitize=undefined"],
[
AS_IF([test "x$disable_test_ubsan" != xmaybe], [
AC_MSG_FAILURE(
2017-09-16 04:57:29 +00:00
[--disable-test-ubsan=$disable_test_ubsan is not supported on a target system.
2017-09-16 02:12:24 +00:00
https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html#how-to-build])])
])
AX_CHECK_COMPILE_FLAG([-fno-sanitize-recover=undefined],
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fno-sanitize-recover=undefined"])
dnl Unsigned integer overflow is enabled separately.
AX_CHECK_COMPILE_FLAG([-fsanitize=unsigned-integer-overflow],
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fsanitize=unsigned-integer-overflow"])
AX_CHECK_COMPILE_FLAG([-fno-sanitize-recover=unsigned-integer-overflow],
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fno-sanitize-recover=unsigned-integer-overflow"])
dnl Nullability is enabled separately.
AX_CHECK_COMPILE_FLAG([-fsanitize=nullability],
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fsanitize=nullability"])
AX_CHECK_COMPILE_FLAG([-fno-sanitize-recover=nullability],
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fno-sanitize-recover=nullability"])
dnl Keep error messages nice. Also consider:
dnl export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer
dnl export UBSAN_OPTIONS=print_stacktrace=1
AX_CHECK_COMPILE_FLAG([-fno-omit-frame-pointer],
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fno-omit-frame-pointer"])
2017-09-16 02:12:24 +00:00
])
2017-08-24 05:34:29 +00:00
dnl Enable Address Sanitizer, if supported by gcc (4.8+) or clang.
dnl http://clang.llvm.org/docs/AddressSanitizer.html
ASAN_ENV_FLAGS=""
2017-08-24 05:34:29 +00:00
AC_ARG_ENABLE([test-asan],
2017-09-16 02:12:24 +00:00
[AS_HELP_STRING([--disable-test-asan],
[Disable Address Sanitizer for tests])],
[disable_test_asan=$enableval], [disable_test_asan=maybe])
AS_IF([test "x$disable_test_asan" != xno], [
2017-10-19 07:25:09 +00:00
AX_CHECK_COMPILE_AND_LINK_FLAG([-fsanitize=address],
2017-09-16 02:12:24 +00:00
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fsanitize=address"],
[
AS_IF([test "x$disable_test_asan" != xmaybe], [
AC_MSG_FAILURE(
2017-09-16 04:57:29 +00:00
[--disable-test-asan=$disable_test_asan is not supported on a target system.
2017-09-16 02:12:24 +00:00
Check out https://clang.llvm.org/docs/AddressSanitizer.html#how-to-build])])
])
dnl Address sanitizer sometimes is equipped with the leak sanitizer,
dnl so we use -fsanitize=leak to permit ASAN_OPTIONS environment.
dnl If address sanitizer is not equipped with a leak sanitizer,
dnl invoking programs with ASAN_OPTIONS=detect_leaks=1 will break them.
AX_CHECK_COMPILE_FLAG([-fsanitize=leak], [
ASAN_ENV_FLAGS="${ASAN_ENV_FLAGS} ASAN_OPTIONS=detect_leaks=1"
])
2017-08-24 05:34:29 +00:00
dnl Keep error messages nice. Also consider:
dnl export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer
dnl export ASAN_OPTIONS=symbolize=1
AX_CHECK_COMPILE_FLAG([-fno-omit-frame-pointer],
2017-09-16 02:12:24 +00:00
[SANITIZER_CFLAGS="${SANITIZER_CFLAGS} -fno-omit-frame-pointer"])
])
2017-09-16 04:57:29 +00:00
dnl Enable LibFuzzer, if supported.
LIBFUZZER_CFLAGS=""
AC_ARG_ENABLE([test-fuzzer],
[AS_HELP_STRING([--enable-test-fuzzer],
[Enable LLVM LibFuzzer for randomized testing])],
[enable_test_fuzzer=$enableval], [enable_test_fuzzer=no])
AS_IF([test "x$enable_test_fuzzer" != xno], [
AX_CHECK_COMPILE_AND_LINK_FLAG([-fsanitize=fuzzer],
[LIBFUZZER_CFLAGS="-fsanitize=fuzzer -DENABLE_LIBFUZZER"],
[AC_MSG_FAILURE(
2017-09-16 04:57:29 +00:00
[--enable-test-fuzzer=$enable_test_fuzzer is not supported on a target system.
Check out http://llvm.org/docs/LibFuzzer.html])],
[],
[AC_LANG_SOURCE([[
#include <sys/types.h>
int LLVMFuzzerTestOneInput(const unsigned char *Data, size_t Size);
int LLVMFuzzerTestOneInput(const unsigned char *Data, size_t Size) {
(void)Data;
(void)Size;
return 0;
}
]])])
2017-09-16 04:57:29 +00:00
])
2017-10-06 23:35:21 +00:00
TESTSUITE_CFLAGS="${TESTSUITE_CFLAGS} ${SANITIZER_CFLAGS}"
2017-09-16 02:12:24 +00:00
SKELETONS_CFLAGS="${SKELETONS_CFLAGS} ${SANITIZER_CFLAGS}"
2017-08-24 05:34:29 +00:00
AC_SUBST(ADD_CFLAGS)
2017-09-16 04:57:29 +00:00
AC_SUBST(LIBFUZZER_CFLAGS)
2017-09-16 02:12:24 +00:00
AC_SUBST(SANITIZER_CFLAGS)
2017-08-24 05:34:29 +00:00
AC_SUBST(TESTSUITE_CFLAGS)
2016-01-25 03:23:02 +00:00
AC_SUBST(SKELETONS_CFLAGS)
AC_SUBST(ASAN_ENV_FLAGS)
2016-01-25 03:23:02 +00:00
2004-06-03 03:38:44 +00:00
dnl Checks for header files.
AC_HEADER_STDC
2004-08-13 16:58:19 +00:00
AC_CHECK_HEADERS(sys/param.h)
2004-06-03 03:38:44 +00:00
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_BIGENDIAN
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_STRUCT_TM
AC_CHECK_TYPE([__int128],
[AC_DEFINE(HAVE_128_BIT_INT, 1, [Have 128-bit integer])])
2004-06-03 03:38:44 +00:00
AC_CHECK_TYPE(intmax_t, int64_t)
2017-08-02 19:40:13 +00:00
dnl Test if we should test features that depend on 64-bitness.
AC_CHECK_SIZEOF([void *])
AM_CONDITIONAL([TEST_64BIT], [test "$ac_cv_sizeof_void_p" -eq 8])
dnl For mingw
AC_SEARCH_LIBS(getopt, iberty)
2004-06-03 03:38:44 +00:00
AC_CHECK_FUNCS(strtoimax strtoll)
2004-06-28 21:22:35 +00:00
AC_CHECK_FUNCS(mergesort)
2007-08-27 23:57:45 +00:00
AC_CHECK_FUNCS(mkstemps)
AC_CHECK_FUNCS(timegm)
2017-10-09 02:28:20 +00:00
AC_CHECK_DECLS(strcasecmp)
2017-10-06 06:07:22 +00:00
AC_CHECK_DECLS(vasprintf)
AC_TRY_LINK_FUNC([symlink],[AC_DEFINE([HAVE_SYMLINK], 1, [Define to 1 if you have the symlink function.])])
2007-08-27 23:57:45 +00:00
dnl Use pandoc to generate manual pages.
AC_PATH_PROG([PANDOC], pandoc)
AM_CONDITIONAL([HAVE_PANDOC], [test -n "$PANDOC"])
2016-03-14 09:36:27 +00:00
AC_CONFIG_FILES([\
2017-08-10 21:59:15 +00:00
tests/tests-c-compiler/check-src/Makefile \
tests/tests-asn1c-compiler/Makefile \
2017-10-01 02:33:23 +00:00
tests/tests-randomized/Makefile \
2017-08-10 21:59:15 +00:00
tests/tests-c-compiler/Makefile \
2017-08-24 20:54:58 +00:00
tests/tests-skeletons/Makefile \
2017-08-10 21:59:15 +00:00
libasn1compiler/Makefile \
2017-08-22 08:44:56 +00:00
libasn1common/Makefile \
2017-08-10 21:59:15 +00:00
libasn1parser/Makefile \
libasn1print/Makefile \
libasn1fix/Makefile \
doc/docsrc/Makefile \
skeletons/Makefile \
examples/Makefile \
doc/man/Makefile \
tests/Makefile \
asn1c/Makefile \
doc/Makefile \
Makefile \
2016-03-14 09:36:27 +00:00
])
AC_OUTPUT
2004-06-03 03:38:44 +00:00