Commit 6028fdb3 authored by Yang Tse's avatar Yang Tse
Browse files

build: add missing new files to non-configure target build files

parent 45456135
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ objs = o.base64 o.connect o.cookie o.dict \
	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.md5 o.curl_rtmp \
	o.openldap o.polarssl
	o.openldap o.polarssl o.md4 o.curl_gethostname


# Compile options:
@@ -39,6 +39,9 @@ o.cookie: c.cookie
o.curl_addrinfo:	c.curl_addrinfo
		gcc $(compileropts) -c -o curl_addrinfo.o c.curl_addrinfo

o.curl_gethostname:	c.curl_gethostname
		gcc $(compileropts) -c -o curl_gethostname.o c.curl_gethostname

o.curl_memrchr:	c.curl_memrchr
		gcc $(compileropts) -c -o curl_memrchr.o c.curl_memrchr

@@ -117,6 +120,9 @@ o.krb4: c.krb4
o.ldap:	c.ldap
		gcc $(compileropts) -IOpenLDAP: -c -o ldap.o c.ldap

o.md4:		c.md4
		gcc $(compileropts) -c -o md4.o c.md4

o.md5:		c.md5
		gcc $(compileropts) -c -o md5.o c.md5

+2 −0
Original line number Diff line number Diff line
@@ -454,6 +454,7 @@ X_OBJS= \
	$(DIROBJ)\cookie.obj \
	$(DIROBJ)\curl_addrinfo.obj \
	$(DIROBJ)\curl_fnmatch.obj \
	$(DIROBJ)\curl_gethostname.obj \
	$(DIROBJ)\curl_memrchr.obj \
	$(DIROBJ)\curl_rand.obj \
	$(DIROBJ)\curl_rtmp.obj \
@@ -490,6 +491,7 @@ X_OBJS= \
	$(DIROBJ)\inet_pton.obj \
	$(DIROBJ)\ldap.obj \
	$(DIROBJ)\llist.obj \
	$(DIROBJ)\md4.obj \
	$(DIROBJ)\md5.obj \
	$(DIROBJ)\memdebug.obj \
	$(DIROBJ)\mprintf.obj \
+2 −1
Original line number Diff line number Diff line
@@ -34,7 +34,8 @@ 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 hmac.c polarssl.c curl_rtmp.c openldap.c
  curl_threads.c hmac.c polarssl.c curl_rtmp.c openldap.c md4.c     \
  curl_gethostname.c

USERINCLUDE   ../../../lib ../../../include/curl
#ifdef ENABLE_SSL
+2 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ C_SRC += content_encoding.c
C_SRC += cookie.c
C_SRC += curl_addrinfo.c
C_SRC += curl_fnmatch.c
C_SRC += curl_gethostname.c
C_SRC += curl_memrchr.c
C_SRC += curl_rand.c
C_SRC += curl_rtmp.c
@@ -74,6 +75,7 @@ C_SRC += krb4.c
C_SRC += krb5.c
C_SRC += ldap.c
C_SRC += llist.c
C_SRC += md4.c
C_SRC += md5.c
C_SRC += memdebug.c
C_SRC += mprintf.c