cURL / Mailing Lists / curl-library / Single Mail

curl-library

Re: Curl 7.10.4-pre3 on HP-UX using GCC v3.2

From: Rick Jones <rick_jones2_at_hp.com>
Date: Tue, 11 Mar 2003 17:09:41 -0800

here then is the typescript of a configure;make with the hacked
configure script to get past the select et al problems

I'm not sure yet what is up with the sendfile/sendpath warnings, but
since libcurl does not seem to try to use sendfile/sendpath (an
enhancement opportunity - feel free to leverage the code from netperf :)
I suspect it isn't a problem.

There are a bunch of warnings in ftp.c like this:

cc: "ftp.c", line 148: warning 604: Pointers are not
assignment-compatible.^M
cc: "ftp.c", line 148: warning 563: Argument #3 is not the correct
type.^M
cc: "ftp.c", line 149: warning 604: Pointers are not
assignment-compatible.^M

That appear to stem from arbitrary use of stuff like socklen_t. On
HP-UX, the socket calls take socklen_t only if _XOPEN_SOURCE_EXTENDED is
defined.

There are some others in url.c with parm5 of calls to Curl_write and
Curl_read that are not (?) XOPEN things:

cc: "url.c", line 1441: warning 604: Pointers are not
assignment-compatible.^M
cc: "url.c", line 1441: warning 563: Argument #5 is not the correct
type.^M
cc: "url.c", line 1448: warning 604: Pointers are not
assignment-compatible.^M
cc: "url.c", line 1448: warning 563: Argument #5 is not the correct
type.^M
cc: "url.c", line 1485: warning 604: Pointers are not
assignment-compatible.^M
cc: "url.c", line 1485: warning 563: Argument #5 is not the correct
type.^M
cc: "url.c", line 1491: warning 604: Pointers are not
assignment-compatible.^M
cc: "url.c", line 1491: warning 563: Argument #5 is not the correct
type.^M
cc: "url.c", line 1575: warning 604: Pointers are not
assignment-compatible.^M
cc: "url.c", line 1575: warning 563: Argument #5 is not the correct
type.^M
cc: "url.c", line 1581: warning 604: Pointers are not
assignment-compatible.^M
cc: "url.c", line 1581: warning 563: Argument #5 is not the correct
type.^M

there is a macro redclaration issue in arpa_telnet.h

cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c telnet.c
-Wp,-M.deps/tel
net.TPlo +Z -DPIC -o .libs/telnet.lo^M
cpp: "arpa_telnet.h", line 67: warning 2001: Redefinition of macro SE.^M

There is an SE define in /usr/include/pa/cpu.h which I suppose gets
included by something included in telnet.c - via <machine/cpu.h>:

$ find /usr/include -exec grep -l machine/cpu.h {} \;
/usr/include/sys/mbuf.h
/usr/include/pa/pdc_rqsts.h
/usr/include/pa/sync/spinlock.h
/usr/include/pa/vmparam.h

but I've not tracked it further than that. _Probably_ not a problem,
but pre-pending something to those defines for telnet might not be a bad
idea. More interesting perhaps is:

cc: "telnet.c", line 451: warning 562: Redeclaration of
"set_local_option" with a different storage class specifier:
"set_local_option" will have internal linkage.^M

At line 451 it reads:

void set_local_option(struct connectdata *conn, int option, int
newstate)
{
  struct TELNET *tn = (struct TELNET *)conn->proto.telnet;

however, up higher in the file the forward declaration is:

static void set_local_option(struct connectdata *, int cmd, int option);

so either static needs to be added to line 451, or removed from the
forward decl.

Some additional _XOPEN_SOURCE_EXTENDED warnings from connect.c:

cc: "connect.c", line 265: warning 604: Pointers are not
assignment-compatible.^
M
cc: "connect.c", line 265: warning 563: Argument #3 is not the correct
type.^M
cc: "connect.c", line 351: warning 604: Pointers are not
assignment-compatible.^
M
cc: "connect.c", line 351: warning 563: Argument #5 is not the correct
type.^M

some warnings in lib503.c:

        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f
'lib503.c' |
| echo './'`lib503.c^M
cc: "lib503.c", line 63: warning 604: Pointers are not
assignment-compatible.^M
cc: "lib503.c", line 63: warning 563: Argument #2 is not the correct
type.^M
cc: "lib503.c", line 63: warning 604: Pointers are not
assignment-compatible.^M
cc: "lib503.c", line 63: warning 563: Argument #3 is not the correct
type.^M
cc: "lib503.c", line 63: warning 604: Pointers are not
assignment-compatible.^M
cc: "lib503.c", line 63: warning 563: Argument #4 is not the correct
type.^M

some complaining about the select call:

      if (select(max_fd+1, &rd, &wr, &exc, NULL) == -1) {
        fprintf(stderr, "bad select??\n");
 
the file includes test.h, but I'm not sure if it ends-up inlucding
<sys/time.h> to get the select protos.

the same thing for lib504

rick jones

rick jones

-- 
Wisdom Teeth are impacted, people are affected by the effects of events.
these opinions are mine, all mine; HP might not want them anyway... :)
feel free to post, OR email to raj in cup.hp.com  but NOT BOTH...

Script started on Tue Mar 11 16:36:35 2003
$ ./clnfiguonfigure
checking whether to enable maintainer-specific portions of Makefiles... no
checking for a BSD-compatible install... /opt/imake/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking build system type... hppa2.0w-hp-hpux11.11
checking host system type... hppa2.0w-hp-hpux11.11
checking for style of include used by make... GNU
checking for gcc... no
checking for cc... cc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... no
checking whether cc accepts -g... yes
checking for cc option to accept ANSI C... none needed
checking dependency style of cc... hp
checking how to run the C preprocessor... cc -E
checking for egrep... grep -E
checking for AIX... no
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) no
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ANSI C... (cached) none needed
checking dependency style of cc... (cached) hp
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking for _LARGE_FILES value needed for large files... no
checking for non-GNU ld... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... no
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -p
checking whether ln -s works... yes
checking how to recognise dependant libraries... file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library
checking command to parse /usr/bin/nm -p output... ok
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... no
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for ranlib... ranlib
checking for strip... strip
checking for objdir... .libs
checking for cc option to produce PIC... +Z
checking if cc PIC flag +Z works... yes
checking if cc static flag -Wl,-a -Wl,archive works... yes
checking if cc supports -c -o file.o... yes
checking if cc supports -c -o file.lo... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... relink
checking whether stripping libraries is possible... no
checking dynamic linker characteristics... hpux11.11 dld.sl
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
creating libtool
checking whether make sets $(MAKE)... (cached) yes
checking whether to support http... yes
checking whether to support ftp... yes
checking whether to support gopher... yes
checking whether to support file... yes
checking whether to support ldap... yes
checking whether to support dict... yes
checking whether to support telnet... yes
checking whether to enable ipv6... yes
checking for working getaddrinfo... yes
checking for gethostbyname... yes
checking for strcasecmp... yes
checking for connect... yes
checking for dlclose... yes
checking non-blocking sockets style... O_NONBLOCK
checking for "/dev/urandom"... no
checking if argv can be written to... yes
checking if Kerberos4 support is requested... no
checking for CRYPTO_lock in -lcrypto... no
checking for CRYPTO_add_lock in -lcrypto... no
checking for RAND_status... no
checking for RAND_screen... no
checking for RAND_egd... no
checking for inflateEnd in -lz... no
checking zlib.h usability... no
checking zlib.h presence... no
checking for zlib.h... no
checking AIX 4.3 or later... no
checking for gethostbyname_r... no
checking for gethostbyaddr_r... no
checking for inet_ntoa_r... no
checking for localtime_r... yes
checking whether localtime_r is declared... no
checking whether localtime_r with -D_REENTRANT is declared... yes
checking for gmtime_r... yes
checking for ANSI C header files... (cached) yes
checking for unistd.h... (cached) yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for stdlib.h... (cached) yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking net/if.h usability... yes
checking net/if.h presence... yes
checking for net/if.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking netinet/if_ether.h usability... no
checking netinet/if_ether.h presence... yes
configure: WARNING: netinet/if_ether.h: present but cannot be compiled
configure: WARNING: netinet/if_ether.h: check for missing prerequisite headers?
configure: WARNING: netinet/if_ether.h: proceeding with the preprocessor's result
configure: WARNING: ## ------------------------------------ ##
configure: WARNING: ## Report this to bug-autoconf_at_gnu.org. ##
configure: WARNING: ## ------------------------------------ ##
checking for netinet/if_ether.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking sys/select.h usability... no
checking sys/select.h presence... no
checking for sys/select.h... no
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/sockio.h usability... no
checking sys/sockio.h presence... no
checking for sys/sockio.h... no
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking termio.h usability... yes
checking termio.h presence... yes
checking for termio.h... yes
checking sgtty.h usability... yes
checking sgtty.h presence... yes
checking for sgtty.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for dlfcn.h... (cached) yes
checking alloca.h usability... yes
checking alloca.h presence... yes
checking for alloca.h... yes
checking winsock.h usability... no
checking winsock.h presence... no
checking for winsock.h... no
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking sys/utime.h usability... no
checking sys/utime.h presence... no
checking for sys/utime.h... no
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking setjmp.h usability... yes
checking setjmp.h presence... yes
checking for setjmp.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking for ssize_t... yes
checking for socklen_t... yes
checking for in_addr_t... yes
checking return type of signal handlers... void
checking for socket... yes
checking for select... yes
checking for strdup... yes
checking for strstr... yes
checking for strtok_r... yes
checking for strftime... yes
checking for uname... yes
checking for strcasecmp... (cached) yes
checking for stricmp... no
checking for strcmpi... no
checking for gethostbyaddr... yes
checking for gettimeofday... yes
checking for inet_addr... yes
checking for inet_ntoa... yes
checking for tcsetattr... yes
checking for tcgetattr... yes
checking for perror... yes
checking for closesocket... no
checking for setvbuf... yes
checking for sigaction... yes
checking for signal... yes
checking for getpass_r... no
checking for strlcat... no
checking for getpwuid... yes
checking for geteuid... yes
checking for dlopen... yes
checking for utime... yes
checking for sigsetjmp... yes
checking for poll... yes
checking for perl... /usr/contrib/bin/perl
checking for gnroff... no
checking for nroff... /usr/bin/nroff
checking CA cert bundle install path... /usr/local/share/curl/curl-ca-bundle.crt
checking for bison... no
checking for byacc... no
checking whether to enable debug options... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating docs/Makefile
config.status: creating docs/examples/Makefile
config.status: creating docs/libcurl/Makefile
config.status: creating include/Makefile
config.status: creating include/curl/Makefile
config.status: creating src/Makefile
config.status: creating lib/Makefile
config.status: creating tests/Makefile
config.status: creating tests/data/Makefile
config.status: creating tests/server/Makefile
config.status: creating tests/libtest/Makefile
config.status: creating packages/Makefile
config.status: creating packages/Win32/Makefile
config.status: creating packages/Win32/cygwin/Makefile
config.status: creating packages/Linux/Makefile
config.status: creating packages/Linux/RPM/Makefile
config.status: creating packages/Linux/RPM/curl.spec
config.status: creating packages/Linux/RPM/curl-ssl.spec
config.status: creating packages/Solaris/Makefile
config.status: creating packages/EPM/curl.list
config.status: creating packages/EPM/Makefile
config.status: creating curl-config
config.status: creating lib/config.h
config.status: creating src/config.h
config.status: creating tests/server/config.h
config.status: creating lib/ca-bundle.h
config.status: executing depfiles commands
$ make
No suffix list.
Making all in docs
Making all in examples
No suffix list.
done
Making all in libcurl
Making all in lib
        make all-am
        source='file.c' object='file.lo' libtool=yes \
        depfile='.deps/file.Plo' tmpdepfile='.deps/file.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o file.lo `test -f 'file.c' || echo './'`file.c
mkdir .libs
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c file.c -Wp,-M.deps/file.TPlo +Z -DPIC -o .libs/file.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c file.c -Wp,-M.deps/file.TPlo -o file.o >/dev/null 2>&1
mv -f .libs/file.lo file.lo
        source='timeval.c' object='timeval.lo' libtool=yes \
        depfile='.deps/timeval.Plo' tmpdepfile='.deps/timeval.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o timeval.lo `test -f 'timeval.c' || echo './'`timeval.c
rm -f .libs/timeval.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c timeval.c -Wp,-M.deps/timeval.TPlo +Z -DPIC -o .libs/timeval.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c timeval.c -Wp,-M.deps/timeval.TPlo -o timeval.o >/dev/null 2>&1
mv -f .libs/timeval.lo timeval.lo
        source='base64.c' object='base64.lo' libtool=yes \
        depfile='.deps/base64.Plo' tmpdepfile='.deps/base64.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o base64.lo `test -f 'base64.c' || echo './'`base64.c
rm -f .libs/base64.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c base64.c -Wp,-M.deps/base64.TPlo +Z -DPIC -o .libs/base64.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c base64.c -Wp,-M.deps/base64.TPlo -o base64.o >/dev/null 2>&1
mv -f .libs/base64.lo base64.lo
        source='hostip.c' object='hostip.lo' libtool=yes \
        depfile='.deps/hostip.Plo' tmpdepfile='.deps/hostip.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o hostip.lo `test -f 'hostip.c' || echo './'`hostip.c
rm -f .libs/hostip.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c hostip.c -Wp,-M.deps/hostip.TPlo +Z -DPIC -o .libs/hostip.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c hostip.c -Wp,-M.deps/hostip.TPlo -o hostip.o >/dev/null 2>&1
mv -f .libs/hostip.lo hostip.lo
        source='progress.c' object='progress.lo' libtool=yes \
        depfile='.deps/progress.Plo' tmpdepfile='.deps/progress.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o progress.lo `test -f 'progress.c' || echo './'`progress.c
rm -f .libs/progress.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c progress.c -Wp,-M.deps/progress.TPlo +Z -DPIC -o .libs/progress.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c progress.c -Wp,-M.deps/progress.TPlo -o progress.o >/dev/null 2>&1
mv -f .libs/progress.lo progress.lo
        source='formdata.c' object='formdata.lo' libtool=yes \
        depfile='.deps/formdata.Plo' tmpdepfile='.deps/formdata.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o formdata.lo `test -f 'formdata.c' || echo './'`formdata.c
rm -f .libs/formdata.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c formdata.c -Wp,-M.deps/formdata.TPlo +Z -DPIC -o .libs/formdata.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c formdata.c -Wp,-M.deps/formdata.TPlo -o formdata.o >/dev/null 2>&1
mv -f .libs/formdata.lo formdata.lo
        source='cookie.c' object='cookie.lo' libtool=yes \
        depfile='.deps/cookie.Plo' tmpdepfile='.deps/cookie.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o cookie.lo `test -f 'cookie.c' || echo './'`cookie.c
rm -f .libs/cookie.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c cookie.c -Wp,-M.deps/cookie.TPlo +Z -DPIC -o .libs/cookie.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c cookie.c -Wp,-M.deps/cookie.TPlo -o cookie.o >/dev/null 2>&1
mv -f .libs/cookie.lo cookie.lo
        source='http.c' object='http.lo' libtool=yes \
        depfile='.deps/http.Plo' tmpdepfile='.deps/http.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o http.lo `test -f 'http.c' || echo './'`http.c
rm -f .libs/http.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c http.c -Wp,-M.deps/http.TPlo +Z -DPIC -o .libs/http.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c http.c -Wp,-M.deps/http.TPlo -o http.o >/dev/null 2>&1
mv -f .libs/http.lo http.lo
        source='sendf.c' object='sendf.lo' libtool=yes \
        depfile='.deps/sendf.Plo' tmpdepfile='.deps/sendf.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o sendf.lo `test -f 'sendf.c' || echo './'`sendf.c
rm -f .libs/sendf.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c sendf.c -Wp,-M.deps/sendf.TPlo +Z -DPIC -o .libs/sendf.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c sendf.c -Wp,-M.deps/sendf.TPlo -o sendf.o >/dev/null 2>&1
mv -f .libs/sendf.lo sendf.lo
        source='ftp.c' object='ftp.lo' libtool=yes \
        depfile='.deps/ftp.Plo' tmpdepfile='.deps/ftp.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o ftp.lo `test -f 'ftp.c' || echo './'`ftp.c
rm -f .libs/ftp.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c ftp.c -Wp,-M.deps/ftp.TPlo +Z -DPIC -o .libs/ftp.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc: "ftp.c", line 148: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 148: warning 563: Argument #3 is not the correct type.
cc: "ftp.c", line 149: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 149: warning 563: Argument #3 is not the correct type.
cc: "ftp.c", line 641: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 641: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 694: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 694: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 725: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 725: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 755: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 755: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 804: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 804: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 835: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 835: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 1029: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1029: warning 563: Argument #3 is not the correct type.
cc: "ftp.c", line 1074: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1074: warning 563: Argument #3 is not the correct type.
cc: "ftp.c", line 1175: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1175: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 1395: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1395: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 1643: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1643: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 1819: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1819: warning 563: Argument #1 is not the correct type.
cc: "ftp.c", line 1832: warning 604: Pointers are not assignment-compatible.
cc: "ftp.c", line 1832: warning 563: Argument #1 is not the correct type.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c ftp.c -Wp,-M.deps/ftp.TPlo -o ftp.o >/dev/null 2>&1
mv -f .libs/ftp.lo ftp.lo
        source='url.c' object='url.lo' libtool=yes \
        depfile='.deps/url.Plo' tmpdepfile='.deps/url.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o url.lo `test -f 'url.c' || echo './'`url.c
rm -f .libs/url.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c url.c -Wp,-M.deps/url.TPlo +Z -DPIC -o .libs/url.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc: "url.c", line 1441: warning 604: Pointers are not assignment-compatible.
cc: "url.c", line 1441: warning 563: Argument #5 is not the correct type.
cc: "url.c", line 1448: warning 604: Pointers are not assignment-compatible.
cc: "url.c", line 1448: warning 563: Argument #5 is not the correct type.
cc: "url.c", line 1485: warning 604: Pointers are not assignment-compatible.
cc: "url.c", line 1485: warning 563: Argument #5 is not the correct type.
cc: "url.c", line 1491: warning 604: Pointers are not assignment-compatible.
cc: "url.c", line 1491: warning 563: Argument #5 is not the correct type.
cc: "url.c", line 1575: warning 604: Pointers are not assignment-compatible.
cc: "url.c", line 1575: warning 563: Argument #5 is not the correct type.
cc: "url.c", line 1581: warning 604: Pointers are not assignment-compatible.
cc: "url.c", line 1581: warning 563: Argument #5 is not the correct type.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c url.c -Wp,-M.deps/url.TPlo -o url.o >/dev/null 2>&1
mv -f .libs/url.lo url.lo
        source='dict.c' object='dict.lo' libtool=yes \
        depfile='.deps/dict.Plo' tmpdepfile='.deps/dict.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o dict.lo `test -f 'dict.c' || echo './'`dict.c
rm -f .libs/dict.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c dict.c -Wp,-M.deps/dict.TPlo +Z -DPIC -o .libs/dict.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c dict.c -Wp,-M.deps/dict.TPlo -o dict.o >/dev/null 2>&1
mv -f .libs/dict.lo dict.lo
        source='if2ip.c' object='if2ip.lo' libtool=yes \
        depfile='.deps/if2ip.Plo' tmpdepfile='.deps/if2ip.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o if2ip.lo `test -f 'if2ip.c' || echo './'`if2ip.c
rm -f .libs/if2ip.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c if2ip.c -Wp,-M.deps/if2ip.TPlo +Z -DPIC -o .libs/if2ip.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c if2ip.c -Wp,-M.deps/if2ip.TPlo -o if2ip.o >/dev/null 2>&1
mv -f .libs/if2ip.lo if2ip.lo
        source='speedcheck.c' object='speedcheck.lo' libtool=yes \
        depfile='.deps/speedcheck.Plo' tmpdepfile='.deps/speedcheck.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o speedcheck.lo `test -f 'speedcheck.c' || echo './'`speedcheck.c
rm -f .libs/speedcheck.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c speedcheck.c -Wp,-M.deps/speedcheck.TPlo +Z -DPIC -o .libs/speedcheck.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c speedcheck.c -Wp,-M.deps/speedcheck.TPlo -o speedcheck.o >/dev/null 2>&1
mv -f .libs/speedcheck.lo speedcheck.lo
        source='getdate.c' object='getdate.lo' libtool=yes \
        depfile='.deps/getdate.Plo' tmpdepfile='.deps/getdate.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o getdate.lo `test -f 'getdate.c' || echo './'`getdate.c
rm -f .libs/getdate.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getdate.c -Wp,-M.deps/getdate.TPlo +Z -DPIC -o .libs/getdate.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getdate.c -Wp,-M.deps/getdate.TPlo -o getdate.o >/dev/null 2>&1
mv -f .libs/getdate.lo getdate.lo
        source='ldap.c' object='ldap.lo' libtool=yes \
        depfile='.deps/ldap.Plo' tmpdepfile='.deps/ldap.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o ldap.lo `test -f 'ldap.c' || echo './'`ldap.c
rm -f .libs/ldap.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c ldap.c -Wp,-M.deps/ldap.TPlo +Z -DPIC -o .libs/ldap.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c ldap.c -Wp,-M.deps/ldap.TPlo -o ldap.o >/dev/null 2>&1
mv -f .libs/ldap.lo ldap.lo
        source='ssluse.c' object='ssluse.lo' libtool=yes \
        depfile='.deps/ssluse.Plo' tmpdepfile='.deps/ssluse.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o ssluse.lo `test -f 'ssluse.c' || echo './'`ssluse.c
rm -f .libs/ssluse.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c ssluse.c -Wp,-M.deps/ssluse.TPlo +Z -DPIC -o .libs/ssluse.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c ssluse.c -Wp,-M.deps/ssluse.TPlo -o ssluse.o >/dev/null 2>&1
mv -f .libs/ssluse.lo ssluse.lo
        source='version.c' object='version.lo' libtool=yes \
        depfile='.deps/version.Plo' tmpdepfile='.deps/version.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o version.lo `test -f 'version.c' || echo './'`version.c
rm -f .libs/version.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c version.c -Wp,-M.deps/version.TPlo +Z -DPIC -o .libs/version.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c version.c -Wp,-M.deps/version.TPlo -o version.o >/dev/null 2>&1
mv -f .libs/version.lo version.lo
        source='getenv.c' object='getenv.lo' libtool=yes \
        depfile='.deps/getenv.Plo' tmpdepfile='.deps/getenv.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o getenv.lo `test -f 'getenv.c' || echo './'`getenv.c
rm -f .libs/getenv.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getenv.c -Wp,-M.deps/getenv.TPlo +Z -DPIC -o .libs/getenv.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getenv.c -Wp,-M.deps/getenv.TPlo -o getenv.o >/dev/null 2>&1
mv -f .libs/getenv.lo getenv.lo
        source='escape.c' object='escape.lo' libtool=yes \
        depfile='.deps/escape.Plo' tmpdepfile='.deps/escape.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o escape.lo `test -f 'escape.c' || echo './'`escape.c
rm -f .libs/escape.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c escape.c -Wp,-M.deps/escape.TPlo +Z -DPIC -o .libs/escape.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c escape.c -Wp,-M.deps/escape.TPlo -o escape.o >/dev/null 2>&1
mv -f .libs/escape.lo escape.lo
        source='mprintf.c' object='mprintf.lo' libtool=yes \
        depfile='.deps/mprintf.Plo' tmpdepfile='.deps/mprintf.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o mprintf.lo `test -f 'mprintf.c' || echo './'`mprintf.c
rm -f .libs/mprintf.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c mprintf.c -Wp,-M.deps/mprintf.TPlo +Z -DPIC -o .libs/mprintf.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c mprintf.c -Wp,-M.deps/mprintf.TPlo -o mprintf.o >/dev/null 2>&1
mv -f .libs/mprintf.lo mprintf.lo
        source='telnet.c' object='telnet.lo' libtool=yes \
        depfile='.deps/telnet.Plo' tmpdepfile='.deps/telnet.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o telnet.lo `test -f 'telnet.c' || echo './'`telnet.c
rm -f .libs/telnet.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c telnet.c -Wp,-M.deps/telnet.TPlo +Z -DPIC -o .libs/telnet.lo
cpp: "arpa_telnet.h", line 67: warning 2001: Redefinition of macro SE.
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc: "telnet.c", line 451: warning 562: Redeclaration of "set_local_option" with a different storage class specifier: "set_local_option" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c telnet.c -Wp,-M.deps/telnet.TPlo -o telnet.o >/dev/null 2>&1
mv -f .libs/telnet.lo telnet.lo
        source='getpass.c' object='getpass.lo' libtool=yes \
        depfile='.deps/getpass.Plo' tmpdepfile='.deps/getpass.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o getpass.lo `test -f 'getpass.c' || echo './'`getpass.c
rm -f .libs/getpass.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getpass.c -Wp,-M.deps/getpass.TPlo +Z -DPIC -o .libs/getpass.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getpass.c -Wp,-M.deps/getpass.TPlo -o getpass.o >/dev/null 2>&1
mv -f .libs/getpass.lo getpass.lo
        source='netrc.c' object='netrc.lo' libtool=yes \
        depfile='.deps/netrc.Plo' tmpdepfile='.deps/netrc.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o netrc.lo `test -f 'netrc.c' || echo './'`netrc.c
rm -f .libs/netrc.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c netrc.c -Wp,-M.deps/netrc.TPlo +Z -DPIC -o .libs/netrc.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c netrc.c -Wp,-M.deps/netrc.TPlo -o netrc.o >/dev/null 2>&1
mv -f .libs/netrc.lo netrc.lo
        source='getinfo.c' object='getinfo.lo' libtool=yes \
        depfile='.deps/getinfo.Plo' tmpdepfile='.deps/getinfo.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o getinfo.lo `test -f 'getinfo.c' || echo './'`getinfo.c
rm -f .libs/getinfo.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getinfo.c -Wp,-M.deps/getinfo.TPlo +Z -DPIC -o .libs/getinfo.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c getinfo.c -Wp,-M.deps/getinfo.TPlo -o getinfo.o >/dev/null 2>&1
mv -f .libs/getinfo.lo getinfo.lo
        source='transfer.c' object='transfer.lo' libtool=yes \
        depfile='.deps/transfer.Plo' tmpdepfile='.deps/transfer.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o transfer.lo `test -f 'transfer.c' || echo './'`transfer.c
rm -f .libs/transfer.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c transfer.c -Wp,-M.deps/transfer.TPlo +Z -DPIC -o .libs/transfer.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c transfer.c -Wp,-M.deps/transfer.TPlo -o transfer.o >/dev/null 2>&1
mv -f .libs/transfer.lo transfer.lo
        source='strequal.c' object='strequal.lo' libtool=yes \
        depfile='.deps/strequal.Plo' tmpdepfile='.deps/strequal.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o strequal.lo `test -f 'strequal.c' || echo './'`strequal.c
rm -f .libs/strequal.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c strequal.c -Wp,-M.deps/strequal.TPlo +Z -DPIC -o .libs/strequal.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c strequal.c -Wp,-M.deps/strequal.TPlo -o strequal.o >/dev/null 2>&1
mv -f .libs/strequal.lo strequal.lo
        source='easy.c' object='easy.lo' libtool=yes \
        depfile='.deps/easy.Plo' tmpdepfile='.deps/easy.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o easy.lo `test -f 'easy.c' || echo './'`easy.c
rm -f .libs/easy.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c easy.c -Wp,-M.deps/easy.TPlo +Z -DPIC -o .libs/easy.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c easy.c -Wp,-M.deps/easy.TPlo -o easy.o >/dev/null 2>&1
mv -f .libs/easy.lo easy.lo
        source='security.c' object='security.lo' libtool=yes \
        depfile='.deps/security.Plo' tmpdepfile='.deps/security.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o security.lo `test -f 'security.c' || echo './'`security.c
rm -f .libs/security.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c security.c -Wp,-M.deps/security.TPlo +Z -DPIC -o .libs/security.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c security.c -Wp,-M.deps/security.TPlo -o security.o >/dev/null 2>&1
mv -f .libs/security.lo security.lo
        source='krb4.c' object='krb4.lo' libtool=yes \
        depfile='.deps/krb4.Plo' tmpdepfile='.deps/krb4.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o krb4.lo `test -f 'krb4.c' || echo './'`krb4.c
rm -f .libs/krb4.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c krb4.c -Wp,-M.deps/krb4.TPlo +Z -DPIC -o .libs/krb4.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c krb4.c -Wp,-M.deps/krb4.TPlo -o krb4.o >/dev/null 2>&1
mv -f .libs/krb4.lo krb4.lo
        source='memdebug.c' object='memdebug.lo' libtool=yes \
        depfile='.deps/memdebug.Plo' tmpdepfile='.deps/memdebug.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o memdebug.lo `test -f 'memdebug.c' || echo './'`memdebug.c
rm -f .libs/memdebug.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c memdebug.c -Wp,-M.deps/memdebug.TPlo +Z -DPIC -o .libs/memdebug.lo
cc: "memdebug.c", line 1: warning 501: Empty source file.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c memdebug.c -Wp,-M.deps/memdebug.TPlo -o memdebug.o >/dev/null 2>&1
mv -f .libs/memdebug.lo memdebug.lo
        source='http_chunks.c' object='http_chunks.lo' libtool=yes \
        depfile='.deps/http_chunks.Plo' tmpdepfile='.deps/http_chunks.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o http_chunks.lo `test -f 'http_chunks.c' || echo './'`http_chunks.c
rm -f .libs/http_chunks.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c http_chunks.c -Wp,-M.deps/http_chunks.TPlo +Z -DPIC -o .libs/http_chunks.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c http_chunks.c -Wp,-M.deps/http_chunks.TPlo -o http_chunks.o >/dev/null 2>&1
mv -f .libs/http_chunks.lo http_chunks.lo
        source='strtok.c' object='strtok.lo' libtool=yes \
        depfile='.deps/strtok.Plo' tmpdepfile='.deps/strtok.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o strtok.lo `test -f 'strtok.c' || echo './'`strtok.c
rm -f .libs/strtok.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c strtok.c -Wp,-M.deps/strtok.TPlo +Z -DPIC -o .libs/strtok.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c strtok.c -Wp,-M.deps/strtok.TPlo -o strtok.o >/dev/null 2>&1
mv -f .libs/strtok.lo strtok.lo
        source='connect.c' object='connect.lo' libtool=yes \
        depfile='.deps/connect.Plo' tmpdepfile='.deps/connect.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o connect.lo `test -f 'connect.c' || echo './'`connect.c
rm -f .libs/connect.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c connect.c -Wp,-M.deps/connect.TPlo +Z -DPIC -o .libs/connect.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc: "connect.c", line 265: warning 604: Pointers are not assignment-compatible.
cc: "connect.c", line 265: warning 563: Argument #3 is not the correct type.
cc: "connect.c", line 351: warning 604: Pointers are not assignment-compatible.
cc: "connect.c", line 351: warning 563: Argument #5 is not the correct type.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c connect.c -Wp,-M.deps/connect.TPlo -o connect.o >/dev/null 2>&1
mv -f .libs/connect.lo connect.lo
        source='llist.c' object='llist.lo' libtool=yes \
        depfile='.deps/llist.Plo' tmpdepfile='.deps/llist.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o llist.lo `test -f 'llist.c' || echo './'`llist.c
rm -f .libs/llist.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c llist.c -Wp,-M.deps/llist.TPlo +Z -DPIC -o .libs/llist.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c llist.c -Wp,-M.deps/llist.TPlo -o llist.o >/dev/null 2>&1
mv -f .libs/llist.lo llist.lo
        source='hash.c' object='hash.lo' libtool=yes \
        depfile='.deps/hash.Plo' tmpdepfile='.deps/hash.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o hash.lo `test -f 'hash.c' || echo './'`hash.c
rm -f .libs/hash.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c hash.c -Wp,-M.deps/hash.TPlo +Z -DPIC -o .libs/hash.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c hash.c -Wp,-M.deps/hash.TPlo -o hash.o >/dev/null 2>&1
mv -f .libs/hash.lo hash.lo
        source='multi.c' object='multi.lo' libtool=yes \
        depfile='.deps/multi.Plo' tmpdepfile='.deps/multi.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o multi.lo `test -f 'multi.c' || echo './'`multi.c
rm -f .libs/multi.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c multi.c -Wp,-M.deps/multi.TPlo +Z -DPIC -o .libs/multi.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c multi.c -Wp,-M.deps/multi.TPlo -o multi.o >/dev/null 2>&1
mv -f .libs/multi.lo multi.lo
        source='content_encoding.c' object='content_encoding.lo' libtool=yes \
        depfile='.deps/content_encoding.Plo' tmpdepfile='.deps/content_encoding.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o content_encoding.lo `test -f 'content_encoding.c' || echo './'`content_encoding.c
rm -f .libs/content_encoding.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c content_encoding.c -Wp,-M.deps/content_encoding.TPlo +Z -DPIC -o .libs/content_encoding.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c content_encoding.c -Wp,-M.deps/content_encoding.TPlo -o content_encoding.o >/dev/null 2>&1
mv -f .libs/content_encoding.lo content_encoding.lo
        source='share.c' object='share.lo' libtool=yes \
        depfile='.deps/share.Plo' tmpdepfile='.deps/share.TPlo' \
        depmode=hp /bin/sh ../depcomp \
        /bin/sh ../libtool --mode=compile cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c -o share.lo `test -f 'share.c' || echo './'`share.c
rm -f .libs/share.lo
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c share.c -Wp,-M.deps/share.TPlo +Z -DPIC -o .libs/share.lo
cc: "/usr/include/sys/socket.h", line 504: warning 562: Redeclaration of "sendfile" with a different storage class specifier: "sendfile" will have internal linkage.
cc: "/usr/include/sys/socket.h", line 505: warning 562: Redeclaration of "sendpath" with a different storage class specifier: "sendpath" will have internal linkage.
cc -DHAVE_CONFIG_H -I../include -I../lib -I../lib -g -c share.c -Wp,-M.deps/share.TPlo -o share.o >/dev/null 2>&1
mv -f .libs/share.lo share.lo
        /bin/sh ../libtool --mode=link cc -g -o libcurl.la -rpath /usr/local/lib -version-info 2:2:0 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 connect.lo llist.lo hash.lo multi.lo content_encoding.lo share.lo
rm -fr .libs/libcurl.la .libs/libcurl.* .libs/libcurl.*
/usr/bin/ld -b +h libcurl.sl.2 +b /usr/local/lib -o .libs/libcurl.sl.2.2 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 connect.lo llist.lo hash.lo multi.lo content_encoding.lo share.lo -lc
/usr/bin/ld: (Warning) At least one PA 2.0 object file (file.lo) was detected. The linked output may not run on a PA 1.x system.
(cd .libs && rm -f libcurl.sl.2 && ln -s libcurl.sl.2.2 libcurl.sl.2)
(cd .libs && rm -f libcurl.sl && ln -s libcurl.sl.2.2 libcurl.sl)
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 connect.o llist.o hash.o multi.o content_encoding.o share.o
ranlib .libs/libcurl.a
creating libcurl.la
(cd .libs && rm -f libcurl.la && ln -s ../libcurl.la libcurl.la)
Making all in src
        rm -f hugehelp.c
        /usr/bin/nroff -man ../docs/curl.1 | /usr/contrib/bin/perl ../src/mkhelp.pl ../docs/MANUAL > hugehelp.c
        make all-am
        source='main.c' object='main.o' libtool=no \
        depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \
        depmode=hp /bin/sh ../depcomp \
        cc -DHAVE_CONFIG_H -I../include -I../src -I../src -g -c `test -f 'main.c' || echo './'`main.c
        source='hugehelp.c' object='hugehelp.o' libtool=no \
        depfile='.deps/hugehelp.Po' tmpdepfile='.deps/hugehelp.TPo' \
        depmode=hp /bin/sh ../depcomp \
        cc -DHAVE_CONFIG_H -I../include -I../src -I../src -g -c `test -f 'hugehelp.c' || echo './'`hugehelp.c
        source='urlglob.c' object='urlglob.o' libtool=no \
        depfile='.deps/urlglob.Po' tmpdepfile='.deps/urlglob.TPo' \
        depmode=hp /bin/sh ../depcomp \
        cc -DHAVE_CONFIG_H -I../include -I../src -I../src -g -c `test -f 'urlglob.c' || echo './'`urlglob.c
        source='writeout.c' object='writeout.o' libtool=no \
        depfile='.deps/writeout.Po' tmpdepfile='.deps/writeout.TPo' \
        depmode=hp /bin/sh ../depcomp \
        cc -DHAVE_CONFIG_H -I../include -I../src -I../src -g -c `test -f 'writeout.c' || echo './'`writeout.c
        source='writeenv.c' object='writeenv.o' libtool=no \
        depfile='.deps/writeenv.Po' tmpdepfile='.deps/writeenv.TPo' \
        depmode=hp /bin/sh ../depcomp \
        cc -DHAVE_CONFIG_H -I../include -I../src -I../src -g -c `test -f 'writeenv.c' || echo './'`writeenv.c
        /bin/sh ../libtool --mode=link cc -g -o curl main.o hugehelp.o urlglob.o writeout.o writeenv.o ../lib/libcurl.la
mkdir .libs
libtool: link: warning: this platform does not like uninstalled shared libraries
libtool: link: `curl' will be relinked during installation
cc -g -o .libs/curl main.o hugehelp.o urlglob.o writeout.o writeenv.o ../lib/.libs/libcurl.sl -Wl,+b -Wl,/home/raj/curl-7.10.4-pre3/lib/.libs:/usr/local/lib
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (main.o) was detected. The linked output may not run on a PA 1.x system.
creating curl
Making all in include
No suffix list.
Making all in curl
No suffix list.
No suffix list.
Making all in tests
No suffix list.
Making all in data
No suffix list.
Making all in server
        make all-am
        source='sws.c' object='sws.o' libtool=no \
        depfile='.deps/sws.Po' tmpdepfile='.deps/sws.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I. -I. -I../../lib -I../../src -I. -I../../lib -g -c `test -f 'sws.c' || echo './'`sws.c
        source='getpart.c' object='getpart.o' libtool=no \
        depfile='.deps/getpart.Po' tmpdepfile='.deps/getpart.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I. -I. -I../../lib -I../../src -I. -I../../lib -g -c `test -f 'getpart.c' || echo './'`getpart.c
        /bin/sh ../../libtool --mode=link cc -g -o sws sws.o getpart.o
mkdir .libs
cc -g -o sws sws.o getpart.o
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (sws.o) was detected. The linked output may not run on a PA 1.x system.
Making all in libtest
        source='lib500.c' object='lib500.o' libtool=no \
        depfile='.deps/lib500.Po' tmpdepfile='.deps/lib500.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f 'lib500.c' || echo './'`lib500.c
        source='first.c' object='first.o' libtool=no \
        depfile='.deps/first.Po' tmpdepfile='.deps/first.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f 'first.c' || echo './'`first.c
        /bin/sh ../../libtool --mode=link cc -g -o lib500 lib500.o first.o ../../lib/libcurl.la
mkdir .libs
libtool: link: warning: this platform does not like uninstalled shared libraries
libtool: link: `lib500' will be relinked during installation
cc -g -o .libs/lib500 lib500.o first.o ../../lib/.libs/libcurl.sl -Wl,+b -Wl,/home/raj/curl-7.10.4-pre3/lib/.libs:/usr/local/lib
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (lib500.o) was detected. The linked output may not run on a PA 1.x system.
creating lib500
        source='lib501.c' object='lib501.o' libtool=no \
        depfile='.deps/lib501.Po' tmpdepfile='.deps/lib501.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f 'lib501.c' || echo './'`lib501.c
        /bin/sh ../../libtool --mode=link cc -g -o lib501 lib501.o first.o ../../lib/libcurl.la
libtool: link: warning: this platform does not like uninstalled shared libraries
libtool: link: `lib501' will be relinked during installation
cc -g -o .libs/lib501 lib501.o first.o ../../lib/.libs/libcurl.sl -Wl,+b -Wl,/home/raj/curl-7.10.4-pre3/lib/.libs:/usr/local/lib
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (lib501.o) was detected. The linked output may not run on a PA 1.x system.
creating lib501
        source='lib502.c' object='lib502.o' libtool=no \
        depfile='.deps/lib502.Po' tmpdepfile='.deps/lib502.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f 'lib502.c' || echo './'`lib502.c
        /bin/sh ../../libtool --mode=link cc -g -o lib502 lib502.o first.o ../../lib/libcurl.la
libtool: link: warning: this platform does not like uninstalled shared libraries
libtool: link: `lib502' will be relinked during installation
cc -g -o .libs/lib502 lib502.o first.o ../../lib/.libs/libcurl.sl -Wl,+b -Wl,/home/raj/curl-7.10.4-pre3/lib/.libs:/usr/local/lib
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (lib502.o) was detected. The linked output may not run on a PA 1.x system.
creating lib502
        source='lib503.c' object='lib503.o' libtool=no \
        depfile='.deps/lib503.Po' tmpdepfile='.deps/lib503.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f 'lib503.c' || echo './'`lib503.c
cc: "lib503.c", line 63: warning 604: Pointers are not assignment-compatible.
cc: "lib503.c", line 63: warning 563: Argument #2 is not the correct type.
cc: "lib503.c", line 63: warning 604: Pointers are not assignment-compatible.
cc: "lib503.c", line 63: warning 563: Argument #3 is not the correct type.
cc: "lib503.c", line 63: warning 604: Pointers are not assignment-compatible.
cc: "lib503.c", line 63: warning 563: Argument #4 is not the correct type.
        /bin/sh ../../libtool --mode=link cc -g -o lib503 lib503.o first.o ../../lib/libcurl.la
libtool: link: warning: this platform does not like uninstalled shared libraries
libtool: link: `lib503' will be relinked during installation
cc -g -o .libs/lib503 lib503.o first.o ../../lib/.libs/libcurl.sl -Wl,+b -Wl,/home/raj/curl-7.10.4-pre3/lib/.libs:/usr/local/lib
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (lib503.o) was detected. The linked output may not run on a PA 1.x system.
creating lib503
        source='lib504.c' object='lib504.o' libtool=no \
        depfile='.deps/lib504.Po' tmpdepfile='.deps/lib504.TPo' \
        depmode=hp /bin/sh ../../depcomp \
        cc -DHAVE_CONFIG_H -I../../include/curl -g -c `test -f 'lib504.c' || echo './'`lib504.c
cc: "lib504.c", line 65: warning 604: Pointers are not assignment-compatible.
cc: "lib504.c", line 65: warning 563: Argument #2 is not the correct type.
cc: "lib504.c", line 65: warning 604: Pointers are not assignment-compatible.
cc: "lib504.c", line 65: warning 563: Argument #3 is not the correct type.
cc: "lib504.c", line 65: warning 604: Pointers are not assignment-compatible.
cc: "lib504.c", line 65: warning 563: Argument #4 is not the correct type.
        /bin/sh ../../libtool --mode=link cc -g -o lib504 lib504.o first.o ../../lib/libcurl.la
libtool: link: warning: this platform does not like uninstalled shared libraries
libtool: link: `lib504' will be relinked during installation
cc -g -o .libs/lib504 lib504.o first.o ../../lib/.libs/libcurl.sl -Wl,+b -Wl,/home/raj/curl-7.10.4-pre3/lib/.libs:/usr/local/lib
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (lib504.o) was detected. The linked output may not run on a PA 1.x system.
creating lib504
No suffix list.
Making all in packages
No suffix list.
Making all in Win32
No suffix list.
Making all in cygwin
No suffix list.
No suffix list.
Making all in Linux
No suffix list.
Making all in RPM
No suffix list.
No suffix list.
Making all in Solaris
No suffix list.
Making all in EPM
No suffix list.
No suffix list.
No suffix list.
$

script done on Tue Mar 11 16:44:53 2003

-------------------------------------------------------
This SF.net email is sponsored by:Crypto Challenge is now open!
Get cracking and register here for some mind boggling fun and
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
Received on 2003-03-12