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
658ec970
Commit
658ec970
authored
12 years ago
by
Guenter Knauf
Browse files
Options
Downloads
Patches
Plain Diff
Fixed ares-enabled builds with static makefiles.
parent
88535d59
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
lib/Makefile.m32
+1
-1
1 addition, 1 deletion
lib/Makefile.m32
lib/config-win32.h
+5
-1
5 additions, 1 deletion
lib/config-win32.h
src/Makefile.m32
+1
-1
1 addition, 1 deletion
src/Makefile.m32
with
7 additions
and
3 deletions
lib/Makefile.m32
+
1
−
1
View file @
658ec970
...
...
@@ -153,7 +153,7 @@ CFLAGS += -DBUILDING_LIBCURL
ifdef
ARES
INCLUDES
+=
-I"
$(
LIBCARES_PATH
)
"
CFLAGS
+=
-DUSE_ARES
CFLAGS
+=
-DUSE_ARES
-DCARES_STATICLIB
DLL_LIBS
+=
-L"
$(
LIBCARES_PATH
)
" -lcares
libcurl_dll_DEPENDENCIES
=
$(
LIBCARES_PATH
)
/libcares.a
endif
...
...
This diff is collapsed.
Click to expand it.
lib/config-win32.h
+
5
−
1
View file @
658ec970
...
...
@@ -612,7 +612,11 @@
/* #define USE_ARES 1 */
/* Define to enable threaded asynchronous DNS lookups. */
#define USE_THREADS_WIN32 1
#if !defined(USE_ARES) && !defined(USE_THREADS_WIN32)
# define USE_THREADS_WIN32 1
#elif defined(USE_THREADS_WIN32) && USE_THREADS_WIN32 == 0
# undef USE_THREADS_WIN32
#endif
#if defined(USE_ARES) && defined(USE_THREADS_WIN32)
# error "Only one DNS lookup specialty may be defined at most"
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.m32
+
1
−
1
View file @
658ec970
...
...
@@ -177,7 +177,7 @@ ifdef ARES
ifndef
DYN
curl_DEPENDENCIES
+=
$(
LIBCARES_PATH
)
/libcares.a
endif
CFLAGS
+=
-DUSE_ARES
CFLAGS
+=
-DUSE_ARES
-DCARES_STATICLIB
curl_LDADD
+=
-L"
$(
LIBCARES_PATH
)
" -lcares
endif
ifdef
RTMP
...
...
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