Make <wchar.t> and mbstowcs mandatory. Get rid of some conditional compilation.

This commit is contained in:
Dianne Skoll
2025-12-18 15:21:18 -05:00
parent 0933cd83b1
commit 62e1a467f5
12 changed files with 29 additions and 129 deletions

11
configure vendored
View File

@@ -4316,6 +4316,12 @@ if test "$?" != 0 ; then
echo "*** COULD NOT DETERMINE RELEASE DATE: docs/WHATSNEW is incorrect!"
exit 1
fi
if test "$ac_cv_header_wctype_h" != "yes" ; then
echo "*** Remind requires the <wctype.h> header"
exit 1
fi
ac_fn_c_check_func "$LINENO" "strdup" "ac_cv_func_strdup"
if test "x$ac_cv_func_strdup" = xyes
then :
@@ -4384,6 +4390,11 @@ then :
fi
if test "$ac_cv_func_mbstowcs" != "yes"; then
echo "*** Remind requires the mbstowcs function"
exit 1
fi
VERSION=$PACKAGE_VERSION
CONFIG_CMD="$0$ac_configure_args_raw"
CONFIG_CMD=`echo "$CONFIG_CMD" | sed -e 's/"/\\\\"/g'`