summaryrefslogtreecommitdiff
path: root/readline/configure
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2003-05-27 23:29:47 +0000
committerMark Kettenis <kettenis@gnu.org>2003-05-27 23:29:47 +0000
commit05bc3370b833186e520b32563edfcaa28fd27707 (patch)
treed5c017d138e2dace5bd6621e31646e5b851fc8f2 /readline/configure
parent756d1d01889f120348ff040ef9599b595524d4b9 (diff)
* aclocal.m4: Don't add wcwidth.o if we don't have wchar.h.
* configure: Regenerate.
Diffstat (limited to 'readline/configure')
-rwxr-xr-xreadline/configure11
1 files changed, 5 insertions, 6 deletions
diff --git a/readline/configure b/readline/configure
index b5c2e8dcbf..236327cf7f 100755
--- a/readline/configure
+++ b/readline/configure
@@ -6235,20 +6235,19 @@ fi
echo "$as_me:$LINENO: result: $ac_cv_func_wcwidth" >&5
echo "${ECHO_T}$ac_cv_func_wcwidth" >&6
if test $ac_cv_func_wcwidth = yes; then
- have_wcwidth=yes
-fi
-
-if test "$have_wcwidth" = yes; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_WCWIDTH 1
_ACEOF
+fi
-else
+if test "$ac_cv_func_wcwidth" = no && test "$ac_cv_header_wchar_h" = yes; then
WCWIDTH_OBJ=wcwidth.o
-
+else
+ WCWIDTH_OBJ=
fi
+
echo "$as_me:$LINENO: checking for mbstate_t" >&5
echo $ECHO_N "checking for mbstate_t... $ECHO_C" >&6
if test "${bash_cv_have_mbstate_t+set}" = set; then