From 42807fa75746d991d0d4cae907c86cf52f973044 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Sun, 1 Jan 2023 16:50:24 -0800 Subject: Working Windows builds under MinGW --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 86ed508..e9e1da1 100644 --- a/configure.ac +++ b/configure.ac @@ -23,10 +23,13 @@ AC_CHECK_FUNCS([mkdir]) AC_CONFIG_FILES([Makefile src/Makefile]) -# Additional Macro Checks +# Check that curses.h exists AX_WITH_CURSES if test "x$ax_cv_curses" != xyes; then AC_MSG_ERROR([requires an X/Open-compatible Curses library with color]) fi +# Check if mkdir takes one or more arguments +AX_FUNC_MKDIR + AC_OUTPUT -- cgit