]> git.draconx.ca Git - cdecl99.git/blobdiff - configure.ac
tests: Avoid dependency on strtoumax.
[cdecl99.git] / configure.ac
index 6d4bf6cd3a8ff0c520105bd7665316b749ab593c..645e871f4a2db4ab7b98913dca00cb70d5902fcd 100644 (file)
@@ -85,9 +85,8 @@ AS_IF([test x"$dx_cv_bison_warn_no_deprecated" = x"yes"],
   [AS_VAR_APPEND([BISON_COMPAT], ["${BISON_COMPAT:+ }-Wno-deprecated"])])
 AC_SUBST([BISON_COMPAT])
 
-AS_IF([test x"$dx_cv_bison_define_cmdline" != x"yes"],
-  [dx_cv_bison_api_token_raw=no])
-AC_CACHE_CHECK([whether $BISON supports api.token.raw],
+AS_CASE([$dx_cv_bison_define_cmdline], [yes],
+[AC_CACHE_CHECK([whether $BISON supports api.token.raw],
   [dx_cv_bison_api_token_raw], [dx_cv_bison_api_token_raw=no
 cat >conftest.y <<'EOF'
 %token T_TEST
@@ -102,18 +101,14 @@ AS_IF([$BISON --define api.token.raw conftest.y >&AS_MESSAGE_LOG_FD 2>&1],
 [AC_COMPUTE_INT([testval], [T_TEST], [#include "conftest.tab.c"
 ])
 AS_IF([test "$testval" -lt 256], [dx_cv_bison_api_token_raw=yes])])])
-AS_IF([test x"$dx_cv_bison_api_token_raw" = x"yes"],
-  [AS_VAR_APPEND([BISON_COMPAT], [" --define api.token.raw"])])
+AS_CASE([$dx_cv_bison_api_token_raw], [yes],
+  [AS_VAR_APPEND([BISON_COMPAT], [" --define api.token.raw"])])])
 
 AH_TOP([#include <conf_pre.h>])
 AH_BOTTOM([#include <conf_post.h>])
 
 AC_CONFIG_TESTDIR([.], [t:.])
-DX_PROG_AUTOTEST
-AM_CONDITIONAL([HAVE_AUTOTEST], [test x"$dx_cv_autotest_works" = x"yes"])
-AC_CHECK_FUNCS_ONCE([strtoumax strtoull __strtoull])
+DX_PROG_AUTOTEST_AM
 
-AC_CONFIG_FILES([
-       Makefile
-])
+AC_CONFIG_FILES([Makefile])
 AC_OUTPUT