From 9ca7aba27a96c61371da08325856d88ac9783db1 Mon Sep 17 00:00:00 2001 From: Luis Pabon Date: Fri, 28 Mar 2014 15:41:31 -0400 Subject: build: NSR requirement on curl * Added a libcurl requirement to the configure script * Fixed the Makefile to use the built libgfapi version, not an installed one. * Tested recon.t and it worked. Change-Id: Ie2fc07da33e4bdb8a8aa911ac8225b82025775a7 Signed-off-by: Luis Pabon --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a365a5354..d1302ba58 100644 --- a/configure.ac +++ b/configure.ac @@ -276,6 +276,7 @@ fi AC_CHECK_TOOL([LD],[ld]) AC_CHECK_LIB([crypto], [MD5], , AC_MSG_ERROR([OpenSSL crypto library is required to build glusterfs])) +AC_CHECK_LIB([curl], curl_version, ,AC_MSG_ERROR([libcurl library is required to build glusterfs])) AC_CHECK_LIB([pthread], [pthread_mutex_init], , AC_MSG_ERROR([Posix threads library is required to build glusterfs])) -- cgit