diff options
author | Yang Tse <yangsita@gmail.com> | 2008-11-11 01:12:17 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-11-11 01:12:17 +0000 |
commit | 707828b71af1d155206cf7039569e9cffb110649 (patch) | |
tree | 093d31316eaab4658215ef7a5f9c3d9404ee9cf5 /lib/Makefile.riscos | |
parent | 8f440371334032805ab5521e60a77e0d840630f7 (diff) | |
download | curl-707828b71af1d155206cf7039569e9cffb110649.tar.gz |
Related with bug #2230535 (http://curl.haxx.se/bug/view.cgi?id=2230535)
Daniel Fandrich noticed that curl_addrinfo was also missing in the build
process of other four non-configure platforms. Added now.
Diffstat (limited to 'lib/Makefile.riscos')
-rw-r--r-- | lib/Makefile.riscos | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Makefile.riscos b/lib/Makefile.riscos index 0304b4558..04ae5d686 100644 --- a/lib/Makefile.riscos +++ b/lib/Makefile.riscos @@ -7,13 +7,13 @@ objs = o.base64 o.connect o.cookie o.dict \ o.dllinit o.easy o.escape o.file \ o.formdata o.ftp o.getenv \ o.getinfo o.getpass o.hostip \ - o.hostip4 o.hostsyn o.http \ + 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 o.sslgen o.gtls \ - o.rawstr + o.rawstr o.curl_addrinfo # Compile options: linkopts = -o libcurl @@ -33,6 +33,9 @@ o.connect: c.connect o.cookie: c.cookie gcc $(compileropts) -c -o cookie.o c.cookie +o.curl_addrinfo: c.curl_addrinfo + gcc $(compileropts) -c -o curl_addrinfo.o c.curl_addrinfo + o.dict: c.dict gcc $(compileropts) -c -o dict.o c.dict |