curl-users
Build Curl-7.8 on IRIX
Date: Fri, 06 Jul 2001 10:05:23 -0400
Hi There,
First, I would like to thank you for making the 'curl' program available as an open source.
I have recently downloaded the program, and I'm working to get it compiled on IRIX platform. While compiling the code the compiler generated the many warnings. I hope that you will find the attached messages usefull.
I wanted to point out a possible bug in the installation procedure. After unpacking the .tar.gz file, I run the ocnfigure
scripts, and tried to compile the code (as a regular user). I switched to 'root' to install the code into /usr/local/bin. However
when I switched to 'root' I could not run the install target, since the 'config.h' file was not up-to-date. (The root user does
not have write access to user home directories):
Makefile output:
cd . \
&& CONFIG_FILES= CONFIG_HEADERS=config.h \
/bin/sh ./config.status
./config.status[29]: conf38541.file: cannot create: Permission denied
config.status: creating config.h
config.status: config.h is unchanged
./config.status[812]: stamp-h1: cannot create: Permission denied
I examines the Makefilested the code, and found out that I can solve the problem by explictly 'touching' the following files:
touch config.h
touch stamp-h1
touch config.h.in
I will appreciate if you can fix this install issue for your next release.
Regards,
Yair Lenga
Compiler warnings:
ybdev3:/tmp_mnt/home4/yair/projects/curl-7.8> make
cd . \
&& CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating Makefile
make all-recursive
make[1]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8'
Making all in docs
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/docs'
Making all in examples
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/docs/examples'
done
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/docs/examples'
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/docs'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/docs'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/docs'
Making all in lib
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/lib'
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c file.c
mkdir .libs
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c file.c -DPIC -o file.o
cc-1183 cc: WARNING File = file.c, Line = 170
An unsigned integer is being compared to zero.
if (0 <= nread)
^
cc-1552 cc: WARNING File = file.c, Line = 149
The variable "now" is set but never used.
struct timeval now = start;
^
mv -f file.o .libs/file.lo
mv -f .libs/file.lo file.o
(cd . && ln -s file.o file.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c timeval.c
rm -f .libs/timeval.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c timeval.c -DPIC -o timeval.o
mv -f timeval.o .libs/timeval.lo
mv -f .libs/timeval.lo timeval.o
(cd . && ln -s timeval.o timeval.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c base64.c
rm -f .libs/base64.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c base64.c -DPIC -o base64.o
mv -f base64.o .libs/base64.lo
mv -f .libs/base64.lo base64.o
(cd . && ln -s base64.o base64.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c hostip.c
rm -f .libs/hostip.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c hostip.c -DPIC -o hostip.o
cc-1552 cc: WARNING File = hostip.c, Line = 123
The variable "ret" is set but never used.
int ret; /* this variable is unused on several platforms but used on some */
^
mv -f hostip.o .libs/hostip.lo
mv -f .libs/hostip.lo hostip.o
(cd . && ln -s hostip.o hostip.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c progress.c
rm -f .libs/progress.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c progress.c -DPIC -o progress.o
mv -f progress.o .libs/progress.lo
mv -f .libs/progress.lo progress.o
(cd . && ln -s progress.o progress.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c formdata.c
rm -f .libs/formdata.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c formdata.c -DPIC -o formdata.o
mv -f formdata.o .libs/formdata.lo
mv -f .libs/formdata.lo formdata.o
(cd . && ln -s formdata.o formdata.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c cookie.c
rm -f .libs/cookie.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c cookie.c -DPIC -o cookie.o
mv -f cookie.o .libs/cookie.lo
mv -f .libs/cookie.lo cookie.o
(cd . && ln -s cookie.o cookie.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c http.c
rm -f .libs/http.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c http.c -DPIC -o http.o
mv -f http.o .libs/http.lo
mv -f .libs/http.lo http.o
(cd . && ln -s http.o http.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c sendf.c
rm -f .libs/sendf.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c sendf.c -DPIC -o sendf.o
mv -f sendf.o .libs/sendf.lo
mv -f .libs/sendf.lo sendf.o
(cd . && ln -s sendf.o sendf.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c ftp.c
rm -f .libs/ftp.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c ftp.c -DPIC -o ftp.o
cc-1183 cc: WARNING File = ftp.c, Line = 678
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 700
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 755
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 774
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 789
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 804
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 841
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 854
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1164
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1187
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1552 cc: WARNING File = ftp.c, Line = 1209
The variable "ip_addr" is set but never used.
char *ip_addr;
^
cc-1183 cc: WARNING File = ftp.c, Line = 1433
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1464
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1534
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1615
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1637
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1658
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1715
An unsigned integer is being compared to zero.
if(nread < 0)
^
cc-1183 cc: WARNING File = ftp.c, Line = 1728
An unsigned integer is being compared to zero.
if(nread < 0)
^
mv -f ftp.o .libs/ftp.lo
mv -f .libs/ftp.lo ftp.o
(cd . && ln -s ftp.o ftp.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c url.c
rm -f .libs/url.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c url.c -DPIC -o url.o
cc-1185 cc: WARNING File = url.c, Line = 455
An enumerated type is mixed with another type.
data->timecondition = va_arg(param, long);
^
cc-1552 cc: WARNING File = url.c, Line = 1005
The variable "result" is set but never used.
CURLcode result;
^
cc-1552 cc: WARNING File = url.c, Line = 1335
The variable "buf" is set but never used.
char *buf;
^
mv -f url.o .libs/url.lo
mv -f .libs/url.lo url.o
(cd . && ln -s url.o url.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c dict.c
rm -f .libs/dict.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c dict.c -DPIC -o dict.o
cc-1552 cc: WARNING File = dict.c, Line = 90
The variable "nth" is set but never used.
int nth;
^
mv -f dict.o .libs/dict.lo
mv -f .libs/dict.lo dict.o
(cd . && ln -s dict.o dict.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c if2ip.c
rm -f .libs/if2ip.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c if2ip.c -DPIC -o if2ip.o
mv -f if2ip.o .libs/if2ip.lo
mv -f .libs/if2ip.lo if2ip.o
(cd . && ln -s if2ip.o if2ip.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c speedcheck.c
rm -f .libs/speedcheck.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c speedcheck.c -DPIC -o speedcheck.o
mv -f speedcheck.o .libs/speedcheck.lo
mv -f .libs/speedcheck.lo speedcheck.o
(cd . && ln -s speedcheck.o speedcheck.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getdate.c
rm -f .libs/getdate.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getdate.c -DPIC -o getdate.o
mv -f getdate.o .libs/getdate.lo
mv -f .libs/getdate.lo getdate.o
(cd . && ln -s getdate.o getdate.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c ldap.c
rm -f .libs/ldap.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c ldap.c -DPIC -o ldap.o
mv -f ldap.o .libs/ldap.lo
mv -f .libs/ldap.lo ldap.o
(cd . && ln -s ldap.o ldap.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c ssluse.c
rm -f .libs/ssluse.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c ssluse.c -DPIC -o ssluse.o
mv -f ssluse.o .libs/ssluse.lo
mv -f .libs/ssluse.lo ssluse.o
(cd . && ln -s ssluse.o ssluse.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c version.c
rm -f .libs/version.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c version.c -DPIC -o version.o
cc-1552 cc: WARNING File = version.c, Line = 35
The variable "ptr" is set but never used.
char *ptr;
^
mv -f version.o .libs/version.lo
mv -f .libs/version.lo version.o
(cd . && ln -s version.o version.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getenv.c
rm -f .libs/getenv.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getenv.c -DPIC -o getenv.o
mv -f getenv.o .libs/getenv.lo
mv -f .libs/getenv.lo getenv.o
(cd . && ln -s getenv.o getenv.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c escape.c
rm -f .libs/escape.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c escape.c -DPIC -o escape.o
mv -f escape.o .libs/escape.lo
mv -f .libs/escape.lo escape.o
(cd . && ln -s escape.o escape.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c mprintf.c
rm -f .libs/mprintf.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c mprintf.c -DPIC -o mprintf.o
cc-1552 cc: WARNING File = mprintf.c, Line = 1098
The variable "retcode" is set but never used.
int retcode;
^
cc-1552 cc: WARNING File = mprintf.c, Line = 1118
The variable "retcode" is set but never used.
int retcode;
^
cc-1174 cc: WARNING File = mprintf.c, Line = 95
The variable "rcsid" was declared but never referenced.
static const char rcsid[] = "@(#)$Id: mprintf.c,v 1.8 2001/01/05 12:19:42 bagder Exp $";
^
mv -f mprintf.o .libs/mprintf.lo
mv -f .libs/mprintf.lo mprintf.o
(cd . && ln -s mprintf.o mprintf.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c telnet.c
rm -f .libs/telnet.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c telnet.c -DPIC -o telnet.o
cc-1552 cc: WARNING File = telnet.c, Line = 811
The variable "subchar" is set but never used.
unsigned char subchar;
^
cc-1185 cc: WARNING File = telnet.c, Line = 1050
An enumerated type is mixed with another type.
code = check_telnet_options(conn);
^
mv -f telnet.o .libs/telnet.lo
mv -f .libs/telnet.lo telnet.o
(cd . && ln -s telnet.o telnet.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getpass.c
rm -f .libs/getpass.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getpass.c -DPIC -o getpass.o
mv -f getpass.o .libs/getpass.lo
mv -f .libs/getpass.lo getpass.o
(cd . && ln -s getpass.o getpass.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c netrc.c
rm -f .libs/netrc.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c netrc.c -DPIC -o netrc.o
mv -f netrc.o .libs/netrc.lo
mv -f .libs/netrc.lo netrc.o
(cd . && ln -s netrc.o netrc.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getinfo.c
rm -f .libs/getinfo.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c getinfo.c -DPIC -o getinfo.o
mv -f getinfo.o .libs/getinfo.lo
mv -f .libs/getinfo.lo getinfo.o
(cd . && ln -s getinfo.o getinfo.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c transfer.c
rm -f .libs/transfer.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c transfer.c -DPIC -o transfer.o
mv -f transfer.o .libs/transfer.lo
mv -f .libs/transfer.lo transfer.o
(cd . && ln -s transfer.o transfer.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c strequal.c
rm -f .libs/strequal.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c strequal.c -DPIC -o strequal.o
mv -f strequal.o .libs/strequal.lo
mv -f .libs/strequal.lo strequal.o
(cd . && ln -s strequal.o strequal.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c easy.c
rm -f .libs/easy.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c easy.c -DPIC -o easy.o
mv -f easy.o .libs/easy.lo
mv -f .libs/easy.lo easy.o
(cd . && ln -s easy.o easy.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c security.c
rm -f .libs/security.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c security.c -DPIC -o security.o
mv -f security.o .libs/security.lo
mv -f .libs/security.lo security.o
(cd . && ln -s security.o security.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c krb4.c
rm -f .libs/krb4.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c krb4.c -DPIC -o krb4.o
mv -f krb4.o .libs/krb4.lo
mv -f .libs/krb4.lo krb4.o
(cd . && ln -s krb4.o krb4.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c memdebug.c
rm -f .libs/memdebug.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c memdebug.c -DPIC -o memdebug.o
mv -f memdebug.o .libs/memdebug.lo
mv -f .libs/memdebug.lo memdebug.o
(cd . && ln -s memdebug.o memdebug.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c http_chunks.c
rm -f .libs/http_chunks.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c http_chunks.c -DPIC -o http_chunks.o
mv -f http_chunks.o .libs/http_chunks.lo
mv -f .libs/http_chunks.lo http_chunks.o
(cd . && ln -s http_chunks.o http_chunks.lo)
/bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c strtok.c
rm -f .libs/strtok.lo
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c strtok.c -DPIC -o strtok.o
mv -f strtok.o .libs/strtok.lo
mv -f .libs/strtok.lo strtok.o
(cd . && ln -s strtok.o strtok.lo)
/bin/sh ../libtool --mode=link cc -g -o libcurl.la -rpath /usr/local/lib -version-info 2:0:1 file.lo timeval.lo base64.lo hostip.lo progress.lo formdata.lo cookie.lo http.lo sendf.lo ftp.lo url.lo dict.lo if2ip.lo speedcheck.lo getdate.lo ldap.lo ssluse.lo version.lo getenv.lo escape.lo mprintf.lo telnet.lo getpass.lo netrc.lo getinfo.lo transfer.lo strequal.lo easy.lo security.lo krb4.lo memdebug.lo http_chunks.lo strtok.lo
rm -fr .libs/libcurl.la .libs/libcurl.* .libs/libcurl.*
/usr/bin/ld -n32 -shared file.o timeval.o base64.o hostip.o progress.o formdata.o cookie.o http.o sendf.o ftp.o url.o dict.o if2ip.o speedcheck.o getdate.o ldap.o ssluse.o version.o getenv.o escape.o mprintf.o telnet.o getpass.o netrc.o getinfo.o transfer.o strequal.o easy.o security.o krb4.o memdebug.o http_chunks.o strtok.o -lc -soname libcurl.so.2 `test -n "sgi2.0" && echo -set_version sgi2.0` -update_registry .libs/so_locations -o .libs/libcurl.so.2.0
(cd .libs && rm -f libcurl.so.2 && ln -s libcurl.so.2.0 libcurl.so.2)
(cd .libs && rm -f libcurl.so && ln -s libcurl.so.2.0 libcurl.so)
(cd .libs && rm -f libcurl.so && ln -s libcurl.so.2.0 libcurl.so)
ar cru .libs/libcurl.a file.o timeval.o base64.o hostip.o progress.o formdata.o cookie.o http.o sendf.o ftp.o url.o dict.o if2ip.o speedcheck.o getdate.o ldap.o ssluse.o version.o getenv.o escape.o mprintf.o telnet.o getpass.o netrc.o getinfo.o transfer.o strequal.o easy.o security.o krb4.o memdebug.o http_chunks.o strtok.o
: .libs/libcurl.a
creating libcurl.la
(cd .libs && rm -f libcurl.la && ln -s ../libcurl.la libcurl.la)
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/lib'
Making all in src
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/src'
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c main.c
cc-1185 cc: WARNING File = main.c, Line = 878
An enumerated type is mixed with another type.
return res;
^
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c hugehelp.c
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c urlglob.c
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../include -g -c writeout.c
/bin/sh ../libtool --mode=link cc -g -o curl main.o hugehelp.o urlglob.o writeout.o ../lib/libcurl.la
mkdir .libs
cc -g -o .libs/curl main.o hugehelp.o urlglob.o writeout.o ../lib/.libs/libcurl.so -Wl,-rpath -Wl,/usr/local/lib
creating curl
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/src'
Making all in include
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/include'
Making all in curl
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/include/curl'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/include/curl'
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/include'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/include'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/include'
Making all in tests
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/tests'
Making all in data
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/tests/data'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/tests/data'
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/tests'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/tests'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/tests'
Making all in packages
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages'
Making all in Win32
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Win32'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Win32'
Making all in Linux
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Linux'
Making all in RPM
make[4]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Linux/RPM'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Linux/RPM'
make[4]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Linux'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Linux'
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Linux'
Making all in Solaris
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Solaris'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages/Solaris'
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/packages'
Making all in perl
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/perl'
Making all in Curl_easy
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/perl/Curl_easy'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/perl/Curl_easy'
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/perl'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/perl'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/perl'
Making all in php
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/php'
Making all in examples
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/php/examples'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/php/examples'
make[3]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8/php'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/php'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8/php'
make[2]: Entering directory `/tmp_mnt/home4/yair/projects/curl-7.8'
make[2]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8'
make[1]: Leaving directory `/tmp_mnt/home4/yair/projects/curl-7.8'
Received on 2001-07-06