diff options
author | monnerat <pm@datasphere.ch> | 2010-04-20 19:22:03 +0200 |
---|---|---|
committer | monnerat <pm@datasphere.ch> | 2010-04-20 19:23:48 +0200 |
commit | b30ce34d8434e2101087f5929aa8a24fd3efe609 (patch) | |
tree | fe848cdb53e092584845316ceda3e638d2b99866 | |
parent | 2164b6b463447be71ba0f0f3a7c432a963f745f9 (diff) |
Add compilation directives for hmac in Watcom,riscos and vc6 platform-specific makefiles.
-rw-r--r-- | lib/Makefile.Watcom | 2 | ||||
-rw-r--r-- | lib/Makefile.riscos | 5 | ||||
-rw-r--r-- | lib/Makefile.vc6 | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/lib/Makefile.Watcom b/lib/Makefile.Watcom index d881c8ca6..afa6da3ef 100644 --- a/lib/Makefile.Watcom +++ b/lib/Makefile.Watcom @@ -52,7 +52,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.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 OBJS = $(CSOURCES:.c=.obj) OBJS = $OBJ_DIR\$(OBJS: = $OBJ_DIR\) diff --git a/lib/Makefile.riscos b/lib/Makefile.riscos index f7b071f34..3bfed32db 100644 --- a/lib/Makefile.riscos +++ b/lib/Makefile.riscos @@ -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.curl_threads o.warnless o.hmac # Compile options: @@ -194,3 +194,6 @@ 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 diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index d1a9f8d49..3773dcc8a 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -517,6 +517,7 @@ X_OBJS= \ $(DIROBJ)\url.obj \
$(DIROBJ)\version.obj \
$(DIROBJ)\warnless.obj \
+ $(DIROBJ)\hmac.obj \
$(RESOURCE)
all : $(TARGET)
|