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
a81a16be
Commit
a81a16be
authored
16 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Added README.NSS to describe the current NSS situation.
parent
d92945bb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/Makefile.am
+2
-1
2 additions, 1 deletion
lib/Makefile.am
lib/README.NSS
+33
-0
33 additions, 0 deletions
lib/README.NSS
with
35 additions
and
1 deletion
lib/Makefile.am
+
2
−
1
View file @
a81a16be
...
...
@@ -26,7 +26,8 @@ DSP = curllib.dsp
VCPROJ
=
curllib.vcproj
DOCS
=
README.encoding README.memoryleak README.ares README.curlx
\
README.hostip README.multi_socket README.httpauth README.pipelining
README.hostip README.multi_socket README.httpauth README.pipelining
\
README.NSS
EXTRA_DIST
=
Makefile.b32 Makefile.m32 Makefile.vc6 Makefile.riscos
\
$(
DSP
)
curllib.dsw config-win32.h config-win32ce.h config-riscos.h
\
...
...
This diff is collapsed.
Click to expand it.
lib/README.NSS
0 → 100644
+
33
−
0
View file @
a81a16be
libcurl with NSS
================
Author: Daniel Stenberg
Date: June 24, 2008
NSS home => http://www.mozilla.org/projects/security/pki/nss/
libcurl can be built to use the NSS libraries for SSL/TLS. Invoke configure
--without-ssl --with-nss.
The source code in lib/nss.c currently cause a compiler warning due to the
lack of a prototype. The prototype is provided by the public header provided
by NSS called "base64.h". But since we use a private header in libcurl named
identically, we cannot include the NSS one.
This problem persists because:
* NSS doesn't use a properly established separate subdir for their include
files. Instead different distros have put them in /usr/include/nss and
/usr/include/nss3 etc.
* The pkg-config output for NSS provides a full -I path to the nss include dir,
so we cannot #include <nss/base64.h> or <nss3/base64.h>. This too may be due
to how distros do it.
* I tried getting the (all new in June 2008) NSS 3.12 tarball to check how it
behaves out-of-box but this wouldn't even build - complaining on missing
files that aren't included in the tarball. The tarball doesn't even include
build instuctions but you must hunt them down on their web site.
Due to these design problems we may of course get further similar problems in
the future, but I hope we can work them out somehow along the way.
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