gen-strtab.awk: Work around IRIX 6.2 nawk bug.
[dxcommon.git] / configure.ac
blob88d0cf0924f9ff9d057257daf96db87f496d2bc8
1 # Copyright © 2015, 2019-2024 Nick Bowler
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
16 AC_PREREQ([2.68])
17 AC_INIT([dxcommon], [0], [nbowler@draconx.ca])
18 AC_CONFIG_SRCDIR([m4/base.m4])
20 DX_INIT([.])
22 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
23 AM_SILENT_RULES([no])
24 DX_AUTOMAKE_COMPAT
26 # To ensure automake --add-missing copies config.guess/config.sub
27 AC_CANONICAL_HOST
29 AC_PROG_CC
30 AC_PROG_RANLIB
31 AC_PROG_AWK
33 AC_USE_SYSTEM_EXTENSIONS
34 AC_C_STRINGIZE
35 AC_C_INLINE
36 AM_PROG_AR
38 DX_CHECK_MBRTOWC_WCWIDTH
39 AM_CONDITIONAL([TEST_WCWIDTH], [test x"$dx_cv_have_mbrtowc_wcwidth" = x"yes"])
41 AC_CONFIG_TESTDIR([.], [t:$srcdir/t])
42 DX_PROG_AUTOTEST_AM
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])
51 AC_OUTPUT