aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2021-01-30 16:36:14 -0500
committerThien-Thi Nguyen <ttn@gnuvola.org>2021-01-30 16:36:14 -0500
commit5b152adc0ba80dd6432827f04c9c7ec735623e83 (patch)
tree534ae6eff70849594db7766503619968394e8b8f /configure.ac
parenta8e50ec6854988a3c7c34961352f9a887dcfa4e0 (diff)
downloadgnunet-5b152adc0ba80dd6432827f04c9c7ec735623e83.tar.gz
gnunet-5b152adc0ba80dd6432827f04c9c7ec735623e83.zip
use AS_VERSION_COMPARE instead of AX_COMPARE_VERSION
(since the former is part of Autoconf proper)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2f1184296..68cae8c0e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1261,7 +1261,7 @@ gl_LIBUNISTRING
1261AS_IF([test $HAVE_LIBUNISTRING != yes], 1261AS_IF([test $HAVE_LIBUNISTRING != yes],
1262 [AC_MSG_ERROR([GNUnet requires libunistring])]) 1262 [AC_MSG_ERROR([GNUnet requires libunistring])])
1263 1263
1264AX_COMPARE_VERSION([$LIBUNISTRING_VERSION],[le],[0.9.1.1], 1264AS_VERSION_COMPARE([$LIBUNISTRING_VERSION],[0.9.1.1],
1265 [AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1])]) 1265 [AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1])])
1266 1266
1267AC_CHECK_HEADERS([unistr.h], 1267AC_CHECK_HEADERS([unistr.h],