mirror of
https://github.com/curl/curl.git
synced 2025-03-19 15:40:42 +08:00
hmac.c related compilation adjustment
This commit is contained in:
parent
b30ce34d84
commit
32236dad5e
@ -15,7 +15,7 @@ objs = o.base64 o.connect o.cookie o.dict \
|
||||
o.transfer o.url o.version o.strtoofft o.sslgen o.gtls \
|
||||
o.rawstr o.curl_addrinfo o.slist o.nonblock o.curl_rand \
|
||||
o.curl_memrchr o.imap o.pop3 o.smtp o.pingpong o.rtsp \
|
||||
o.curl_threads o.warnless o.hmac
|
||||
o.curl_threads o.warnless o.hmac o.md5
|
||||
|
||||
|
||||
# Compile options:
|
||||
@ -78,6 +78,9 @@ o.getinfo: c.getinfo
|
||||
o.getpass: c.getpass
|
||||
gcc $(compileropts) -c -o getpass.o c.getpass
|
||||
|
||||
o.hmac: c.hmac
|
||||
gcc $(compileropts) -c -o hmac.o c.hmac
|
||||
|
||||
o.hostip: c.hostip
|
||||
gcc $(compileropts) -c -o hostip.o c.hostip
|
||||
|
||||
@ -111,6 +114,9 @@ o.krb4: c.krb4
|
||||
o.ldap: c.ldap
|
||||
gcc $(compileropts) -IOpenLDAP: -c -o ldap.o c.ldap
|
||||
|
||||
o.md5: c.md5
|
||||
gcc $(compileropts) -c -o md5.o c.md5
|
||||
|
||||
o.memdebug: c.memdebug
|
||||
gcc $(compileropts) -c -o memdebug.o c.memdebug
|
||||
|
||||
@ -195,5 +201,3 @@ o.version: c.version
|
||||
o.warnless: c.warnless
|
||||
gcc $(compileropts) -c -o warnless.o c.warnless
|
||||
|
||||
o.hmac: c.hmac
|
||||
gcc $(compileropts) -c -o hmac.o c.hmac
|
||||
|
@ -463,6 +463,7 @@ X_OBJS= \
|
||||
$(DIROBJ)\getinfo.obj \
|
||||
$(DIROBJ)\gtls.obj \
|
||||
$(DIROBJ)\hash.obj \
|
||||
$(DIROBJ)\hmac.obj \
|
||||
$(DIROBJ)\hostares.obj \
|
||||
$(DIROBJ)\hostasyn.obj \
|
||||
$(DIROBJ)\hostip.obj \
|
||||
@ -517,7 +518,6 @@ X_OBJS= \
|
||||
$(DIROBJ)\url.obj \
|
||||
$(DIROBJ)\version.obj \
|
||||
$(DIROBJ)\warnless.obj \
|
||||
$(DIROBJ)\hmac.obj \
|
||||
$(RESOURCE)
|
||||
|
||||
all : $(TARGET)
|
||||
|
@ -23,7 +23,7 @@ OBJS = amigaos.c \
|
||||
strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c \
|
||||
socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c \
|
||||
curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c curl_threads.c \
|
||||
warnless.c
|
||||
warnless.c hmac.c
|
||||
|
||||
all: $(OBJS:.c=.o)
|
||||
ar cru libcurl.a $(OBJS:.c=.o)
|
||||
|
@ -33,7 +33,7 @@ SOURCE \
|
||||
strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c \
|
||||
socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c \
|
||||
curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c warnless.c \
|
||||
curl_threads.c
|
||||
curl_threads.c hmac.c
|
||||
|
||||
USERINCLUDE ../../../lib ../../../include/curl
|
||||
#ifdef ENABLE_SSL
|
||||
|
@ -49,6 +49,7 @@ C_SRC += getenv.c
|
||||
C_SRC += getinfo.c
|
||||
C_SRC += gtls.c
|
||||
C_SRC += hash.c
|
||||
C_SRC += hmac.c
|
||||
C_SRC += hostares.c
|
||||
C_SRC += hostasyn.c
|
||||
C_SRC += hostip.c
|
||||
|
Loading…
x
Reference in New Issue
Block a user