From e65c8f147fa4ab3f9a7f06b8c56187efd6fc8cac Mon Sep 17 00:00:00 2001 From: damitha Date: Tue, 7 Jun 2011 14:58:14 +0000 Subject: build support for libntlm git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1133034 13f79535-47bb-0310-9956-ffa450edef68 --- configure.ac | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 5324d72..a9b0a37 100644 --- a/configure.ac +++ b/configure.ac @@ -233,6 +233,27 @@ AC_ARG_ENABLE(heimdal, [ --enable-heimdal AC_MSG_RESULT(no) ) +AC_MSG_CHECKING(whether to build libntlm ntlm wrapper library) +AC_ARG_ENABLE(libntlm, [ --enable-libntlm + build libntlm ntlm library wrapper (default=no)], +[ case "${enableval}" in + no) + AC_MSG_RESULT(no) + NTLM_WRAPPER_DIR="default" + NTLM_SAMPLE_DIR="" + ;; + *) + AC_MSG_RESULT(yes) + NTLM_WRAPPER_DIR="libntlm" + NTLM_SAMPLE_DIR="ntlm" + CFLAGS="$CFLAGS -DAXIS2_LIBNTLM_ENABLED -DAXIS2_NTLM_ENABLED" + CPPFLAGS="$CPPFLAGS $NTLM_CFLAGS -DAXIS2_LIBNTLM_ENABLED -DAXIS2_NTLM_ENABLED" + LDFLAGS="$LDFLAGS $NTLM_LDFLAGS" + ;; + esac ], + AC_MSG_RESULT(no) +) + AC_MSG_CHECKING(whether to build tcp transport) @@ -528,6 +549,7 @@ AC_CONFIG_FILES([Makefile \ src/core/transport/http/sender/libcurl/Makefile \ src/core/transport/http/sender/ntlm/Makefile \ src/core/transport/http/sender/ntlm/heimdal/Makefile \ + src/core/transport/http/sender/ntlm/libntlm/Makefile \ src/core/transport/http/sender/ntlm/default/Makefile \ src/core/transport/http/sender/ntlm/test/Makefile \ src/core/transport/http/sender/ntlm/test/mock_server/Makefile \ -- cgit v1.1-32-gdbae