1 dnl Copyright © 2015, 2019-2023 Nick Bowler
3 dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2.
4 dnl This is free software: you are free to do what the fuck you want to.
5 dnl There is NO WARRANTY, to the extent permitted by law.
8 AC_INIT([dxcommon], [0], [nbowler@draconx.ca])
9 AC_CONFIG_SRCDIR([m4/base.m4])
13 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
14 AM_SILENT_RULES([yes])
17 # To ensure automake --add-missing copies config.guess/config.sub
24 AC_USE_SYSTEM_EXTENSIONS
27 AC_SUBST([STUB_INCLUDES], [@&t@])
29 AC_CHECK_FUNCS_ONCE([wcwidth])
30 AM_CONDITIONAL([HAVE_WCWIDTH], [test x"$ac_cv_func_wcwidth" = x"yes"])
32 AC_CONFIG_TESTDIR([.])
34 AM_CONDITIONAL([HAVE_AUTOTEST], [test x"$dx_cv_autotest_works" = x"yes"])
36 AC_CACHE_CHECK([for struct option in <getopt.h>], [dx_cv_have_struct_option],
37 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <getopt.h>],
38 [[struct option opt = { "aaaa", 2, (void *)0, 'a' };
39 return opt.name[opt.flag ? opt.val : opt.has_arg];]])],
40 [dx_cv_have_struct_option=yes], [dx_cv_have_struct_option=no])])
41 AS_IF([test x"$dx_cv_have_struct_option" != x"yes"],
42 [AS_VAR_APPEND([STUB_INCLUDES], ['-I${top_srcdir}/t/getopt'])])
44 AM_CONDITIONAL([HAVE_STRUCT_OPTION],
45 [test x"$dx_cv_have_struct_option" = x"yes"])
47 AC_ARG_VAR([PERL], [command to execute perl programs])
48 AC_CHECK_PROGS([PERL], [perl], [false])
50 AC_CONFIG_FILES([Makefile atlocal])