Skip to content

Commit

Permalink
Be explicit about why were not building rlm_rest
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Feb 17, 2013
1 parent 6b7e8f6 commit 2a9039c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/modules/rlm_rest/configure
Expand Up @@ -3258,7 +3258,9 @@ _ACEOF
unset _libcurl_with
if test "x$libcurl_cv_lib_curl_usable" != "xyes"; then
if test "x$libcurl_cv_lib_version_ok" != "xyes"; then
fail="$fail libcurl too old"
elif test "x$libcurl_cv_lib_curl_usable" != "xyes"; then
fail="$fail libcurl"
else
if test x$libcurl_protocol_HTTP != xyes; then
Expand Down
4 changes: 3 additions & 1 deletion src/modules/rlm_rest/configure.in
Expand Up @@ -20,7 +20,9 @@ if test x$with_[]modname != xno; then

LIBCURL_CHECK_CONFIG([], [7.19.1])

if test "x$libcurl_cv_lib_curl_usable" != "xyes"; then
if test "x$libcurl_cv_lib_version_ok" != "xyes"; then
fail="$fail libcurl too old"
elif test "x$libcurl_cv_lib_curl_usable" != "xyes"; then
fail="$fail libcurl"
else
if test x$libcurl_protocol_HTTP != xyes; then
Expand Down

0 comments on commit 2a9039c

Please sign in to comment.