<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/curl.git/CMake/FindGSS.cmake, branch bagder/https-cookie-secure</title>
<subtitle>github.com: bagder/curl.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/'/>
<entry>
<title>CMake: fix MIT/Heimdal Kerberos detection</title>
<updated>2018-11-29T07:05:21+00:00</updated>
<author>
<name>Konstantin Kushnir</name>
<email>chpock@gmail.com</email>
</author>
<published>2018-11-27T15:12:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=a39d8f7056c9ad4e75c82fa0939a9ae1e246d055'/>
<id>a39d8f7056c9ad4e75c82fa0939a9ae1e246d055</id>
<content type='text'>
- fix syntax error in FindGSS.cmake
- correct krb5 include directory. FindGSS exports
  "GSS_INCLUDE_DIR" variable.

Closes https://github.com/curl/curl/pull/3316
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- fix syntax error in FindGSS.cmake
- correct krb5 include directory. FindGSS exports
  "GSS_INCLUDE_DIR" variable.

Closes https://github.com/curl/curl/pull/3316
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Update scripts to use consistent style</title>
<updated>2018-07-17T09:54:07+00:00</updated>
<author>
<name>Ruslan Baratov</name>
<email>ruslan_baratov@yahoo.com</email>
</author>
<published>2018-07-17T06:36:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=d1207c07d0cc3c7870e50865052bb59850917ec9'/>
<id>d1207c07d0cc3c7870e50865052bb59850917ec9</id>
<content type='text'>
Closes #2727
Reviewed-by: Sergei Nikulov
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #2727
Reviewed-by: Sergei Nikulov
</pre>
</div>
</content>
</entry>
<entry>
<title>spelling fixes</title>
<updated>2017-03-26T21:56:23+00:00</updated>
<author>
<name>klemens</name>
<email>ka7@github.com</email>
</author>
<published>2017-03-26T15:02:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=f7df67cff0a756eefc8daea36e6468df694a43d0'/>
<id>f7df67cff0a756eefc8daea36e6468df694a43d0</id>
<content type='text'>
Closes #1356
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1356
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: fix winsock2 detection on windows</title>
<updated>2015-02-19T19:11:04+00:00</updated>
<author>
<name>Sergei Nikulov</name>
<email>sergey.nikulov@gmail.com</email>
</author>
<published>2014-12-23T21:05:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=ec80b1f414ef65f8a336be2e3270dcc35593f1b4'/>
<id>ec80b1f414ef65f8a336be2e3270dcc35593f1b4</id>
<content type='text'>
Set CMAKE_REQUIRED_DEFINITIONS to include definitions needed to get
the winsock2 API from windows.h.  Simplify the order of checks to
avoid extra conditions.

Use check_include_file instead of check_include_file_concat to look
for OpenSSL headers.  They do not need to participate in a sequence
of dependent system headers.  Also they may cause winsock.h to be
included before ws2tcpip.h, causing the latter to not be detected
in the sequence.

Reviewed-by: Brad King &lt;brad.king@kitware.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Set CMAKE_REQUIRED_DEFINITIONS to include definitions needed to get
the winsock2 API from windows.h.  Simplify the order of checks to
avoid extra conditions.

Use check_include_file instead of check_include_file_concat to look
for OpenSSL headers.  They do not need to participate in a sequence
of dependent system headers.  Also they may cause winsock.h to be
included before ws2tcpip.h, causing the latter to not be detected
in the sequence.

Reviewed-by: Brad King &lt;brad.king@kitware.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Cmake: Build with GSSAPI (MIT or Heimdal)</title>
<updated>2014-10-09T11:48:31+00:00</updated>
<author>
<name>Jakub Zakrzewski</name>
<email>jzakrzewski@e2ebridge.com</email>
</author>
<published>2014-09-25T13:03:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/curl.git/commit/?id=558814e16d84aa202c5ccc0c8108a9d728e77a58'/>
<id>558814e16d84aa202c5ccc0c8108a9d728e77a58</id>
<content type='text'>
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)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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)
</pre>
</div>
</content>
</entry>
</feed>
