diff options
author | Louie Shprung <lshprung@scu.edu> | 2023-01-01 16:50:24 -0800 |
---|---|---|
committer | Louie Shprung <lshprung@scu.edu> | 2023-01-01 16:50:24 -0800 |
commit | 42807fa75746d991d0d4cae907c86cf52f973044 (patch) | |
tree | 2f042e7b747ee393e62b7e60bd713c80fbe1c20a /configure | |
parent | 62a1724a7fc336ebe20652a7185abd3cd7f1cb19 (diff) |
Working Windows builds under MinGW
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 52 |
1 files changed, 51 insertions, 1 deletions
@@ -4506,7 +4506,7 @@ done ac_config_files="$ac_config_files Makefile src/Makefile" -# Additional Macro Checks +# Check that curses.h exists @@ -5671,6 +5671,56 @@ if test "x$ax_cv_curses" != xyes; then as_fn_error $? "requires an X/Open-compatible Curses library with color" "$LINENO" 5 fi +# Check if mkdir takes one or more arguments +for ac_func in mkdir _mkdir +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether mkdir takes one argument" >&5 +$as_echo_n "checking whether mkdir takes one argument... " >&6; } +if ${ac_cv_mkdir_takes_one_arg+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include <sys/stat.h> +#if HAVE_UNISTD_H +# include <unistd.h> +#endif + +int +main () +{ +mkdir ("."); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_mkdir_takes_one_arg=yes +else + ac_cv_mkdir_takes_one_arg=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_mkdir_takes_one_arg" >&5 +$as_echo "$ac_cv_mkdir_takes_one_arg" >&6; } +if test x"$ac_cv_mkdir_takes_one_arg" = xyes; then + +$as_echo "#define MKDIR_TAKES_ONE_ARG 1" >>confdefs.h + +fi + + cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure |