mirror of
https://github.com/curl/curl.git
synced 2026-07-24 02:27:20 +03:00
Makefile.example: make default options more likely to work
- replace default libpaths with more common ones. - drop Solaris network libs. Closes #19161
This commit is contained in:
parent
97dd1da8d0
commit
a041bf6ca2
1 changed files with 2 additions and 2 deletions
|
|
@ -36,12 +36,12 @@ CFLAGS ?= -g
|
|||
# This should point to a directory that holds libcurl, if it is not in the
|
||||
# system's standard lib dir
|
||||
# We also set a -L to include the directory where we have the OpenSSL libraries
|
||||
LDFLAGS ?= -L/home/dast/lib -L/usr/local/ssl/lib
|
||||
LDFLAGS ?= -L/usr/lib -L/usr/local/lib
|
||||
|
||||
# We need -lsocket and -lnsl when on Solaris
|
||||
# We need -lssl and -lcrypto when using libcurl with TLS support
|
||||
# We need -lpthread for the pthread example
|
||||
LIBS ?= -lsocket -lnsl -lssl -lcrypto
|
||||
LIBS ?= -lssl -lcrypto
|
||||
# We need -lcurl for the curl stuff
|
||||
LIBS := -lcurl $(LIBS)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue