X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=988307bfdb4890d2054013b30db3eea7c8b3b33e;hb=bc08acb17caeafcc3cf83b97d5d2cb6b0fd41cdc;hp=f718cc24938fdbda663e53bedfdc0d2a86ddd090;hpb=93a5d3ec2ba085e5a6a4fde151ef43af67d8b823;p=shibboleth%2Fcpp-xmltooling.git diff --git a/configure.ac b/configure.ac index f718cc2..988307b 100644 --- a/configure.ac +++ b/configure.ac @@ -90,6 +90,11 @@ AC_LANG([C++]) AC_CXX_NAMESPACES AC_CXX_REQUIRE_STL +# Boost +BOOST_REQUIRE +BOOST_STRING_ALGO +BOOST_LAMBDA + # are covariant methods allowed? AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], @@ -155,13 +160,16 @@ else fi # Xerces settings -AC_ARG_WITH(xerces, - AS_HELP_STRING([--with-xerces=PATH], [where xerces-c is installed]), - [if test x_$with_xerces != x_/usr; then - LDFLAGS="-L${with_xerces}/lib $LDFLAGS" - CPPFLAGS="-I${with_xerces}/include $CPPFLAGS" - fi]) -LIBS="-lxerces-c $LIBS" +AC_ARG_WITH(xerces, + AS_HELP_STRING([--with-xerces=PATH],[where xerces-c is installed]),, + [with_xerces=/usr]) +if test x_$with_xerces != x_/usr; then + CPPFLAGS="-I${with_xerces}/include $CPPFLAGS" + LIBS="-L${with_xerces}/lib -lxerces-c $LIBS" +else + LIBS="-lxerces-c $LIBS" +fi + AC_CHECK_HEADER([xercesc/dom/DOM.hpp],,AC_MSG_ERROR([unable to find xerces header files])) AC_MSG_CHECKING([Xerces version]) AC_PREPROC_IFELSE( @@ -276,9 +284,10 @@ if test x_$with_xmlsec != x_no; then if test x_$with_xmlsec != x_/usr; then CPPFLAGS="-I${with_xmlsec}/include $CPPFLAGS" - XMLSEC_LIBS="$XMLSEC_LIBS -L${with_xmlsec}/lib" - fi - XMLSEC_LIBS="$XMLSEC_LIBS -lxml-security-c" + XMLSEC_LIBS="-L${with_xmlsec}/lib -lxml-security-c $XMLSEC_LIBS" + else + XMLSEC_LIBS="-lxml-security-c $XMLSEC_LIBS" + fi # save and append master libs save_LIBS="$LIBS" @@ -362,7 +371,7 @@ int i = 0; LIBS="$XMLSEC_LIBS $LIBS" AC_CHECK_HEADER([curl/curl.h],,AC_MSG_ERROR([unable to find libcurl header files])) - AC_CHECK_LIB([curl],[curl_global_init],,AC_MSG_ERROR([unable to link with libcurl])) + AC_CHECK_LIB([curl],[curl_global_init],[],AC_MSG_ERROR([unable to link with libcurl])) AC_MSG_CHECKING([for CURLOPT_SSL_CTX_FUNCTION in curl.h]) AC_EGREP_HEADER([CURLOPT_SSL_CTX_FUNCTION], [curl/curl.h], [AC_MSG_RESULT(yes)],