From 357fdb60b603260e9fa09ed95ff9da3b6c43969c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 10 Dec 2004 21:58:11 +0000 Subject: [PATCH] Dan Fandrich: added some missing files. "I can't try them so they might still be broken, but at least they'll be less broken than they are now." --- lib/Makefile.riscos | 32 ++++++++++++++++++++++++-------- lib/makefile.amiga | 13 +++++++------ 2 files changed, 31 insertions(+), 14 deletions(-) diff --git a/lib/Makefile.riscos b/lib/Makefile.riscos index 9357a58d8..37b008f4b 100644 --- a/lib/Makefile.riscos +++ b/lib/Makefile.riscos @@ -5,11 +5,12 @@ # Project objects: objs = o.base64 o.connect o.cookie o.dict \ o.dllinit o.easy o.escape o.file \ - o.formdata o.ftp o.getdate o.getenv \ - o.getinfo o.getpass o.hostip o.http \ - o.http_chunks o.if2ip o.krb4 o.ldap \ - o.memdebug o.mprintf o.netrc o.progress \ - o.security o.sendf o.speedcheck o.ssluse \ + o.formdata o.ftp o.getenv \ + o.getinfo o.getpass o.hostip \ + o.hostip4 o.hostsyn o.http \ + o.http_chunks o.inet_ntop o.inet_pton o.if2ip o.krb4 o.ldap \ + o.memdebug o.mprintf o.netrc o.parsedate o.progress \ + o.security o.select o.sendf o.speedcheck o.ssluse \ o.strequal o.strtok o.telnet o.timeval \ o.transfer o.url o.version o.strtoofft @@ -52,9 +53,6 @@ o.formdata: c.formdata o.ftp: c.ftp gcc $(compileropts) -c -o ftp.o c.ftp -o.getdate: c.getdate - gcc $(compileropts) -c -o getdate.o c.getdate - o.getenv: c.getenv gcc $(compileropts) -c -o getenv.o c.getenv @@ -67,6 +65,12 @@ o.getpass: c.getpass o.hostip: c.hostip gcc $(compileropts) -c -o hostip.o c.hostip +o.hostip4: c.hostip4 + gcc $(compileropts) -c -o hostip4.o c.hostip4 + +o.hostsyn: c.hostsyn + gcc $(compileropts) -c -o hostsyn.o c.hostsyn + o.http: c.http gcc $(compileropts) -c -o http.o c.http @@ -76,6 +80,12 @@ o.http_chunks: c.http_chunks o.if2ip: c.if2ip gcc $(compileropts) -c -o if2ip.o c.if2ip +o.inet_ntop: c.inet_ntop + gcc $(compileropts) -c -o inet_ntop.o c.inet_ntop + +o.inet_pton: c.inet_pton + gcc $(compileropts) -c -o inet_pton.o c.inet_pton + o.krb4: c.krb4 gcc $(compileropts) -c -o krb4.o c.krb4 @@ -91,12 +101,18 @@ o.mprintf: c.mprintf o.netrc: c.netrc gcc $(compileropts) -c -o netrc.o c.netrc +o.parsedate: c.parsedate + gcc $(compileropts) -c -o parsedate.o c.parsedate + o.progress: c.progress gcc $(compileropts) -c -o progress.o c.progress o.security: c.security gcc $(compileropts) -c -o security.o c.security +o.select: c.select + gcc $(compileropts) -c -o select.o c.select + o.sendf: c.sendf gcc $(compileropts) -c -o sendf.o c.sendf diff --git a/lib/makefile.amiga b/lib/makefile.amiga index cb7822729..d8b2fd10a 100644 --- a/lib/makefile.amiga +++ b/lib/makefile.amiga @@ -12,12 +12,13 @@ CFLAGS = -I$(ATCPSDKI) -m68020-60 -noixemul -I. -I../include -W -Wall OBJS = \ amigaos.c base64.c connect.c content_encoding.c cookie.c dict.c \ - easy.c escape.c file.c formdata.c ftp.c getdate.c getenv.c \ - getinfo.c hash.c hostip.c http.c http_chunks.c http_digest.c \ - http_negotiate.c http_ntlm.c if2ip.c inet_pton.c krb4.c ldap.c \ - llist.c md5.c memdebug.c mprintf.c multi.c netrc.c progress.c \ - security.c sendf.c share.c speedcheck.c ssluse.c strequal.c \ - strtok.c telnet.c timeval.c transfer.c url.c version.c + easy.c escape.c file.c formdata.c ftp.c getenv.c \ + getinfo.c hash.c hostip.c hostip4.c hostsyn.c http.c http_chunks.c \ + http_digest.c http_negotiate.c http_ntlm.c if2ip.c inet_ntop.c \ + inet_pton.c krb4.c ldap.c \ + llist.c md5.c memdebug.c mprintf.c multi.c netrc.c parsedate.c \ + progress.c security.c select.c sendf.c share.c speedcheck.c \ + ssluse.c strequal.c strtok.c telnet.c timeval.c transfer.c url.c version.c all: $(OBJS:.c=.o) ar cru libcurl.a $(OBJS:.c=.o)