hmac.c related compilation adjustment
authorYang Tse <yangsita@gmail.com>
Tue, 20 Apr 2010 19:23:53 +0000 (21:23 +0200)
committerYang Tse <yangsita@gmail.com>
Tue, 20 Apr 2010 19:23:53 +0000 (21:23 +0200)
lib/Makefile.riscos
lib/Makefile.vc6
lib/makefile.amiga
packages/Symbian/group/libcurl.mmp
packages/TPF/curl.mak

index 3bfed32..90f73c9 100644 (file)
@@ -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
index 3773dcc..844cc9c 100644 (file)
@@ -463,6 +463,7 @@ X_OBJS= \
        $(DIROBJ)\getinfo.obj \\r
        $(DIROBJ)\gtls.obj \\r
        $(DIROBJ)\hash.obj \\r
+       $(DIROBJ)\hmac.obj \\r
        $(DIROBJ)\hostares.obj \\r
        $(DIROBJ)\hostasyn.obj \\r
        $(DIROBJ)\hostip.obj \\r
@@ -517,7 +518,6 @@ X_OBJS= \
        $(DIROBJ)\url.obj \\r
        $(DIROBJ)\version.obj \\r
        $(DIROBJ)\warnless.obj \\r
-       $(DIROBJ)\hmac.obj \\r
        $(RESOURCE)\r
 \r
 all : $(TARGET)\r
index 4d63e04..95a2f33 100644 (file)
@@ -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)
index 05bb9cf..79c088a 100644 (file)
@@ -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
index c1616dc..c1b40b3 100644 (file)
@@ -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