From 2987ba808184b5d8531d24dde736cec36e33859f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?devil=20=E2=9D=82=20tux?= Date: Fri, 15 Dec 2017 10:45:31 +0100 Subject: [PATCH] Fix: Missing ranlib in autoconf On RHEL7 & possibly CentOS configuring using `autogen` does not append RANLIB nor is registered by default, this fixes definition of the library. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index f0629038..949d9bb0 100644 --- a/configure.ac +++ b/configure.ac @@ -5,6 +5,7 @@ AC_DEFINE(API_VERSION, 9, api version) AM_INIT_AUTOMAKE AC_CONFIG_HEADERS(config.h) +AC_PROG_RANLIB AC_PROG_CXX AC_PROG_LIBTOOL