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
bff96239
Commit
bff96239
authored
17 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Andres Garcia made the examples build fine on Windows (mingw + msys) when
the lib was built staticly.
parent
2b15823d
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
+3
-0
3 additions, 0 deletions
CHANGES
configure.ac
+2
-0
2 additions, 0 deletions
configure.ac
docs/examples/Makefile.am
+7
-1
7 additions, 1 deletion
docs/examples/Makefile.am
with
12 additions
and
1 deletion
CHANGES
+
3
−
0
View file @
bff96239
...
...
@@ -10,6 +10,9 @@ Daniel S (17 Nov 2007)
- Michal Marek made the test suite remember what test servers that fail to
start so that subsequent tries are simply skipped.
- Andres Garcia made the examples build fine on Windows (mingw + msys) when
the lib was built staticly.
Daniel S (16 Nov 2007)
- Ates Goral identified a problem in http.c:add_buffer_send() when a debug
callback was used, as it could wrongly pass on a bad size for the outgoing
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
0
View file @
bff96239
...
...
@@ -174,6 +174,7 @@ case $host in
esac
AC_MSG_RESULT($mimpure)
AM_CONDITIONAL(MIMPURE, test x$mimpure = xyes)
AM_CONDITIONAL(STATICLIB, false)
AC_MSG_CHECKING([if we need BUILDING_LIBCURL])
case $host in
...
...
@@ -185,6 +186,7 @@ case $host in
then
AC_DEFINE(CURL_STATICLIB, 1, [when not building a shared library])
AC_MSG_RESULT(yes)
AM_CONDITIONAL(STATICLIB, true)
else
AC_MSG_RESULT(no)
fi
...
...
This diff is collapsed.
Click to expand it.
docs/examples/Makefile.am
+
7
−
1
View file @
bff96239
...
...
@@ -9,7 +9,13 @@ EXTRA_DIST = README Makefile.example makefile.dj $(COMPLICATED_EXAMPLES)
INCLUDES
=
-I
$(
top_srcdir
)
/include
LIBDIR
=
$(
top_builddir
)
/lib
CPPFLAGS
=
-DCURL_NO_OLDIES
if
STATICLIB
# we need this define when building with a static lib on Windows
STATICCPPFLAGS
=
-DCURL_STATICLIB
endif
CPPFLAGS
=
-DCURL_NO_OLDIES
$(
STATICCPPFLAGS
)
# Dependencies
LDADD
=
$(
LIBDIR
)
/libcurl.la
...
...
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