Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
40e1a016
Commit
40e1a016
authored
17 years ago
by
Michal Marek
Browse files
Options
Downloads
Patches
Plain Diff
Fix the gssapi configure check to detect newer MIT Kerberos (patch by
Michael Calmer)
parent
1cf55949
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+4
-0
4 additions, 0 deletions
CHANGES
RELEASE-NOTES
+2
-1
2 additions, 1 deletion
RELEASE-NOTES
configure.ac
+6
-6
6 additions, 6 deletions
configure.ac
with
12 additions
and
7 deletions
CHANGES
+
4
−
0
View file @
40e1a016
...
...
@@ -6,6 +6,10 @@
Changelog
Michal Marek (6 Mar 2008)
- Fix the gssapi configure check to detect newer MIT Kerberos (patch by
Michael Calmer)
Yang Tse (6 Mar 2008)
- Fix regression on Curl_socket_ready() and Curl_poll() so that these will
again fail on select/poll errors different than EINTR.
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
2
−
1
View file @
40e1a016
...
...
@@ -35,6 +35,7 @@ This release includes the following bugfixes:
o GnuTLS-built libcurl can now be forced to prefer SSLv3
o crash when doing Negotiate again on a re-used connection
o select/poll regression
o better MIT kerberos configure check
This release includes the following known bugs:
...
...
@@ -54,6 +55,6 @@ advice from friends like these:
Michal Marek, Dmitry Kurochkin, Niklas Angebrand, Günter Knauf, Yang Tse,
Dan Fandrich, Mike Hommey, Pooyan McSporran, Jerome Muffat-Meridol,
Kaspar Brand, Gautam Kachroo, Zmey Petroff, Georg Lippitsch, Sam Listopad,
Anatoli Tubman, Mike Protts
Anatoli Tubman, Mike Protts
, Michael Calmer
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
configure.ac
+
6
−
6
View file @
40e1a016
...
...
@@ -977,18 +977,18 @@ if test x"$want_gss" = xyes; then
gnu_gss=yes
],
[
dnl not found, check
Heimdal
AC_CHECK_HEADER(gssapi.h,
dnl not found, check
MIT
AC_CHECK_HEADER(gssapi
/gssapi
.h,
[
dnl found in the given dirs
AC_DEFINE(HAVE_GSS
HEIMDAL
, 1, [if you have the
Heimdal
gssapi libraries])
AC_DEFINE(HAVE_GSS
MIT
, 1, [if you have the
MIT
gssapi libraries])
],
[
dnl not found, check
in gssapi/ subdir
AC_CHECK_HEADER(gssapi
/gssapi
.h,
dnl not found, check
for Heimdal
AC_CHECK_HEADER(gssapi.h,
[
dnl found
AC_DEFINE(HAVE_GSS
MIT
, 1, [if you have the
MIT
gssapi libraries])
AC_DEFINE(HAVE_GSS
HEIMDAL
, 1, [if you have the
Heimdal
gssapi libraries])
],
[
dnl no header found, disabling GSS
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment