mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Added new libcurl source files to Amiga, RiscOS and VC6 build files.
This commit is contained in:
parent
bc5677a47b
commit
7291f50e8d
3
CHANGES
3
CHANGES
@ -6,6 +6,9 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel Fandrich (21 Apr 2009)
|
||||||
|
- Added new libcurl source files to Amiga, RiscOS and VC6 build files.
|
||||||
|
|
||||||
Yang Tse (21 Apr 2009)
|
Yang Tse (21 Apr 2009)
|
||||||
- Moved potential inclusion of system's malloc.h and memory.h header files to
|
- Moved potential inclusion of system's malloc.h and memory.h header files to
|
||||||
setup_once.h. Inclusion of each header file is based on the definition of
|
setup_once.h. Inclusion of each header file is based on the definition of
|
||||||
|
@ -13,7 +13,7 @@ objs = o.base64 o.connect o.cookie o.dict \
|
|||||||
o.security o.select o.sendf o.speedcheck o.ssluse \
|
o.security o.select o.sendf o.speedcheck o.ssluse \
|
||||||
o.strequal o.strtok o.telnet o.timeval \
|
o.strequal o.strtok o.telnet o.timeval \
|
||||||
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.rawstr o.curl_addrinfo o.slist
|
||||||
|
|
||||||
# Compile options:
|
# Compile options:
|
||||||
linkopts = -o libcurl
|
linkopts = -o libcurl
|
||||||
@ -120,6 +120,9 @@ o.select: c.select
|
|||||||
o.sendf: c.sendf
|
o.sendf: c.sendf
|
||||||
gcc $(compileropts) -c -o sendf.o c.sendf
|
gcc $(compileropts) -c -o sendf.o c.sendf
|
||||||
|
|
||||||
|
o.slist: c.slist
|
||||||
|
gcc $(compileropts) -c -o slist.o c.slist
|
||||||
|
|
||||||
o.speedcheck: c.speedcheck
|
o.speedcheck: c.speedcheck
|
||||||
gcc $(compileropts) -c -o speedcheck.o c.speedcheck
|
gcc $(compileropts) -c -o speedcheck.o c.speedcheck
|
||||||
|
|
||||||
|
@ -489,7 +489,9 @@ X_OBJS= \
|
|||||||
$(DIROBJ)\select.obj \
|
$(DIROBJ)\select.obj \
|
||||||
$(DIROBJ)\sendf.obj \
|
$(DIROBJ)\sendf.obj \
|
||||||
$(DIROBJ)\share.obj \
|
$(DIROBJ)\share.obj \
|
||||||
|
$(DIROBJ)\slist.obj \
|
||||||
$(DIROBJ)\socks.obj \
|
$(DIROBJ)\socks.obj \
|
||||||
|
$(DIROBJ)\socks_gssapi.obj \
|
||||||
$(DIROBJ)\socks_sspi.obj \
|
$(DIROBJ)\socks_sspi.obj \
|
||||||
$(DIROBJ)\speedcheck.obj \
|
$(DIROBJ)\speedcheck.obj \
|
||||||
$(DIROBJ)\splay.obj \
|
$(DIROBJ)\splay.obj \
|
||||||
|
@ -16,8 +16,9 @@ OBJS = amigaos.c base64.c connect.c content_encoding.c cookie.c dict.c easy.c \
|
|||||||
http_negotiate.c http_ntlm.c if2ip.c inet_ntop.c inet_pton.c krb4.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 \
|
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 \
|
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 \
|
strequal.c strtok.c telnet.c timeval.c transfer.c url.c version.c \
|
||||||
sslgen.c gtls.c strerror.c rawstr.c curl_addrinfo.c
|
sslgen.c gtls.c strerror.c rawstr.c curl_addrinfo.c \
|
||||||
|
socks_gssapi.c socks_sspi.c curl_sspi.c slist.c
|
||||||
|
|
||||||
all: $(OBJS:.c=.o)
|
all: $(OBJS:.c=.o)
|
||||||
ar cru libcurl.a $(OBJS:.c=.o)
|
ar cru libcurl.a $(OBJS:.c=.o)
|
||||||
|
Loading…
Reference in New Issue
Block a user