You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
864 B
24 lines
864 B
From 3fe8f6510de79689a26868e244840b24dcb19567 Mon Sep 17 00:00:00 2001 |
|
From: AlexPeshkoff <alexander.peshkoff@gmail.com> |
|
Date: Wed, 23 Nov 2022 20:30:03 +0300 |
|
Subject: [PATCH] Fixed #7394: autoconf 2.72 support |
|
|
|
--- |
|
configure.ac | 3 ++- |
|
1 file changed, 2 insertions(+), 1 deletion(-) |
|
|
|
diff --git a/configure.ac b/configure.ac |
|
index 75af92e862c..800453d25fa 100644 |
|
--- a/configure.ac |
|
+++ b/configure.ac |
|
@@ -696,8 +696,9 @@ if test "$STD_EDITLINE" = "true"; then |
|
AC_CHECK_LIB(readline, readline, [READLINE=readline EDITLINE_FLG=Y], |
|
[STD_EDITLINE=false |
|
if test "$EDITLINE_FLG" = "Y"; then |
|
- AC_MSG_WARN([[[--with-system-editline specified, not found. Using bundled editline]]])]))) |
|
+ AC_MSG_WARN([[[--with-system-editline specified, not found. Using bundled editline]]]) |
|
fi |
|
+ ]))) |
|
fi |
|
XE_RESTORE_ENV() |
|
|
|
|