1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: fix a FTCBFS caused by old AC_PATH_PROG. (see #884798)
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
Forwarded: https://github.com/Libvisual/libvisual/pull/120
Last-Update: 2018-11-03
Index: libvisual/configure.ac
===================================================================
--- libvisual.orig/configure.ac
+++ libvisual/configure.ac
@@ -98,7 +98,7 @@ AC_LIBTOOL_WIN32_DLL
AC_LIBTOOL_DLOPEN
AC_PROG_LIBTOOL
-AC_PATH_PROG(PKG_CONFIG, [pkg-config], [no])
+PKG_PROG_PKG_CONFIG
if test x$PKG_CONFIG = xno ; then
AC_MSG_WARN([*** pkg-config not found. See http://www.freedesktop.org/software/pkgconfig/.
*** You will need pkg-config to compile against Libvisual Library])
|