1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
From: Nathan Doris <nate.doris@gmail.com>
Date: Thursday, 13 June 2024
Description: In configure.ac, replaced AC_PATH_PROG to AC_PATH_TOOL
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,7 @@
AC_CHECK_HEADERS(netinet/sctp.h,,AC_MSG_ERROR(netinet/sctp.h not found))
dnl check for pkg-config (explained in detail in libosmocore/configure.ac)
-AC_PATH_PROG(PKG_CONFIG_INSTALLED, pkg-config, no)
+AC_PATH_TOOL(PKG_CONFIG_INSTALLED, pkg-config, no)
if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
AC_MSG_WARN([You need to install pkg-config])
fi
|