Skip to content
Snippets Groups Projects
Commit e1c431ca authored by Fons Rademakers's avatar Fons Rademakers
Browse files

fix check for xmlrpc-c-config.

git-svn-id: http://root.cern.ch/svn/root/trunk@11048 27541ba8-7e3a-0410-8455-c3a389f83636
parent b920d8e3
No related branches found
No related tags found
No related merge requests found
......@@ -2463,9 +2463,14 @@ checking_msg "Clarens support"
if test ! "x$enable_clarens" = "xno" ; then
clarensinc=`xmlrpc-c-config curl-client --cflags 2> /dev/null`
clarenslibs=`xmlrpc-c-config curl-client --ldadd 2> /dev/null`
myxmlrpc=`which xmlrpc-c-config 2> /dev/null`
if test ! "x$myxmlrpc" = "x" ; then
clarensinc=`xmlrpc-c-config curl-client --cflags 2> /dev/null`
clarenslibs=`xmlrpc-c-config curl-client --ldadd 2> /dev/null`
else
clarensinc=""
clarenslibs=""
fi
if test "x$clarensinc" = "x" || test "x$clarenslibs" = "x"; then
enable_clarens="no"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment