Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/librfxcodec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatt335672 <30179339+matt335672@users.noreply.github.com>2022-11-07 18:42:01 +0300
committerGitHub <noreply@github.com>2022-11-07 18:42:01 +0300
commit30f6ce185c84edc6350bce0d6eae1a16edd2b1a3 (patch)
tree748b19d8daa2b57891956c515513661502a4d41d /configure.ac
parentc77afab7ce06f362b3e5184da78a4fb2396c498e (diff)
Bump autoconf ver (#55)HEADdevel
* Update autoconf version to 2.69 * Replace AC_PROG_LIBTOOL with LT_INIT * Replace AC_HELP_STRING with AS_HELP_STRING * Replace AC_FD_CC with AS_MESSAGE_LOG_FD
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index cb5f497..47cb8ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# Process this file with autoconf to produce a configure script
-AC_PREREQ(2.59)
+AC_PREREQ(2.69)
AC_INIT([rfxcodec], [0.1.6], [xrdp-devel@googlegroups.com])
AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in)
AM_INIT_AUTOMAKE([1.6 foreign])
@@ -8,7 +8,7 @@ AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_PROG_CC
AC_C_CONST
-AC_PROG_LIBTOOL
+LT_INIT
PKG_INSTALLDIR
AX_CFLAGS_WARN_ALL
@@ -16,7 +16,7 @@ AX_APPEND_COMPILE_FLAGS([-Wwrite-strings])
# SIMD is optional
AC_ARG_WITH([simd],
- AC_HELP_STRING([--without-simd],[Omit SIMD extensions.]))
+ AS_HELP_STRING([--without-simd],[Omit SIMD extensions.]))
if test "x${with_simd}" != "xno"; then
# Check if we're on a supported CPU
AC_MSG_CHECKING([if we have SIMD optimisations for cpu type])