From 33601ddc0c1f190366839382bac638cb4e65862d Mon Sep 17 00:00:00 2001 From: Karl-Philipp Richter Date: Mon, 25 Jan 2016 08:33:00 +0100 Subject: [PATCH] added checkout URL to action-if-not-found of PKG_CHECK_MODULES for libtorrent, fixed #377 --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 10bcda90..a121c06e 100644 --- a/configure.ac +++ b/configure.ac @@ -46,7 +46,8 @@ PKG_CHECK_MODULES([libcurl], libcurl >= 7.15.4, PKG_CHECK_MODULES([libtorrent], libtorrent >= 0.13.6, CXXFLAGS="$CXXFLAGS $libtorrent_CFLAGS"; - LIBS="$LIBS $libtorrent_LIBS") + LIBS="$LIBS $libtorrent_LIBS", + [AC_MSG_ERROR([libtorrent >= 0.13.6 not found. Install from https://github.com/rakshasa/libtorrent.git])]) AC_LANG_PUSH(C++) TORRENT_WITH_XMLRPC_C