Commit 32236dad authored by Yang Tse's avatar Yang Tse
Browse files

hmac.c related compilation adjustment

parent b30ce34d
Loading
Loading
Loading
Loading
+7 −3
Original line number Original line Diff line number Diff line
@@ -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.transfer o.url o.version o.strtoofft o.sslgen o.gtls \
	o.rawstr o.curl_addrinfo o.slist o.nonblock o.curl_rand \
	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_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:
# Compile options:
@@ -78,6 +78,9 @@ o.getinfo: c.getinfo
o.getpass:	c.getpass
o.getpass:	c.getpass
		gcc $(compileropts) -c -o getpass.o 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
o.hostip:	c.hostip
		gcc $(compileropts) -c -o hostip.o c.hostip
		gcc $(compileropts) -c -o hostip.o c.hostip


@@ -111,6 +114,9 @@ o.krb4: c.krb4
o.ldap:	c.ldap
o.ldap:	c.ldap
		gcc $(compileropts) -IOpenLDAP: -c -o ldap.o 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
o.memdebug:	c.memdebug
		gcc $(compileropts) -c -o memdebug.o c.memdebug
		gcc $(compileropts) -c -o memdebug.o c.memdebug


@@ -195,5 +201,3 @@ o.version: c.version
o.warnless:	c.warnless
o.warnless:	c.warnless
		gcc $(compileropts) -c -o warnless.o c.warnless
		gcc $(compileropts) -c -o warnless.o c.warnless
o.hmac:	c.hmac
		gcc $(compileropts) -c -o hmac.o c.hmac
+1 −1
Original line number Original line Diff line number Diff line
@@ -463,6 +463,7 @@ X_OBJS= \
	$(DIROBJ)\getinfo.obj \
	$(DIROBJ)\getinfo.obj \
	$(DIROBJ)\gtls.obj \
	$(DIROBJ)\gtls.obj \
	$(DIROBJ)\hash.obj \
	$(DIROBJ)\hash.obj \
	$(DIROBJ)\hmac.obj \
	$(DIROBJ)\hostares.obj \
	$(DIROBJ)\hostares.obj \
	$(DIROBJ)\hostasyn.obj \
	$(DIROBJ)\hostasyn.obj \
	$(DIROBJ)\hostip.obj \
	$(DIROBJ)\hostip.obj \
@@ -517,7 +518,6 @@ X_OBJS= \
	$(DIROBJ)\url.obj \
	$(DIROBJ)\url.obj \
	$(DIROBJ)\version.obj \
	$(DIROBJ)\version.obj \
	$(DIROBJ)\warnless.obj \
	$(DIROBJ)\warnless.obj \
	$(DIROBJ)\hmac.obj \
	$(RESOURCE)
	$(RESOURCE)


all : $(TARGET)
all : $(TARGET)
+1 −1
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@ OBJS = amigaos.c \
  strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.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		\
  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	\
  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)
all:	$(OBJS:.c=.o)
	ar cru libcurl.a $(OBJS:.c=.o)
	ar cru libcurl.a $(OBJS:.c=.o)
+1 −1
Original line number Original line Diff line number Diff line
@@ -33,7 +33,7 @@ SOURCE \
  strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.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        \
  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_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
USERINCLUDE   ../../../lib ../../../include/curl
#ifdef ENABLE_SSL
#ifdef ENABLE_SSL
+1 −0
Original line number Original line Diff line number Diff line
@@ -49,6 +49,7 @@ C_SRC += getenv.c
C_SRC += getinfo.c
C_SRC += getinfo.c
C_SRC += gtls.c
C_SRC += gtls.c
C_SRC += hash.c
C_SRC += hash.c
C_SRC += hmac.c
C_SRC += hostares.c
C_SRC += hostares.c
C_SRC += hostasyn.c
C_SRC += hostasyn.c
C_SRC += hostip.c
C_SRC += hostip.c