]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
build: add missing new files to non-configure target build files
authorYang Tse <yangsita@gmail.com>
Tue, 3 Aug 2010 11:09:39 +0000 (13:09 +0200)
committerYang Tse <yangsita@gmail.com>
Tue, 3 Aug 2010 11:09:39 +0000 (13:09 +0200)
lib/Makefile.riscos
lib/Makefile.vc6
packages/Symbian/group/libcurl.mmp
packages/TPF/curl.mak

index 8c5d8525110c508bcabc8d809804561f71042c06..375405ee3fad309168364e22fcc48cf88b5044ad 100644 (file)
@@ -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
 
index ed1e241b25978f52d0f7df87e93b7394dd1f5779..b4a10f325c5c0fbb131d8086f8048b1fea7ebbdf 100644 (file)
@@ -454,6 +454,7 @@ X_OBJS= \
        $(DIROBJ)\cookie.obj \\r
        $(DIROBJ)\curl_addrinfo.obj \\r
        $(DIROBJ)\curl_fnmatch.obj \\r
+       $(DIROBJ)\curl_gethostname.obj \\r
        $(DIROBJ)\curl_memrchr.obj \\r
        $(DIROBJ)\curl_rand.obj \\r
        $(DIROBJ)\curl_rtmp.obj \\r
@@ -490,6 +491,7 @@ X_OBJS= \
        $(DIROBJ)\inet_pton.obj \\r
        $(DIROBJ)\ldap.obj \\r
        $(DIROBJ)\llist.obj \\r
+       $(DIROBJ)\md4.obj \\r
        $(DIROBJ)\md5.obj \\r
        $(DIROBJ)\memdebug.obj \\r
        $(DIROBJ)\mprintf.obj \\r
index 029a2e0137da2687474e3345022d2b553f31947b..417f982390cb5bf0fdb210b53c67e0f9a94c8c10 100644 (file)
@@ -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
index 178ff439d512eb3f79f2c98b3a8559529f880c48..26641577165aa584f93ba74657051ea7c0e26f15 100644 (file)
@@ -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