diff options
author | Jakub Zakrzewski <jzakrzewski@e2ebridge.com> | 2014-09-25 15:03:00 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-10-09 13:48:31 +0200 |
commit | 558814e16d84aa202c5ccc0c8108a9d728e77a58 (patch) | |
tree | e80f6381797b55655e51e0a57515bdade8fd3cb9 /Makefile.am | |
parent | a3154295c5b0b538d7883d30e6f1325b69bb50fd (diff) | |
download | curl-558814e16d84aa202c5ccc0c8108a9d728e77a58.tar.gz |
Cmake: Build with GSSAPI (MIT or Heimdal)
It tries hard to recognise SDK's on different platforms. On windows MIT
Kerberos installs SDK with other things and puts path into registry.
Heimdal have separate zip archive. On linux pkg-config is tried, then
krb5-config script and finally old-style libs and headers detection.
Command line args:
* CMAKE_USE_GSSAPI - enables GSSAPI detection
* GSS_ROOT_DIR - if set, should point to the root of GSSAPI installation
(the one with include and lib directories)
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index e66b2361d..e9b0b9072 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,8 +26,9 @@ ACLOCAL_AMFLAGS = -I m4 CMAKE_DIST = CMakeLists.txt CMake/CMakeConfigurableFile.in \ CMake/CurlCheckCSourceCompiles.cmake CMake/CurlCheckCSourceRuns.cmake \ -CMake/CurlTests.c CMake/OtherTests.cmake CMake/Platforms/WindowsCache.cmake \ -CMake/Utilities.cmake include/curl/curlbuild.h.cmake +CMake/CurlTests.c CMake/FindGSS.cmake CMake/OtherTests.cmake \ +CMake/Platforms/WindowsCache.cmake CMake/Utilities.cmake \ +include/curl/curlbuild.h.cmake VC6_LIBTMPL = projects/Windows/VC6/lib/libcurl.tmpl VC6_LIBDSP = projects/Windows/VC6/lib/libcurl.dsp |