From 52646494cd19cc501ef48607e1ab43a9d4fee8dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 9 Aug 2008 12:02:37 +0000 Subject: [PATCH] Remove unneeded files. Configure line was: ./configure --prefix=/boot/home/config/wget/ --without-ssl -disable-nls --disable-ipv6 --disable-rpath git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26893 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/bin/network/wget/Makefile | 189 -- src/bin/network/wget/config.log | 3456 ------------------------- src/bin/network/wget/config.status | 1230 --------- src/bin/network/wget/doc/Makefile | 182 -- src/bin/network/wget/po/Makefile | 251 -- src/bin/network/wget/po/Makefile.in | 220 -- src/bin/network/wget/po/POTFILES | 31 - src/bin/network/wget/src/Makefile | 162 -- src/bin/network/wget/stamp-h | 1 - src/bin/network/wget/util/Makefile | 49 - src/bin/network/wget/windows/Makefile | 53 - 11 files changed, 5824 deletions(-) delete mode 100644 src/bin/network/wget/Makefile delete mode 100644 src/bin/network/wget/config.log delete mode 100755 src/bin/network/wget/config.status delete mode 100644 src/bin/network/wget/doc/Makefile delete mode 100644 src/bin/network/wget/po/Makefile delete mode 100644 src/bin/network/wget/po/Makefile.in delete mode 100644 src/bin/network/wget/po/POTFILES delete mode 100644 src/bin/network/wget/src/Makefile delete mode 100644 src/bin/network/wget/stamp-h delete mode 100644 src/bin/network/wget/util/Makefile delete mode 100644 src/bin/network/wget/windows/Makefile diff --git a/src/bin/network/wget/Makefile b/src/bin/network/wget/Makefile deleted file mode 100644 index 613291ad9b..0000000000 --- a/src/bin/network/wget/Makefile +++ /dev/null @@ -1,189 +0,0 @@ -# Makefile for `Wget' utility -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -# In addition, as a special exception, the Free Software Foundation -# gives permission to link the code of its release of Wget with the -# OpenSSL project's "OpenSSL" library (or with modified versions of it -# that use the same license as the "OpenSSL" library), and distribute -# the linked executables. You must obey the GNU General Public License -# in all respects for all of the code used other than "OpenSSL". If you -# modify this file, you may extend this exception to your version of the -# file, but you are not obligated to do so. If you do not wish to do -# so, delete this exception statement from your version. - -# -# Version: 1.10.2 -# - -SHELL = /bin/sh - - -top_builddir = . - -srcdir = . - - -# -# User configuration section -# - -# -# Install variables -# -prefix = /boot/home/config/wget/ -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -infodir = ${prefix}/info -sysconfdir = ${prefix}/etc -mandir = ${prefix}/man -manext = 1 -localedir = $(prefix)/share/locale - -CC = gcc -CFLAGS = -O2 -Wall -Wno-implicit -CPPFLAGS = -DEFS = -DHAVE_CONFIG_H -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\" -LIBS = -lsocket -LDFLAGS = - -# -# End of user configuration section. There should be no need to change -# anything below this line. -# - -DISTNAME = wget-1.10.2 -RM = rm -f - -# These are used for maintenance only, so they are safe without -# special autoconf cruft. -FIND = find -GZIP = gzip -TAR = tar - -# flags passed to recursive makes in subdirectories -MAKEDEFS = CC='$(CC)' CPPFLAGS='$(CPPFLAGS)' DEFS='$(DEFS)' \ -CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' LIBS='$(LIBS)' \ -prefix='$(prefix)' exec_prefix='$(exec_prefix)' bindir='$(bindir)' \ -infodir='$(infodir)' mandir='$(mandir)' manext='$(manext)' - -# subdirectories in the distribution -SUBDIRS = src doc po util windows - -# default target -all: src/config.h Makefile $(SUBDIRS) - -check: all - -$(SUBDIRS): FORCE - cd $@ && $(MAKE) $(MAKEDEFS) - -# install everything -install: install.bin install.info install.wgetrc \ - install.mo install.man - -# install/uninstall the binary -install.bin uninstall.bin: - cd src && $(MAKE) $(MAKEDEFS) $@ - -# install/uninstall the info/man pages -install.info uninstall.info install.man uninstall.man install.wgetrc: - cd doc && $(MAKE) $(MAKEDEFS) $@ - -# Install `.mo' files -install.mo: - cd po && $(MAKE) $(MAKEDEFS) $@ - -# Create configure.bat from configure.bat.in by DOS-ifying the lines. -# This is invoked by `make dist' and deleted by `make realclean' (not -# `make distclean' because we want to preserve it for distribution). -configure.bat: $(srcdir)/configure.bat.in - awk '{ print $$0 ($$0 ~ /\r$$/ ? "" : "\r") }' $< > $@ - -# create tag files for Emacs -TAGS: - cd src && $(MAKE) $@ - -dist: $(srcdir)/configure $(srcdir)/configure.bat DISTFILES - mkdir $(DISTNAME) - for d in `$(FIND) . -type d ! -name CVS -a ! -name RCS -print`; do \ - if [ "$$d" != "." -a "$$d" != "./$(DISTNAME)" ]; then \ - mkdir $(DISTNAME)/$$d; \ - fi; \ - done - for f in `cat DISTFILES`; do \ - ln $(srcdir)/$$f $(DISTNAME)/$$f || \ - { echo copying $$f; cp -p $(srcdir)/$$f $(DISTNAME)/$$f ; } \ - done - (cd $(DISTNAME); $(MAKE) distclean) - $(TAR) chvf - $(DISTNAME) | $(GZIP) -c --best >$(DISTNAME).tar.gz - $(RM) -r $(DISTNAME) - $(RM) DISTFILES - -DISTFILES: FORCE - rm -rf $(DISTNAME) - (cd $(srcdir); find . ! -type d -print) \ - | sed '/\/\(CVS\|RCS\)\//d; /$@/d; /\.tar.*/d; s/^.\///; /^\.$$/d;' \ - | sort | uniq > $@ - -# -# Cleanup dependencies -# - -clean: clean-recursive clean-top -distclean: distclean-recursive distclean-top -realclean: realclean-recursive realclean-top - -clean-top: - $(RM) *~ *.bak $(DISTNAME).tar.gz - -distclean-top: clean-top - $(RM) Makefile config.status config.log config.cache libtool stamp-h - $(RM) -r autom4te.cache - -realclean-top: distclean-top - $(RM) configure configure.bat - -clean-recursive distclean-recursive realclean-recursive: - for subdir in $(SUBDIRS); do \ - target=`echo $@ | sed s/-recursive//`; \ - (cd $$subdir && $(MAKE) $(MAKEDEFS) $$target) || exit 1; \ - done - -# -# Dependencies for maintenance -# - -$(srcdir)/configure: configure.in - cd $(srcdir) && autoconf - -# autoheader might not change config.h.in, so touch a stamp file. -$(srcdir)/src/config.h.in: stamp-h.in -$(srcdir)/stamp-h.in: configure.in - @true; # running autoheader here breaks: cd $(srcdir) && autoheader - echo timestamp > $(srcdir)/stamp-h.in - -src/config.h: stamp-h -stamp-h: src/config.h.in config.status - ./config.status - -Makefile: Makefile.in config.status - ./config.status - -config.status: configure - ./config.status --recheck - -FORCE: diff --git a/src/bin/network/wget/config.log b/src/bin/network/wget/config.log deleted file mode 100644 index 432046a509..0000000000 --- a/src/bin/network/wget/config.log +++ /dev/null @@ -1,3456 +0,0 @@ -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by configure, which was -generated by GNU Autoconf 2.59. Invocation command line was - - $ ./configure --prefix=/boot/home/config/wget/ --without-ssl -disable-nls --disable-ipv6 --disable-rpath - -## --------- ## -## Platform. ## -## --------- ## - -hostname = zon -uname -m = BePC -uname -r = 5.1 -uname -s = BeOS -uname -v = 1000009 - -/usr/bin/uname -p = unknown -/bin/uname -X = unknown - -/bin/arch = unknown -/usr/bin/arch -k = unknown -/usr/convex/getsysinfo = unknown -hostinfo = unknown -/bin/machine = unknown -/usr/bin/oslevel = unknown -/bin/universe = unknown - -PATH: . -PATH: /boot/home/config/bin -PATH: /bin -PATH: /boot/apps -PATH: /boot/preferences -PATH: /boot/beos/apps -PATH: /boot/beos/preferences -PATH: /boot/develop/bin -PATH: /boot/apps/office/PostgreSQL/bin -PATH: /boot/home/source/OpenTracker/scripts - - -## ----------- ## -## Core tests. ## -## ----------- ## - -configure:1421: configuring for GNU Wget 1.10.2 -configure:1458: checking build system type -configure:1476: result: i586-pc-beos -configure:1484: checking host system type -configure:1498: result: i586-pc-beos -configure:1578: checking whether make sets $(MAKE) -configure:1598: result: yes -configure:1621: checking for a BSD-compatible install -configure:1676: result: /bin/install -c -configure:1738: checking for gcc -configure:1754: found /boot/develop/bin/gcc -configure:1764: result: gcc -configure:2008: checking for C compiler version -configure:2011: gcc --version &5 -2.95.3-beos-060710 -configure:2014: $? = 0 -configure:2016: gcc -v &5 -using priority 5 -Reading specs from /boot/develop/tools/gnupro/lib/gcc-lib/i586-pc-beos/2.95.3-beos-060710/specs -gcc version 2.95.3-beos-060710 -configure:2019: $? = 0 -configure:2021: gcc -V &5 -gcc: argument to `-V' is missing -configure:2024: $? = 1 -configure:2047: checking for C compiler default output file name -configure:2050: gcc conftest.c >&5 -configure:2053: $? = 0 -configure:2099: result: conftest -configure:2104: checking whether the C compiler works -configure:2110: ./conftest -configure:2113: $? = 0 -configure:2130: result: yes -configure:2137: checking whether we are cross compiling -configure:2139: result: no -configure:2142: checking for suffix of executables -configure:2144: gcc -o conftest conftest.c >&5 -configure:2147: $? = 0 -configure:2172: result: -configure:2178: checking for suffix of object files -configure:2199: gcc -c conftest.c >&5 -configure:2202: $? = 0 -configure:2224: result: o -configure:2228: checking whether we are using the GNU C compiler -configure:2252: gcc -c conftest.c >&5 -configure:2258: $? = 0 -configure:2262: test -z - || test ! -s conftest.err -configure:2265: $? = 0 -configure:2268: test -s conftest.o -configure:2271: $? = 0 -configure:2284: result: yes -configure:2290: checking whether gcc accepts -g -configure:2311: gcc -c -g conftest.c >&5 -configure:2317: $? = 0 -configure:2321: test -z - || test ! -s conftest.err -configure:2324: $? = 0 -configure:2327: test -s conftest.o -configure:2330: $? = 0 -configure:2341: result: yes -configure:2358: checking for gcc option to accept ANSI C -configure:2428: gcc -c conftest.c >&5 -configure:2434: $? = 0 -configure:2438: test -z - || test ! -s conftest.err -configure:2441: $? = 0 -configure:2444: test -s conftest.o -configure:2447: $? = 0 -configure:2465: result: none needed -configure:2483: gcc -c conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:2: parse error before `me' -configure:2489: $? = 1 -configure: failed program was: -| #ifndef __cplusplus -| choke me -| #endif -configure:2628: checking how to run the C preprocessor -configure:2663: gcc -E conftest.c -configure:2669: $? = 0 -configure:2701: gcc -E conftest.c -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:13: ac_nonexistent.h: No such file or directory -configure:2707: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| /* end confdefs.h. */ -| #include -configure:2746: result: gcc -E -configure:2770: gcc -E conftest.c -configure:2776: $? = 0 -configure:2808: gcc -E conftest.c -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:13: ac_nonexistent.h: No such file or directory -configure:2814: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| /* end confdefs.h. */ -| #include -configure:2858: checking for egrep -configure:2868: result: grep -E -configure:2874: checking for AIX -configure:2896: result: no -configure:2903: checking for gcc option to accept ANSI C -configure:2945: gcc -c conftest.c >&5 -configure:2951: $? = 0 -configure:2955: test -z - || test ! -s conftest.err -configure:2958: $? = 0 -configure:2961: test -s conftest.o -configure:2964: $? = 0 -configure:2978: result: -configure:3004: checking for an ANSI C-conforming const -configure:3071: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:40: warning: unused variable `s' -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:60: warning: unused variable `foo' -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:27: warning: unused variable `zero' -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:21: warning: unused variable `x' -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:39: warning: `t' might be used uninitialized in this function -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: warning: `b' might be used uninitialized in this function -configure:3077: $? = 0 -configure:3081: test -z - || test ! -s conftest.err -configure:3084: $? = 0 -configure:3087: test -s conftest.o -configure:3090: $? = 0 -configure:3101: result: yes -configure:3111: checking for inline -configure:3132: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3138: $? = 0 -configure:3142: test -z - || test ! -s conftest.err -configure:3145: $? = 0 -configure:3148: test -s conftest.o -configure:3151: $? = 0 -configure:3163: result: inline -configure:3182: checking for working volatile -configure:3205: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:19: warning: unused variable `y' -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:18: warning: unused variable `x' -configure:3211: $? = 0 -configure:3215: test -z - || test ! -s conftest.err -configure:3218: $? = 0 -configure:3221: test -s conftest.o -configure:3224: $? = 0 -configure:3235: result: yes -configure:3245: checking whether byte ordering is bigendian -configure:3272: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:20: `bogus' undeclared (first use in this function) -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:20: (Each undeclared identifier is reported only once -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:20: for each function it appears in.) -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:20: parse error before `endian' -configure:3278: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| /* end confdefs.h. */ -| #include -| #include -| -| int -| main () -| { -| #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN -| bogus endian macros -| #endif -| -| ; -| return 0; -| } -configure:3432: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3435: $? = 0 -configure:3437: ./conftest -configure:3440: $? = 0 -configure:3456: result: no -configure:3475: checking for function prototypes -configure:3478: result: yes -configure:3507: checking for ANSI C header files -configure:3532: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3538: $? = 0 -configure:3542: test -z - || test ! -s conftest.err -configure:3545: $? = 0 -configure:3548: test -s conftest.o -configure:3551: $? = 0 -configure:3637: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3640: $? = 0 -configure:3642: ./conftest -configure:3645: $? = 0 -configure:3660: result: yes -configure:3684: checking for sys/types.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for sys/stat.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for stdlib.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for string.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for memory.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for strings.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for inttypes.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3684: checking for stdint.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -In file included from /boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:58: -/boot/develop/headers/posix/stdint.h:16: warning: redefinition of `int8_t' -/boot/develop/headers/posix/inttypes.h:8: warning: `int8_t' previously declared here -/boot/develop/headers/posix/stdint.h:17: warning: redefinition of `uint8_t' -/boot/develop/headers/posix/inttypes.h:18: warning: `uint8_t' previously declared here -/boot/develop/headers/posix/stdint.h:23: warning: redefinition of `int16_t' -/boot/develop/headers/posix/inttypes.h:9: warning: `int16_t' previously declared here -/boot/develop/headers/posix/stdint.h:24: warning: redefinition of `uint16_t' -/boot/develop/headers/posix/inttypes.h:19: warning: `uint16_t' previously declared here -/boot/develop/headers/posix/stdint.h:30: conflicting types for `int32_t' -/boot/develop/headers/posix/inttypes.h:10: previous declaration of `int32_t' -/boot/develop/headers/posix/stdint.h:31: conflicting types for `uint32_t' -/boot/develop/headers/posix/inttypes.h:20: previous declaration of `uint32_t' -/boot/develop/headers/posix/stdint.h:37: warning: redefinition of `int64_t' -/boot/develop/headers/posix/inttypes.h:11: warning: `int64_t' previously declared here -/boot/develop/headers/posix/stdint.h:38: warning: redefinition of `uint64_t' -/boot/develop/headers/posix/inttypes.h:21: warning: `uint64_t' previously declared here -/boot/develop/headers/posix/stdint.h:109: conflicting types for `intptr_t' -/boot/develop/headers/posix/inttypes.h:23: previous declaration of `intptr_t' -/boot/develop/headers/posix/stdint.h:110: conflicting types for `uintptr_t' -/boot/develop/headers/posix/inttypes.h:24: previous declaration of `uintptr_t' -/boot/develop/headers/posix/stdint.h:119: warning: redefinition of `intmax_t' -/boot/develop/headers/posix/inttypes.h:27: warning: `intmax_t' previously declared here -/boot/develop/headers/posix/stdint.h:120: warning: redefinition of `uintmax_t' -/boot/develop/headers/posix/inttypes.h:28: warning: `uintmax_t' previously declared here -/boot/develop/headers/posix/stdint.h:125: warning: redefinition of `u_int8_t' -/boot/develop/headers/posix/inttypes.h:12: warning: `u_int8_t' previously declared here -/boot/develop/headers/posix/stdint.h:126: warning: redefinition of `u_int16_t' -/boot/develop/headers/posix/inttypes.h:13: warning: `u_int16_t' previously declared here -/boot/develop/headers/posix/stdint.h:127: conflicting types for `u_int32_t' -/boot/develop/headers/posix/inttypes.h:14: previous declaration of `u_int32_t' -/boot/develop/headers/posix/stdint.h:128: warning: redefinition of `u_int64_t' -/boot/develop/headers/posix/inttypes.h:15: warning: `u_int64_t' previously declared here -configure:3706: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| -| #include -configure:3730: result: no -configure:3684: checking for unistd.h -configure:3700: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3706: $? = 0 -configure:3710: test -z - || test ! -s conftest.err -configure:3713: $? = 0 -configure:3716: test -s conftest.o -configure:3719: $? = 0 -configure:3730: result: yes -configure:3748: checking for sys/types.h -configure:3753: result: yes -configure:3748: checking for sys/stat.h -configure:3753: result: yes -configure:3903: checking for string.h -configure:3908: result: yes -configure:3903: checking for strings.h -configure:3908: result: yes -configure:3912: checking stdarg.h usability -configure:3924: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3930: $? = 0 -configure:3934: test -z - || test ! -s conftest.err -configure:3937: $? = 0 -configure:3940: test -s conftest.o -configure:3943: $? = 0 -configure:3953: result: yes -configure:3957: checking stdarg.h presence -configure:3967: gcc -E conftest.c -configure:3973: $? = 0 -configure:3993: result: yes -configure:4028: checking for stdarg.h -configure:4035: result: yes -configure:3912: checking limits.h usability -configure:3924: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3930: $? = 0 -configure:3934: test -z - || test ! -s conftest.err -configure:3937: $? = 0 -configure:3940: test -s conftest.o -configure:3943: $? = 0 -configure:3953: result: yes -configure:3957: checking limits.h presence -configure:3967: gcc -E conftest.c -configure:3973: $? = 0 -configure:3993: result: yes -configure:4028: checking for limits.h -configure:4035: result: yes -configure:3903: checking for unistd.h -configure:3908: result: yes -configure:3912: checking sys/time.h usability -configure:3924: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:3930: $? = 0 -configure:3934: test -z - || test ! -s conftest.err -configure:3937: $? = 0 -configure:3940: test -s conftest.o -configure:3943: $? = 0 -configure:3953: result: yes -configure:3957: checking sys/time.h presence -configure:3967: gcc -E conftest.c -configure:3973: $? = 0 -configure:3993: result: yes -configure:4028: checking for sys/time.h -configure:4035: result: yes -configure:4066: checking termios.h usability -configure:4078: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4084: $? = 0 -configure:4088: test -z - || test ! -s conftest.err -configure:4091: $? = 0 -configure:4094: test -s conftest.o -configure:4097: $? = 0 -configure:4107: result: yes -configure:4111: checking termios.h presence -configure:4121: gcc -E conftest.c -configure:4127: $? = 0 -configure:4147: result: yes -configure:4182: checking for termios.h -configure:4189: result: yes -configure:4066: checking sys/ioctl.h usability -configure:4078: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4084: $? = 0 -configure:4088: test -z - || test ! -s conftest.err -configure:4091: $? = 0 -configure:4094: test -s conftest.o -configure:4097: $? = 0 -configure:4107: result: yes -configure:4111: checking sys/ioctl.h presence -configure:4121: gcc -E conftest.c -configure:4127: $? = 0 -configure:4147: result: yes -configure:4182: checking for sys/ioctl.h -configure:4189: result: yes -configure:4066: checking sys/select.h usability -configure:4078: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4084: $? = 0 -configure:4088: test -z - || test ! -s conftest.err -configure:4091: $? = 0 -configure:4094: test -s conftest.o -configure:4097: $? = 0 -configure:4107: result: yes -configure:4111: checking sys/select.h presence -configure:4121: gcc -E conftest.c -configure:4127: $? = 0 -configure:4147: result: yes -configure:4182: checking for sys/select.h -configure:4189: result: yes -configure:4066: checking utime.h usability -configure:4078: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4084: $? = 0 -configure:4088: test -z - || test ! -s conftest.err -configure:4091: $? = 0 -configure:4094: test -s conftest.o -configure:4097: $? = 0 -configure:4107: result: yes -configure:4111: checking utime.h presence -configure:4121: gcc -E conftest.c -configure:4127: $? = 0 -configure:4147: result: yes -configure:4182: checking for utime.h -configure:4189: result: yes -configure:4066: checking sys/utime.h usability -configure:4078: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:70: sys/utime.h: No such file or directory -configure:4084: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| #include -configure:4107: result: no -configure:4111: checking sys/utime.h presence -configure:4121: gcc -E conftest.c -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:36: sys/utime.h: No such file or directory -configure:4127: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| /* end confdefs.h. */ -| #include -configure:4147: result: no -configure:4182: checking for sys/utime.h -configure:4189: result: no -configure:4211: checking for stdint.h -configure:4216: result: no -configure:4211: checking for inttypes.h -configure:4216: result: yes -configure:4220: checking signal.h usability -configure:4232: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4238: $? = 0 -configure:4242: test -z - || test ! -s conftest.err -configure:4245: $? = 0 -configure:4248: test -s conftest.o -configure:4251: $? = 0 -configure:4261: result: yes -configure:4265: checking signal.h presence -configure:4275: gcc -E conftest.c -configure:4281: $? = 0 -configure:4301: result: yes -configure:4336: checking for signal.h -configure:4343: result: yes -configure:4220: checking setjmp.h usability -configure:4232: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4238: $? = 0 -configure:4242: test -z - || test ! -s conftest.err -configure:4245: $? = 0 -configure:4248: test -s conftest.o -configure:4251: $? = 0 -configure:4261: result: yes -configure:4265: checking setjmp.h presence -configure:4275: gcc -E conftest.c -configure:4281: $? = 0 -configure:4301: result: yes -configure:4336: checking for setjmp.h -configure:4343: result: yes -configure:4220: checking pwd.h usability -configure:4232: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4238: $? = 0 -configure:4242: test -z - || test ! -s conftest.err -configure:4245: $? = 0 -configure:4248: test -s conftest.o -configure:4251: $? = 0 -configure:4261: result: yes -configure:4265: checking pwd.h presence -configure:4275: gcc -E conftest.c -configure:4281: $? = 0 -configure:4301: result: yes -configure:4336: checking for pwd.h -configure:4343: result: yes -configure:4356: checking whether time.h and sys/time.h may both be included -configure:4381: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4387: $? = 0 -configure:4391: test -z - || test ! -s conftest.err -configure:4394: $? = 0 -configure:4397: test -s conftest.o -configure:4400: $? = 0 -configure:4411: result: yes -configure:4422: checking for short -configure:4446: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4452: $? = 0 -configure:4456: test -z - || test ! -s conftest.err -configure:4459: $? = 0 -configure:4462: test -s conftest.o -configure:4465: $? = 0 -configure:4476: result: yes -configure:4479: checking size of short -configure:4798: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4801: $? = 0 -configure:4803: ./conftest -configure:4806: $? = 0 -configure:4829: result: 2 -configure:4836: checking for int -configure:4860: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:4866: $? = 0 -configure:4870: test -z - || test ! -s conftest.err -configure:4873: $? = 0 -configure:4876: test -s conftest.o -configure:4879: $? = 0 -configure:4890: result: yes -configure:4893: checking size of int -configure:5212: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:5215: $? = 0 -configure:5217: ./conftest -configure:5220: $? = 0 -configure:5243: result: 4 -configure:5250: checking for long -configure:5274: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:5280: $? = 0 -configure:5284: test -z - || test ! -s conftest.err -configure:5287: $? = 0 -configure:5290: test -s conftest.o -configure:5293: $? = 0 -configure:5304: result: yes -configure:5307: checking size of long -configure:5626: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:5629: $? = 0 -configure:5631: ./conftest -configure:5634: $? = 0 -configure:5657: result: 4 -configure:5664: checking for long long -configure:5688: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:5694: $? = 0 -configure:5698: test -z - || test ! -s conftest.err -configure:5701: $? = 0 -configure:5704: test -s conftest.o -configure:5707: $? = 0 -configure:5718: result: yes -configure:5721: checking size of long long -configure:6040: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6043: $? = 0 -configure:6045: ./conftest -configure:6048: $? = 0 -configure:6071: result: 8 -configure:6086: checking for special C compiler options needed for large files -configure:6185: result: no -configure:6191: checking for _FILE_OFFSET_BITS value needed for large files -configure:6222: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6228: $? = 0 -configure:6232: test -z - || test ! -s conftest.err -configure:6235: $? = 0 -configure:6238: test -s conftest.o -configure:6241: $? = 0 -configure:6306: result: no -configure:6316: checking for _LARGE_FILES value needed for large files -configure:6347: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6353: $? = 0 -configure:6357: test -z - || test ! -s conftest.err -configure:6360: $? = 0 -configure:6363: test -s conftest.o -configure:6366: $? = 0 -configure:6431: result: no -configure:6443: checking for off_t -configure:6467: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6473: $? = 0 -configure:6477: test -z - || test ! -s conftest.err -configure:6480: $? = 0 -configure:6483: test -s conftest.o -configure:6486: $? = 0 -configure:6497: result: yes -configure:6500: checking size of off_t -configure:6819: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6822: $? = 0 -configure:6824: ./conftest -configure:6827: $? = 0 -configure:6850: result: 8 -configure:6858: checking for size_t -configure:6882: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6888: $? = 0 -configure:6892: test -z - || test ! -s conftest.err -configure:6895: $? = 0 -configure:6898: test -s conftest.o -configure:6901: $? = 0 -configure:6912: result: yes -configure:6924: checking for pid_t -configure:6948: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:6954: $? = 0 -configure:6958: test -z - || test ! -s conftest.err -configure:6961: $? = 0 -configure:6964: test -s conftest.o -configure:6967: $? = 0 -configure:6978: result: yes -configure:6990: checking for uint32_t -configure:7014: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:7020: $? = 0 -configure:7024: test -z - || test ! -s conftest.err -configure:7027: $? = 0 -configure:7030: test -s conftest.o -configure:7033: $? = 0 -configure:7044: result: yes -configure:7055: checking return type of signal handlers -configure:7086: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:61: warning: unused variable `i' -configure:7092: $? = 0 -configure:7096: test -z - || test ! -s conftest.err -configure:7099: $? = 0 -configure:7102: test -s conftest.o -configure:7105: $? = 0 -configure:7116: result: void -configure:7124: checking for sig_atomic_t -configure:7158: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:7164: $? = 0 -configure:7168: test -z - || test ! -s conftest.err -configure:7171: $? = 0 -configure:7174: test -s conftest.o -configure:7177: $? = 0 -configure:7188: result: yes -configure:7202: checking for working alloca.h -configure:7223: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:53: warning: unused variable `p' -configure:7229: $? = 0 -configure:7233: test -z - || test ! -s conftest.err -configure:7236: $? = 0 -configure:7239: test -s conftest -configure:7242: $? = 0 -configure:7254: result: yes -configure:7264: checking for alloca -configure:7305: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:74: warning: unused variable `p' -configure:7311: $? = 0 -configure:7315: test -z - || test ! -s conftest.err -configure:7318: $? = 0 -configure:7321: test -s conftest -configure:7324: $? = 0 -configure:7336: result: yes -configure:7565: checking for stdlib.h -configure:7570: result: yes -configure:7565: checking for unistd.h -configure:7570: result: yes -configure:7714: checking for getpagesize -configure:7771: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/cc7gnKeJ.o(.text+0x18): In function `main': -: undefined reference to `getpagesize' -/tmp/cc7gnKeJ.o(.data+0x0): undefined reference to `getpagesize' -collect2: ld returned 1 exit status -configure:7777: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| /* Define getpagesize to an innocuous variant, in case declares getpagesize. -| For example, HP-UX 11i declares gettimeofday. */ -| #define getpagesize innocuous_getpagesize -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char getpagesize (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef getpagesize -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char getpagesize (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_getpagesize) || defined (__stub___getpagesize) -| choke me -| #else -| char (*f) () = getpagesize; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != getpagesize; -| ; -| return 0; -| } -configure:7802: result: no -configure:7812: checking for working mmap -configure:7954: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:113: sys/mman.h: No such file or directory -configure:7957: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| /* malloc might have been renamed as rpl_malloc. */ -| #undef malloc -| -| /* Thanks to Mike Haertel and Jim Avera for this test. -| Here is a matrix of mmap possibilities: -| mmap private not fixed -| mmap private fixed at somewhere currently unmapped -| mmap private fixed at somewhere already mapped -| mmap shared not fixed -| mmap shared fixed at somewhere currently unmapped -| mmap shared fixed at somewhere already mapped -| For private mappings, we should verify that changes cannot be read() -| back from the file, nor mmap's back from the file at a different -| address. (There have been systems where private was not correctly -| implemented like the infamous i386 svr4.0, and systems where the -| VM page cache was not coherent with the file system buffer cache -| like early versions of FreeBSD and possibly contemporary NetBSD.) -| For shared mappings, we should conversely verify that changes get -| propagated back to all the places they're supposed to be. -| -| Grep wants private fixed already mapped. -| The main things grep needs to know about mmap are: -| * does it exist and is it safe to write into the mmap'd area -| * how to use it (BSD variants) */ -| -| #include -| #include -| -| #if !STDC_HEADERS && !HAVE_STDLIB_H -| char *malloc (); -| #endif -| -| /* This mess was copied from the GNU getpagesize.h. */ -| #if !HAVE_GETPAGESIZE -| /* Assume that all systems that can run configure have sys/param.h. */ -| # if !HAVE_SYS_PARAM_H -| # define HAVE_SYS_PARAM_H 1 -| # endif -| -| # ifdef _SC_PAGESIZE -| # define getpagesize() sysconf(_SC_PAGESIZE) -| # else /* no _SC_PAGESIZE */ -| # if HAVE_SYS_PARAM_H -| # include -| # ifdef EXEC_PAGESIZE -| # define getpagesize() EXEC_PAGESIZE -| # else /* no EXEC_PAGESIZE */ -| # ifdef NBPG -| # define getpagesize() NBPG * CLSIZE -| # ifndef CLSIZE -| # define CLSIZE 1 -| # endif /* no CLSIZE */ -| # else /* no NBPG */ -| # ifdef NBPC -| # define getpagesize() NBPC -| # else /* no NBPC */ -| # ifdef PAGESIZE -| # define getpagesize() PAGESIZE -| # endif /* PAGESIZE */ -| # endif /* no NBPC */ -| # endif /* no NBPG */ -| # endif /* no EXEC_PAGESIZE */ -| # else /* no HAVE_SYS_PARAM_H */ -| # define getpagesize() 8192 /* punt totally */ -| # endif /* no HAVE_SYS_PARAM_H */ -| # endif /* no _SC_PAGESIZE */ -| -| #endif /* no HAVE_GETPAGESIZE */ -| -| int -| main () -| { -| char *data, *data2, *data3; -| int i, pagesize; -| int fd; -| -| pagesize = getpagesize (); -| -| /* First, make a file with some known garbage in it. */ -| data = (char *) malloc (pagesize); -| if (!data) -| exit (1); -| for (i = 0; i < pagesize; ++i) -| *(data + i) = rand (); -| umask (0); -| fd = creat ("conftest.mmap", 0600); -| if (fd < 0) -| exit (1); -| if (write (fd, data, pagesize) != pagesize) -| exit (1); -| close (fd); -| -| /* Next, try to mmap the file at a fixed address which already has -| something else allocated at it. If we can, also make sure that -| we see the same garbage. */ -| fd = open ("conftest.mmap", O_RDWR); -| if (fd < 0) -| exit (1); -| data2 = (char *) malloc (2 * pagesize); -| if (!data2) -| exit (1); -| data2 += (pagesize - ((long) data2 & (pagesize - 1))) & (pagesize - 1); -| if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, -| MAP_PRIVATE | MAP_FIXED, fd, 0L)) -| exit (1); -| for (i = 0; i < pagesize; ++i) -| if (*(data + i) != *(data2 + i)) -| exit (1); -| -| /* Finally, make sure that changes to the mapped area do not -| percolate back to the file as seen by read(). (This is a bug on -| some variants of i386 svr4.0.) */ -| for (i = 0; i < pagesize; ++i) -| *(data2 + i) = *(data2 + i) + 1; -| data3 = (char *) malloc (pagesize); -| if (!data3) -| exit (1); -| if (read (fd, data3, pagesize) != pagesize) -| exit (1); -| for (i = 0; i < pagesize; ++i) -| if (*(data + i) != *(data3 + i)) -| exit (1); -| close (fd); -| exit (0); -| } -configure:7976: result: no -configure:7987: checking for _LARGEFILE_SOURCE value needed for large files -configure:8010: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: `fseeko' undeclared (first use in this function) -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: (Each undeclared identifier is reported only once -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: for each function it appears in.) -configure:8016: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| int -| main () -| { -| return !fseeko; -| ; -| return 0; -| } -configure:8055: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:58: `fseeko' undeclared (first use in this function) -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:58: (Each undeclared identifier is reported only once -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:58: for each function it appears in.) -configure:8061: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #define _LARGEFILE_SOURCE 1 -| #include -| int -| main () -| { -| return !fseeko; -| ; -| return 0; -| } -configure:8086: result: no -configure:8100: checking for fseeko -configure:8121: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c: In function `main': -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: `fseeko' undeclared (first use in this function) -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: (Each undeclared identifier is reported only once -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: for each function it appears in.) -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:57: `fseeko' used prior to declaration -configure:8127: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| int -| main () -| { -| return fseeko && fseeko (stdin, 0, 0); -| ; -| return 0; -| } -configure:8152: result: no -configure:8171: checking for strdup -configure:8228: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8234: $? = 0 -configure:8238: test -z - || test ! -s conftest.err -configure:8241: $? = 0 -configure:8244: test -s conftest -configure:8247: $? = 0 -configure:8259: result: yes -configure:8171: checking for strstr -configure:8228: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8234: $? = 0 -configure:8238: test -z - || test ! -s conftest.err -configure:8241: $? = 0 -configure:8244: test -s conftest -configure:8247: $? = 0 -configure:8259: result: yes -configure:8171: checking for strcasecmp -configure:8228: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8234: $? = 0 -configure:8238: test -z - || test ! -s conftest.err -configure:8241: $? = 0 -configure:8244: test -s conftest -configure:8247: $? = 0 -configure:8259: result: yes -configure:8171: checking for strncasecmp -configure:8228: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8234: $? = 0 -configure:8238: test -z - || test ! -s conftest.err -configure:8241: $? = 0 -configure:8244: test -s conftest -configure:8247: $? = 0 -configure:8259: result: yes -configure:8171: checking for strpbrk -configure:8228: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8234: $? = 0 -configure:8238: test -z - || test ! -s conftest.err -configure:8241: $? = 0 -configure:8244: test -s conftest -configure:8247: $? = 0 -configure:8259: result: yes -configure:8171: checking for memmove -configure:8228: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8234: $? = 0 -configure:8238: test -z - || test ! -s conftest.err -configure:8241: $? = 0 -configure:8244: test -s conftest -configure:8247: $? = 0 -configure:8259: result: yes -configure:8279: checking for gettimeofday -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8342: $? = 0 -configure:8346: test -z - || test ! -s conftest.err -configure:8349: $? = 0 -configure:8352: test -s conftest -configure:8355: $? = 0 -configure:8367: result: yes -configure:8279: checking for mktime -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8342: $? = 0 -configure:8346: test -z - || test ! -s conftest.err -configure:8349: $? = 0 -configure:8352: test -s conftest -configure:8355: $? = 0 -configure:8367: result: yes -configure:8279: checking for strptime -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccbNlM7w.o(.text+0x18): In function `main': -: undefined reference to `strptime' -/tmp/ccbNlM7w.o(.data+0x0): undefined reference to `strptime' -collect2: ld returned 1 exit status -configure:8342: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| /* end confdefs.h. */ -| /* Define strptime to an innocuous variant, in case declares strptime. -| For example, HP-UX 11i declares gettimeofday. */ -| #define strptime innocuous_strptime -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char strptime (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef strptime -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char strptime (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_strptime) || defined (__stub___strptime) -| choke me -| #else -| char (*f) () = strptime; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != strptime; -| ; -| return 0; -| } -configure:8367: result: no -configure:8279: checking for timegm -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccqIEKE8.o(.text+0x18): In function `main': -: undefined reference to `timegm' -/tmp/ccqIEKE8.o(.data+0x0): undefined reference to `timegm' -collect2: ld returned 1 exit status -configure:8342: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| /* end confdefs.h. */ -| /* Define timegm to an innocuous variant, in case declares timegm. -| For example, HP-UX 11i declares gettimeofday. */ -| #define timegm innocuous_timegm -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char timegm (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef timegm -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char timegm (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_timegm) || defined (__stub___timegm) -| choke me -| #else -| char (*f) () = timegm; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != timegm; -| ; -| return 0; -| } -configure:8367: result: no -configure:8279: checking for strerror -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8342: $? = 0 -configure:8346: test -z - || test ! -s conftest.err -configure:8349: $? = 0 -configure:8352: test -s conftest -configure:8355: $? = 0 -configure:8367: result: yes -configure:8279: checking for snprintf -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8342: $? = 0 -configure:8346: test -z - || test ! -s conftest.err -configure:8349: $? = 0 -configure:8352: test -s conftest -configure:8355: $? = 0 -configure:8367: result: yes -configure:8279: checking for vsnprintf -configure:8336: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8342: $? = 0 -configure:8346: test -z - || test ! -s conftest.err -configure:8349: $? = 0 -configure:8352: test -s conftest -configure:8355: $? = 0 -configure:8367: result: yes -configure:8386: checking for usleep -configure:8443: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/cc3jCCjm.o(.text+0x18): In function `main': -: undefined reference to `usleep' -/tmp/cc3jCCjm.o(.data+0x0): undefined reference to `usleep' -collect2: ld returned 1 exit status -configure:8449: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| /* end confdefs.h. */ -| /* Define usleep to an innocuous variant, in case declares usleep. -| For example, HP-UX 11i declares gettimeofday. */ -| #define usleep innocuous_usleep -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char usleep (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef usleep -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char usleep (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_usleep) || defined (__stub___usleep) -| choke me -| #else -| char (*f) () = usleep; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != usleep; -| ; -| return 0; -| } -configure:8474: result: no -configure:8386: checking for select -configure:8443: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8449: $? = 0 -configure:8453: test -z - || test ! -s conftest.err -configure:8456: $? = 0 -configure:8459: test -s conftest -configure:8462: $? = 0 -configure:8474: result: yes -configure:8386: checking for ftello -configure:8443: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8449: $? = 0 -configure:8453: test -z - || test ! -s conftest.err -configure:8456: $? = 0 -configure:8459: test -s conftest -configure:8462: $? = 0 -configure:8474: result: yes -configure:8386: checking for sigblock -configure:8443: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccC7PYQD.o(.text+0x18): In function `main': -: undefined reference to `sigblock' -/tmp/ccC7PYQD.o(.data+0x0): undefined reference to `sigblock' -collect2: ld returned 1 exit status -configure:8449: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| /* end confdefs.h. */ -| /* Define sigblock to an innocuous variant, in case declares sigblock. -| For example, HP-UX 11i declares gettimeofday. */ -| #define sigblock innocuous_sigblock -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char sigblock (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef sigblock -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char sigblock (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_sigblock) || defined (__stub___sigblock) -| choke me -| #else -| char (*f) () = sigblock; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != sigblock; -| ; -| return 0; -| } -configure:8474: result: no -configure:8386: checking for sigsetjmp -configure:8443: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8449: $? = 0 -configure:8453: test -z - || test ! -s conftest.err -configure:8456: $? = 0 -configure:8459: test -s conftest -configure:8462: $? = 0 -configure:8474: result: yes -configure:8386: checking for signal -configure:8443: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8449: $? = 0 -configure:8453: test -z - || test ! -s conftest.err -configure:8456: $? = 0 -configure:8459: test -s conftest -configure:8462: $? = 0 -configure:8474: result: yes -configure:8492: checking for symlink -configure:8549: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8555: $? = 0 -configure:8559: test -z - || test ! -s conftest.err -configure:8562: $? = 0 -configure:8565: test -s conftest -configure:8568: $? = 0 -configure:8580: result: yes -configure:8492: checking for access -configure:8549: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8555: $? = 0 -configure:8559: test -z - || test ! -s conftest.err -configure:8562: $? = 0 -configure:8565: test -s conftest -configure:8568: $? = 0 -configure:8580: result: yes -configure:8492: checking for isatty -configure:8549: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8555: $? = 0 -configure:8559: test -z - || test ! -s conftest.err -configure:8562: $? = 0 -configure:8565: test -s conftest -configure:8568: $? = 0 -configure:8580: result: yes -configure:8492: checking for strtoll -configure:8549: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8555: $? = 0 -configure:8559: test -z - || test ! -s conftest.err -configure:8562: $? = 0 -configure:8565: test -s conftest -configure:8568: $? = 0 -configure:8580: result: yes -configure:8492: checking for strtoimax -configure:8549: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8555: $? = 0 -configure:8559: test -z - || test ! -s conftest.err -configure:8562: $? = 0 -configure:8565: test -s conftest -configure:8568: $? = 0 -configure:8580: result: yes -configure:8592: checking for struct utimbuf -configure:8625: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8631: $? = 0 -configure:8635: test -z - || test ! -s conftest.err -configure:8638: $? = 0 -configure:8641: test -s conftest.o -configure:8644: $? = 0 -configure:8655: result: yes -configure:8668: checking for socklen_t -configure:8678: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:4: parse error before `x' -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:4: warning: data definition has no type or storage class -configure:8684: $? = 1 -configure: failed program was: -| -| #include -| #include -| socklen_t x; -| -configure:8714: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -/boot/home/develop/haiku/haiku/src/bin/network/wget/conftest.c:4: conflicting types for `accept' -/boot/develop/headers/be/bone/sys/socket.h:130: previous declaration of `accept' -configure:8720: $? = 1 -configure: failed program was: -| -| #include -| #include -| int accept (int, struct sockaddr *, size_t *); -| -configure:8749: result: int -configure:8764: checking for working fnmatch.h -configure:8771: gcc -c -O2 -Wall -Wno-implicit conftest.c >&5 -configure:8777: $? = 0 -configure:8781: test -z - || test ! -s conftest.err -configure:8784: $? = 0 -configure:8787: test -s conftest.o -configure:8790: $? = 0 -configure:8793: result: yes -configure:8817: checking for nanosleep -configure:8874: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccOgTgOg.o(.text+0x18): In function `main': -: undefined reference to `nanosleep' -/tmp/ccOgTgOg.o(.data+0x0): undefined reference to `nanosleep' -collect2: ld returned 1 exit status -configure:8880: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| /* Define nanosleep to an innocuous variant, in case declares nanosleep. -| For example, HP-UX 11i declares gettimeofday. */ -| #define nanosleep innocuous_nanosleep -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char nanosleep (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef nanosleep -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char nanosleep (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_nanosleep) || defined (__stub___nanosleep) -| choke me -| #else -| char (*f) () = nanosleep; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != nanosleep; -| ; -| return 0; -| } -configure:8905: result: no -configure:8914: checking for nanosleep in -lrt -configure:8944: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lrt >&5 -/boot/develop/tools/gnupro/i586-pc-beos/bin/ld: cannot find -lrt -collect2: ld returned 1 exit status -configure:8950: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char nanosleep (); -| int -| main () -| { -| nanosleep (); -| ; -| return 0; -| } -configure:8976: result: no -configure:8989: checking for nanosleep in -lposix4 -configure:9019: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lposix4 >&5 -/boot/develop/tools/gnupro/i586-pc-beos/bin/ld: cannot find -lposix4 -collect2: ld returned 1 exit status -configure:9025: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char nanosleep (); -| int -| main () -| { -| nanosleep (); -| ; -| return 0; -| } -configure:9051: result: no -configure:9077: checking for clock_gettime -configure:9134: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccBb0qgV.o(.text+0x18): In function `main': -: undefined reference to `clock_gettime' -/tmp/ccBb0qgV.o(.data+0x0): undefined reference to `clock_gettime' -collect2: ld returned 1 exit status -configure:9140: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| /* Define clock_gettime to an innocuous variant, in case declares clock_gettime. -| For example, HP-UX 11i declares gettimeofday. */ -| #define clock_gettime innocuous_clock_gettime -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char clock_gettime (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef clock_gettime -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char clock_gettime (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_clock_gettime) || defined (__stub___clock_gettime) -| choke me -| #else -| char (*f) () = clock_gettime; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != clock_gettime; -| ; -| return 0; -| } -configure:9165: result: no -configure:9175: checking for clock_gettime in -lrt -configure:9205: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lrt >&5 -/boot/develop/tools/gnupro/i586-pc-beos/bin/ld: cannot find -lrt -collect2: ld returned 1 exit status -configure:9211: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char clock_gettime (); -| int -| main () -| { -| clock_gettime (); -| ; -| return 0; -| } -configure:9237: result: no -configure:9259: checking for gethostbyname -configure:9316: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccVZ1dvk.o(.text+0x18): In function `main': -: undefined reference to `gethostbyname' -/tmp/ccVZ1dvk.o(.data+0x0): undefined reference to `gethostbyname' -collect2: ld returned 1 exit status -configure:9322: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| /* Define gethostbyname to an innocuous variant, in case declares gethostbyname. -| For example, HP-UX 11i declares gettimeofday. */ -| #define gethostbyname innocuous_gethostbyname -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char gethostbyname (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef gethostbyname -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char gethostbyname (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_gethostbyname) || defined (__stub___gethostbyname) -| choke me -| #else -| char (*f) () = gethostbyname; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != gethostbyname; -| ; -| return 0; -| } -configure:9347: result: no -configure:9365: checking for inet_ntoa -configure:9422: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c >&5 -/tmp/ccrf53du.o(.text+0x18): In function `main': -: undefined reference to `inet_ntoa' -/tmp/ccrf53du.o(.data+0x0): undefined reference to `inet_ntoa' -collect2: ld returned 1 exit status -configure:9428: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| /* Define inet_ntoa to an innocuous variant, in case declares inet_ntoa. -| For example, HP-UX 11i declares gettimeofday. */ -| #define inet_ntoa innocuous_inet_ntoa -| -| /* System header to define __stub macros and hopefully few prototypes, -| which can conflict with char inet_ntoa (); below. -| Prefer to if __STDC__ is defined, since -| exists even on freestanding compilers. */ -| -| #ifdef __STDC__ -| # include -| #else -| # include -| #endif -| -| #undef inet_ntoa -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| { -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char inet_ntoa (); -| /* The GNU C library defines this for functions which it implements -| to always fail with ENOSYS. Some functions are actually named -| something starting with __ and the normal name is an alias. */ -| #if defined (__stub_inet_ntoa) || defined (__stub___inet_ntoa) -| choke me -| #else -| char (*f) () = inet_ntoa; -| #endif -| #ifdef __cplusplus -| } -| #endif -| -| int -| main () -| { -| return f != inet_ntoa; -| ; -| return 0; -| } -configure:9453: result: no -configure:9470: checking for inet_ntoa in -lnsl -configure:9500: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lnsl >&5 -/boot/develop/tools/gnupro/i586-pc-beos/bin/ld: cannot find -lnsl -collect2: ld returned 1 exit status -configure:9506: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| /* end confdefs.h. */ -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char inet_ntoa (); -| int -| main () -| { -| inet_ntoa (); -| ; -| return 0; -| } -configure:9532: result: no -configure:9545: checking for socket in -lsocket -configure:9575: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lsocket >&5 -configure:9581: $? = 0 -configure:9585: test -z - || test ! -s conftest.err -configure:9588: $? = 0 -configure:9591: test -s conftest -configure:9594: $? = 0 -configure:9607: result: yes -configure:9620: checking for getopt_long -configure:9677: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lsocket >&5 -configure:9683: $? = 0 -configure:9687: test -z - || test ! -s conftest.err -configure:9690: $? = 0 -configure:9693: test -s conftest -configure:9696: $? = 0 -configure:9708: result: yes -configure:10587: checking for md5_calc in -lmd5 -configure:10617: gcc -o conftest -O2 -Wall -Wno-implicit conftest.c -lmd5 -lsocket >&5 -/boot/develop/tools/gnupro/i586-pc-beos/bin/ld: cannot find -lmd5 -collect2: ld returned 1 exit status -configure:10623: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "" -| #define PACKAGE_TARNAME "" -| #define PACKAGE_VERSION "" -| #define PACKAGE_STRING "" -| #define PACKAGE_BUGREPORT "" -| #define OS_TYPE "beos" -| #define ENABLE_OPIE 1 -| #define ENABLE_DIGEST 1 -| #define ENABLE_DEBUG 1 -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_MEMORY_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TYPES_H 1 -| #define HAVE_SYS_STAT_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_STDARG_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_TERMIOS_H 1 -| #define HAVE_SYS_IOCTL_H 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_SIGNAL_H 1 -| #define HAVE_SETJMP_H 1 -| #define HAVE_PWD_H 1 -| #define TIME_WITH_SYS_TIME 1 -| #define SIZEOF_SHORT 2 -| #define SIZEOF_INT 4 -| #define SIZEOF_LONG 4 -| #define SIZEOF_LONG_LONG 8 -| #define SIZEOF_OFF_T 8 -| #define HAVE_UINT32_T 1 -| #define RETSIGTYPE void -| #define HAVE_SIG_ATOMIC_T 1 -| #define HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_STRDUP 1 -| #define HAVE_STRSTR 1 -| #define HAVE_STRCASECMP 1 -| #define HAVE_STRNCASECMP 1 -| #define HAVE_STRPBRK 1 -| #define HAVE_MEMMOVE 1 -| #define HAVE_GETTIMEOFDAY 1 -| #define HAVE_MKTIME 1 -| #define HAVE_STRERROR 1 -| #define HAVE_SNPRINTF 1 -| #define HAVE_VSNPRINTF 1 -| #define HAVE_SELECT 1 -| #define HAVE_FTELLO 1 -| #define HAVE_SIGSETJMP 1 -| #define HAVE_SIGNAL 1 -| #define HAVE_SYMLINK 1 -| #define HAVE_ACCESS 1 -| #define HAVE_ISATTY 1 -| #define HAVE_STRTOLL 1 -| #define HAVE_STRTOIMAX 1 -| #define HAVE_STRUCT_UTIMBUF 1 -| #define socklen_t int -| #define HAVE_WORKING_FNMATCH_H 1 -| #define HAVE_LIBSOCKET 1 -| /* end confdefs.h. */ -| -| /* Override any gcc2 internal prototype to avoid an error. */ -| #ifdef __cplusplus -| extern "C" -| #endif -| /* We use char because int might match the return type of a gcc2 -| builtin and then its argument prototype would still apply. */ -| char md5_calc (); -| int -| main () -| { -| md5_calc (); -| ; -| return 0; -| } -configure:10649: result: no -configure:10728: using the GNU MD5 implementation -configure:10746: disabling IPv6 at user request -configure:11276: checking whether NLS is requested -configure:11285: result: no -configure:11803: checking for makeinfo -configure:11819: found /boot/home/config/bin/makeinfo -configure:11829: result: makeinfo -configure:11846: checking for perl5 -configure:11879: result: no -configure:11846: checking for perl -configure:11864: found /boot/home/config/bin/perl -configure:11876: result: /boot/home/config/bin/perl -configure:11889: checking for pod2man -configure:11907: found /boot/home/config/bin/pod2man -configure:11920: result: /boot/home/config/bin/pod2man -configure:12040: creating ./config.status - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by config.status, which was -generated by GNU Autoconf 2.59. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on zon - -config.status:700: creating Makefile -config.status:700: creating src/Makefile -config.status:700: creating doc/Makefile -config.status:700: creating util/Makefile -config.status:700: creating po/Makefile.in -config.status:700: creating windows/Makefile -config.status:700: creating stamp-h -config.status:808: creating src/config.h -config.status:1206: executing default commands - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_build=i586-pc-beos -ac_cv_build_alias=i586-pc-beos -ac_cv_c_bigendian=no -ac_cv_c_compiler_gnu=yes -ac_cv_c_const=yes -ac_cv_c_inline=inline -ac_cv_c_volatile=yes -ac_cv_env_CC_set= -ac_cv_env_CC_value= -ac_cv_env_CFLAGS_set= -ac_cv_env_CFLAGS_value= -ac_cv_env_CPPFLAGS_set= -ac_cv_env_CPPFLAGS_value= -ac_cv_env_CPP_set= -ac_cv_env_CPP_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -ac_cv_env_host_alias_set= -ac_cv_env_host_alias_value= -ac_cv_env_target_alias_set= -ac_cv_env_target_alias_value= -ac_cv_exeext= -ac_cv_func_access=yes -ac_cv_func_alloca_works=yes -ac_cv_func_clock_gettime=no -ac_cv_func_fseeko=no -ac_cv_func_ftello=yes -ac_cv_func_gethostbyname=no -ac_cv_func_getopt_long=yes -ac_cv_func_getpagesize=no -ac_cv_func_gettimeofday=yes -ac_cv_func_inet_ntoa=no -ac_cv_func_isatty=yes -ac_cv_func_memmove=yes -ac_cv_func_mktime=yes -ac_cv_func_mmap_fixed_mapped=no -ac_cv_func_nanosleep=no -ac_cv_func_select=yes -ac_cv_func_sigblock=no -ac_cv_func_signal=yes -ac_cv_func_sigsetjmp=yes -ac_cv_func_snprintf=yes -ac_cv_func_strcasecmp=yes -ac_cv_func_strdup=yes -ac_cv_func_strerror=yes -ac_cv_func_strncasecmp=yes -ac_cv_func_strpbrk=yes -ac_cv_func_strptime=no -ac_cv_func_strstr=yes -ac_cv_func_strtoimax=yes -ac_cv_func_strtoll=yes -ac_cv_func_symlink=yes -ac_cv_func_timegm=no -ac_cv_func_usleep=no -ac_cv_func_vsnprintf=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_limits_h=yes -ac_cv_header_memory_h=yes -ac_cv_header_pwd_h=yes -ac_cv_header_setjmp_h=yes -ac_cv_header_signal_h=yes -ac_cv_header_stdarg_h=yes -ac_cv_header_stdc=yes -ac_cv_header_stdint_h=no -ac_cv_header_stdlib_h=yes -ac_cv_header_string_h=yes -ac_cv_header_strings_h=yes -ac_cv_header_sys_ioctl_h=yes -ac_cv_header_sys_select_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_time_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_sys_utime_h=no -ac_cv_header_termios_h=yes -ac_cv_header_time=yes -ac_cv_header_unistd_h=yes -ac_cv_header_utime_h=yes -ac_cv_host=i586-pc-beos -ac_cv_host_alias=i586-pc-beos -ac_cv_lib_md5_md5_calc=no -ac_cv_lib_nsl_inet_ntoa=no -ac_cv_lib_posix4_nanosleep=no -ac_cv_lib_rt_clock_gettime=no -ac_cv_lib_rt_nanosleep=no -ac_cv_lib_socket_socket=yes -ac_cv_objext=o -ac_cv_path_PERL=/boot/home/config/bin/perl -ac_cv_path_POD2MAN=/boot/home/config/bin/pod2man -ac_cv_path_install='/bin/install -c' -ac_cv_prog_CPP='gcc -E' -ac_cv_prog_MAKEINFO=makeinfo -ac_cv_prog_ac_ct_CC=gcc -ac_cv_prog_cc_g=yes -ac_cv_prog_cc_stdc= -ac_cv_prog_egrep='grep -E' -ac_cv_prog_make_make_set=yes -ac_cv_sizeof_int=4 -ac_cv_sizeof_long=4 -ac_cv_sizeof_long_long=8 -ac_cv_sizeof_off_t=8 -ac_cv_sizeof_short=2 -ac_cv_sys_file_offset_bits=no -ac_cv_sys_large_files=no -ac_cv_sys_largefile_CC=no -ac_cv_sys_largefile_source=no -ac_cv_type_int=yes -ac_cv_type_long=yes -ac_cv_type_long_long=yes -ac_cv_type_off_t=yes -ac_cv_type_pid_t=yes -ac_cv_type_short=yes -ac_cv_type_sig_atomic_t=yes -ac_cv_type_signal=void -ac_cv_type_size_t=yes -ac_cv_type_struct_utimbuf=yes -ac_cv_type_uint32_t=yes -ac_cv_working_alloca_h=yes -am_cv_prog_cc_stdc= - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -ALLOCA='' -ANSI2KNR='' -CATALOGS='' -CATOBJEXT='' -CC='gcc' -CFLAGS=' -O2 -Wall -Wno-implicit' -COMMENT_IF_NO_POD2MAN='' -CPP='gcc -E' -CPPFLAGS='' -DATADIRNAME='' -DEFS='-DHAVE_CONFIG_H' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='grep -E' -EXEEXT='' -GETOPT_OBJ='' -GMOFILES='' -GMSGFMT='' -HAVE_LIBSSL='' -HAVE_NLS='no' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -INSTOBJEXT='' -INTLLIBS='' -LDFLAGS='' -LIBOBJS='' -LIBS='-lsocket ' -LIBSSL='' -LTLIBOBJS='' -LTLIBSSL='' -MAKEINFO='makeinfo' -MD5_OBJ='gen-md5$o gnu-md5$o' -MSGFMT='' -NTLM_OBJ='' -OBJEXT='o' -OPIE_OBJ='ftp-opie$o' -PACKAGE='wget' -PACKAGE_BUGREPORT='' -PACKAGE_NAME='' -PACKAGE_STRING='' -PACKAGE_TARNAME='' -PACKAGE_VERSION='' -PATH_SEPARATOR=':' -PERL='/boot/home/config/bin/perl' -POD2MAN='/boot/home/config/bin/pod2man' -POFILES='' -SET_MAKE='' -SHELL='/bin/sh' -SSL_OBJ='' -U='' -USE_NLS='no' -VERSION='1.10.2' -XGETTEXT='' -ac_ct_CC='gcc' -bindir='${exec_prefix}/bin' -build='i586-pc-beos' -build_alias='' -build_cpu='i586' -build_os='beos' -build_vendor='pc' -datadir='${prefix}/share' -exec_prefix='${prefix}' -exeext='' -host='i586-pc-beos' -host_alias='' -host_cpu='i586' -host_os='beos' -host_vendor='pc' -includedir='${prefix}/include' -infodir='${prefix}/info' -libdir='${exec_prefix}/lib' -libexecdir='${exec_prefix}/libexec' -localstatedir='${prefix}/var' -mandir='${prefix}/man' -oldincludedir='/usr/include' -prefix='/boot/home/config/wget/' -program_transform_name='s,x,x,' -sbindir='${exec_prefix}/sbin' -sharedstatedir='${prefix}/com' -sysconfdir='${prefix}/etc' -target_alias='' - -## ----------- ## -## confdefs.h. ## -## ----------- ## - -#define ENABLE_DEBUG 1 -#define ENABLE_DIGEST 1 -#define ENABLE_OPIE 1 -#define HAVE_ACCESS 1 -#define HAVE_ALLOCA 1 -#define HAVE_ALLOCA_H 1 -#define HAVE_BUILTIN_MD5 1 -#define HAVE_FTELLO 1 -#define HAVE_GETTIMEOFDAY 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_ISATTY 1 -#define HAVE_LIBSOCKET 1 -#define HAVE_LIMITS_H 1 -#define HAVE_MD5 1 -#define HAVE_MEMMOVE 1 -#define HAVE_MEMORY_H 1 -#define HAVE_MKTIME 1 -#define HAVE_PWD_H 1 -#define HAVE_SELECT 1 -#define HAVE_SETJMP_H 1 -#define HAVE_SIGNAL 1 -#define HAVE_SIGNAL_H 1 -#define HAVE_SIGSETJMP 1 -#define HAVE_SIG_ATOMIC_T 1 -#define HAVE_SNPRINTF 1 -#define HAVE_STDARG_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRCASECMP 1 -#define HAVE_STRDUP 1 -#define HAVE_STRERROR 1 -#define HAVE_STRINGS_H 1 -#define HAVE_STRINGS_H 1 -#define HAVE_STRING_H 1 -#define HAVE_STRING_H 1 -#define HAVE_STRNCASECMP 1 -#define HAVE_STRPBRK 1 -#define HAVE_STRSTR 1 -#define HAVE_STRTOIMAX 1 -#define HAVE_STRTOLL 1 -#define HAVE_STRUCT_UTIMBUF 1 -#define HAVE_SYMLINK 1 -#define HAVE_SYS_IOCTL_H 1 -#define HAVE_SYS_SELECT_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_SYS_TIME_H 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_TERMIOS_H 1 -#define HAVE_UINT32_T 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UTIME_H 1 -#define HAVE_VSNPRINTF 1 -#define HAVE_WORKING_FNMATCH_H 1 -#define OS_TYPE "beos" -#define PACKAGE_BUGREPORT "" -#define PACKAGE_NAME "" -#define PACKAGE_STRING "" -#define PACKAGE_TARNAME "" -#define PACKAGE_VERSION "" -#define PROTOTYPES 1 -#define RETSIGTYPE void -#define SIZEOF_INT 4 -#define SIZEOF_LONG 4 -#define SIZEOF_LONG_LONG 8 -#define SIZEOF_OFF_T 8 -#define SIZEOF_SHORT 2 -#define STDC_HEADERS 1 -#define TIME_WITH_SYS_TIME 1 -#define __PROTOTYPES 1 -#define socklen_t int - -configure: exit 0 diff --git a/src/bin/network/wget/config.status b/src/bin/network/wget/config.status deleted file mode 100755 index c64f2eed48..0000000000 --- a/src/bin/network/wget/config.status +++ /dev/null @@ -1,1230 +0,0 @@ -#! /bin/sh -# Generated by configure. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=${CONFIG_SHELL-/bin/sh} -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 -echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 -echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - -exec 6>&1 - -# Open the log real soon, to keep \$[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. Logging --version etc. is OK. -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 -cat >&5 <<_CSEOF - -This file was extended by $as_me, which was -generated by GNU Autoconf 2.59. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -_CSEOF -echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 -echo >&5 -config_files=" Makefile src/Makefile doc/Makefile util/Makefile po/Makefile.in windows/Makefile stamp-h" -config_headers=" src/config.h" -config_commands=" default" - -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." -ac_cs_version="\ -config.status -configured by ./configure, generated by GNU Autoconf 2.59, - with options \"'--prefix=/boot/home/config/wget/' '--without-ssl' '-disable-nls' '--disable-ipv6' '--disable-rpath'\" - -Copyright (C) 2003 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." -srcdir=. -INSTALL="/bin/install -c" -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "x$1" : 'x\([^=]*\)='` - ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` - ac_shift=: - ;; - -*) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - *) # This is not an option, so the user has probably given explicit - # arguments. - ac_option=$1 - ac_need_defaults=false;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --vers* | -V ) - echo "$ac_cs_version"; exit 0 ;; - --he | --h) - # Conflict between --help and --header - { { echo "$as_me:$LINENO: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" - ac_need_defaults=false;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -if $ac_cs_recheck; then - echo "running /bin/sh ./configure " '--prefix=/boot/home/config/wget/' '--without-ssl' '-disable-nls' '--disable-ipv6' '--disable-rpath' $ac_configure_extra_args " --no-create --no-recursion" >&6 - exec /bin/sh ./configure '--prefix=/boot/home/config/wget/' '--without-ssl' '-disable-nls' '--disable-ipv6' '--disable-rpath' $ac_configure_extra_args --no-create --no-recursion -fi - -for ac_config_target in $ac_config_targets -do - case "$ac_config_target" in - # Handling of arguments. - "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; - "util/Makefile" ) CONFIG_FILES="$CONFIG_FILES util/Makefile" ;; - "po/Makefile.in" ) CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; - "windows/Makefile" ) CONFIG_FILES="$CONFIG_FILES windows/Makefile" ;; - "stamp-h" ) CONFIG_FILES="$CONFIG_FILES stamp-h" ;; - "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; - "src/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason to put it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Create a temporary directory, and hook for its removal unless debugging. -$debug || -{ - trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} - -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./confstat$$-$RANDOM - (umask 077 && mkdir $tmp) -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - - -# -# CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "$CONFIG_FILES"; then - # Protect against being on the right side of a sed subst in config.status. - sed 's/,@/@@/; s/@,/@@/; s/,;t t$/@;t t/; /@;t t$/s/[\\&,]/\\&/g; - s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF -s,@SHELL@,/bin/sh,;t t -s,@PATH_SEPARATOR@,:,;t t -s,@PACKAGE_NAME@,,;t t -s,@PACKAGE_TARNAME@,,;t t -s,@PACKAGE_VERSION@,,;t t -s,@PACKAGE_STRING@,,;t t -s,@PACKAGE_BUGREPORT@,,;t t -s,@exec_prefix@,${prefix},;t t -s,@prefix@,/boot/home/config/wget/,;t t -s,@program_transform_name@,s,x,x,,;t t -s,@bindir@,${exec_prefix}/bin,;t t -s,@sbindir@,${exec_prefix}/sbin,;t t -s,@libexecdir@,${exec_prefix}/libexec,;t t -s,@datadir@,${prefix}/share,;t t -s,@sysconfdir@,${prefix}/etc,;t t -s,@sharedstatedir@,${prefix}/com,;t t -s,@localstatedir@,${prefix}/var,;t t -s,@libdir@,${exec_prefix}/lib,;t t -s,@includedir@,${prefix}/include,;t t -s,@oldincludedir@,/usr/include,;t t -s,@infodir@,${prefix}/info,;t t -s,@mandir@,${prefix}/man,;t t -s,@build_alias@,,;t t -s,@host_alias@,,;t t -s,@target_alias@,,;t t -s,@DEFS@,-DHAVE_CONFIG_H,;t t -s,@ECHO_C@,,;t t -s,@ECHO_N@,-n,;t t -s,@ECHO_T@,,;t t -s,@LIBS@,-lsocket ,;t t -s,@VERSION@,1.10.2,;t t -s,@PACKAGE@,wget,;t t -s,@build@,i586-pc-beos,;t t -s,@build_cpu@,i586,;t t -s,@build_vendor@,pc,;t t -s,@build_os@,beos,;t t -s,@host@,i586-pc-beos,;t t -s,@host_cpu@,i586,;t t -s,@host_vendor@,pc,;t t -s,@host_os@,beos,;t t -s,@OPIE_OBJ@,ftp-opie$o,;t t -s,@SET_MAKE@,,;t t -s,@INSTALL_PROGRAM@,${INSTALL},;t t -s,@INSTALL_SCRIPT@,${INSTALL},;t t -s,@INSTALL_DATA@,${INSTALL} -m 644,;t t -s,@CC@,gcc,;t t -s,@CFLAGS@, -O2 -Wall -Wno-implicit,;t t -s,@LDFLAGS@,,;t t -s,@CPPFLAGS@,,;t t -s,@ac_ct_CC@,gcc,;t t -s,@EXEEXT@,,;t t -s,@OBJEXT@,o,;t t -s,@CPP@,gcc -E,;t t -s,@EGREP@,grep -E,;t t -s,@exeext@,,;t t -s,@U@,,;t t -s,@ANSI2KNR@,,;t t -s,@ALLOCA@,,;t t -s,@GETOPT_OBJ@,,;t t -s,@HAVE_LIBSSL@,,;t t -s,@LIBSSL@,,;t t -s,@LTLIBSSL@,,;t t -s,@SSL_OBJ@,,;t t -s,@NTLM_OBJ@,,;t t -s,@MD5_OBJ@,gen-md5$o gnu-md5$o,;t t -s,@MSGFMT@,,;t t -s,@XGETTEXT@,,;t t -s,@GMSGFMT@,,;t t -s,@CATALOGS@,,;t t -s,@CATOBJEXT@,,;t t -s,@DATADIRNAME@,,;t t -s,@GMOFILES@,,;t t -s,@INSTOBJEXT@,,;t t -s,@INTLLIBS@,,;t t -s,@POFILES@,,;t t -s,@HAVE_NLS@,no,;t t -s,@USE_NLS@,no,;t t -s,@MAKEINFO@,makeinfo,;t t -s,@PERL@,/boot/home/config/bin/perl,;t t -s,@POD2MAN@,/boot/home/config/bin/pod2man,;t t -s,@COMMENT_IF_NO_POD2MAN@,,;t t -s,@LIBOBJS@,,;t t -s,@LTLIBOBJS@,,;t t -CEOF - - # Split the substitutions into bite-sized pieces for seds with - # small command number limits, like on Digital OSF/1 and HP-UX. - ac_max_sed_lines=48 - ac_sed_frag=1 # Number of current file. - ac_beg=1 # First line for current file. - ac_end=$ac_max_sed_lines # Line after last line for current file. - ac_more_lines=: - ac_sed_cmds= - while $ac_more_lines; do - if test $ac_beg -gt 1; then - sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - else - sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - fi - if test ! -s $tmp/subs.frag; then - ac_more_lines=false - else - # The purpose of the label and of the branching condition is to - # speed up the sed processing (if there are no `@' at all, there - # is no need to browse any of the substitutions). - # These are the two extra sed commands mentioned above. - (echo ':t - /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed - if test -z "$ac_sed_cmds"; then - ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" - else - ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" - fi - ac_sed_frag=`expr $ac_sed_frag + 1` - ac_beg=$ac_end - ac_end=`expr $ac_end + $ac_max_sed_lines` - fi - done - if test -z "$ac_sed_cmds"; then - ac_sed_cmds=cat - fi -fi # test -n "$CONFIG_FILES" - -for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_builddir$INSTALL ;; - esac - - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - configure_input= - else - configure_input="$ac_file. " - fi - configure_input=$configure_input"Generated from `echo $ac_file_in | - sed 's,.*/,,'` by configure." - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } - sed "/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/; -s/:*\${srcdir}:*/:/; -s/:*@srcdir@:*/:/; -s/^\([^=]*=[ ]*\):*/\1/; -s/:*$//; -s/^[^=]*=[ ]*$//; -} - -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s,@configure_input@,$configure_input,;t t -s,@srcdir@,$ac_srcdir,;t t -s,@abs_srcdir@,$ac_abs_srcdir,;t t -s,@top_srcdir@,$ac_top_srcdir,;t t -s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t -s,@builddir@,$ac_builddir,;t t -s,@abs_builddir@,$ac_abs_builddir,;t t -s,@top_builddir@,$ac_top_builddir,;t t -s,@abs_top_builddir@,$ac_abs_top_builddir,;t t -s,@INSTALL@,$ac_INSTALL,;t t -" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out - rm -f $tmp/stdin - if test x"$ac_file" != x-; then - mv $tmp/out $ac_file - else - cat $tmp/out - rm -f $tmp/out - fi - - # Run the commands associated with the file. - case $ac_file in - stamp-h ) echo timestamp > stamp-h ;; - esac -done - -# -# CONFIG_HEADER section. -# - -# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where -# NAME is the cpp macro being defined and VALUE is the value it is being given. -# -# ac_d sets the value in "#define NAME VALUE" lines. -ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' -ac_dB='[ ].*$,\1#\2' -ac_dC=' ' -ac_dD=',;t' -# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". -ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' -ac_uB='$,\1#\2define\3' -ac_uC=' ' -ac_uD=',;t' - -for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - # Do quote $f, to prevent DOS paths from being IFS'd. - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } - # Remove the trailing spaces. - sed 's/[ ]*$//' $ac_file_inputs >$tmp/in - - # Handle all the #define templates only if necessary. - if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then - # If there are no defines, we may have an empty if/fi - : - cat >$tmp/defines.sed <$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in - - cat >$tmp/defines.sed <$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in - - fi # grep - - # Handle all the #undef templates - cat >$tmp/undefs.sed <$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in - - cat >$tmp/undefs.sed <$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - echo "/* Generated by configure. */" >$tmp/config.h - else - echo "/* $ac_file. Generated by configure. */" >$tmp/config.h - fi - cat $tmp/in >>$tmp/config.h - rm -f $tmp/in - if test x"$ac_file" != x-; then - if diff $ac_file $tmp/config.h >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} - else - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - rm -f $ac_file - mv $tmp/config.h $ac_file - fi - else - cat $tmp/config.h - rm -f $tmp/config.h - fi -done - -# -# CONFIG_COMMANDS section. -# -for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue - ac_dest=`echo "$ac_file" | sed 's,:.*,,'` - ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_dir=`(dirname "$ac_dest") 2>/dev/null || -$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_dest" : 'X\(//\)[^/]' \| \ - X"$ac_dest" : 'X\(//\)$' \| \ - X"$ac_dest" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_dest" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - - { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 -echo "$as_me: executing $ac_dest commands" >&6;} - case $ac_dest in - default ) - if test "x$srcdir" != "x."; then - if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then - posrcprefix="$srcdir/" - else - posrcprefix="../$srcdir/" - fi - else - posrcprefix="../" - fi - rm -f po/POTFILES - echo "generating po/POTFILES from $srcdir/po/POTFILES.in" - sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," \ - -e "\$s/\(.*\) \\\\/\1/" \ - < $srcdir/po/POTFILES.in > po/POTFILES - echo "creating po/Makefile" - sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile - ;; - esac -done - -{ (exit 0); exit 0; } diff --git a/src/bin/network/wget/doc/Makefile b/src/bin/network/wget/doc/Makefile deleted file mode 100644 index e683f0f48d..0000000000 --- a/src/bin/network/wget/doc/Makefile +++ /dev/null @@ -1,182 +0,0 @@ -# Makefile for `wget' utility -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -# -# Version: 1.10.2 -# - -SHELL = /bin/sh - -# Program to format Texinfo source into Info files. -MAKEINFO = makeinfo -# Program to format Texinfo source into DVI files. -TEXI2DVI = texi2dvi -# Program to convert DVI files to PostScript -DVIPS = dvips -D 300 -# Program to convert texinfo files to html -TEXI2HTML = texi2html -expandinfo -split_chapter - -top_builddir = .. - -top_srcdir = .. -srcdir = . - - -prefix = /boot/home/config/wget/ -infodir = ${prefix}/info -mandir = ${prefix}/man -manext = 1 -sysconfdir = ${prefix}/etc - -DESTDIR = - -INSTALL = /bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -RM = rm -f - -TEXI2POD = texi2pod.pl -POD2MAN = /boot/home/config/bin/pod2man -MAN = wget.$(manext) -WGETRC = $(sysconfdir)/wgetrc -SAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion - -# -# Dependencies for building -# - -all: wget.info $(MAN) - -everything: all wget_us.ps wget_a4.ps wget_toc.html - -$(SAMPLERCTEXI): $(srcdir)/sample.wgetrc - sed s/@/@@/g $? > $@ - -wget.info: $(srcdir)/wget.texi $(SAMPLERCTEXI) $(srcdir)/version.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/wget.texi - -$(TEXI2POD): $(srcdir)/$(TEXI2POD).in - sed 's,^#! /usr/bin/perl,#! /boot/home/config/bin/perl,' $? > $@ - chmod u+x $@ - -wget.pod: $(srcdir)/wget.texi $(TEXI2POD) $(srcdir)/version.texi - ./$(TEXI2POD) $(srcdir)/wget.texi $@ - -$(MAN): wget.pod - $(POD2MAN) --center="GNU Wget" --release="GNU Wget 1.10.2" $? > $@ - -#wget.cat: $(MAN) -# nroff -man $? > $@ - -dvi: wget.dvi - -wget.dvi: $(srcdir)/wget.texi - $(TEXI2DVI) $(srcdir)/wget.texi - -wget_us.ps: wget.dvi - $(DVIPS) -t letter -o $@ wget.dvi - -wget_a4.ps: wget.dvi - $(DVIPS) -t a4 -o $@ wget.dvi - -wget_toc.html: $(srcdir)/wget.texi - $(TEXI2HTML) $(srcdir)/wget.texi - -# -# Dependencies for installing -# - -# install all the documentation -install: install.info install.wgetrc install.man - -# uninstall all the documentation -uninstall: uninstall.info uninstall.man - -# install info pages, creating install directory if necessary -# if the info pages are built in the build directory, they are used. -# otherwise, the ones from the distribution are installed. -install.info: wget.info - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir) - -if test -f wget.info; then \ - for file in wget.info wget.info-*[0-9]; do \ - if test -f "$$file"; then \ - $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/$$file" ; \ - fi; \ - done; \ - else \ - for file in $(srcdir)/wget.info $(srcdir)/wget.info-*[0-9]; do \ - if test -f "$$file"; then \ - $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/`basename $$file`" ; \ - fi; \ - done; \ - fi - -# install man page, creating install directory if necessary -install.man: $(MAN) - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext) - $(INSTALL_DATA) $(MAN) $(DESTDIR)$(mandir)/man$(manext)/$(MAN) - -# install sample.wgetrc -install.wgetrc: $(srcdir)/sample.wgetrc - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir) - @if test -f $(DESTDIR)$(WGETRC); then \ - if cmp -s $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); then echo ""; \ - else \ - echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new'; \ - $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new; \ - echo; \ - echo "WARNING: Differing \`$(DESTDIR)$(WGETRC)'"; \ - echo " exists and has been spared. You might want to"; \ - echo " consider merging in the new lines from"; \ - echo " \`$(DESTDIR)$(WGETRC).new'."; \ - echo; \ - fi; \ - else \ - $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); \ - fi - -# uninstall info pages -uninstall.info: - $(RM) $(DESTDIR)$(infodir)/wget.info* - -# uninstall man page -uninstall.man: - $(RM) $(DESTDIR)$(mandir)/man$(manext)/$(MAN) - -# -# Dependencies for cleanup -# - -clean: - $(RM) *~ *.bak *.cat *.pod *.html - $(RM) *.dvi *.aux *.cp *.cps *.fn *.toc *.tp *.vr *.ps *.ky *.pg *.log - -distclean: clean - $(RM) Makefile - $(RM) $(MAN) $(TEXI2POD) - -realclean: distclean - $(RM) wget.info* - $(RM) $(SAMPLERCTEXI) - -# -# Dependencies for maintenance -# - -subdir = doc - -Makefile: Makefile.in ../config.status - cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status diff --git a/src/bin/network/wget/po/Makefile b/src/bin/network/wget/po/Makefile deleted file mode 100644 index 53dc376120..0000000000 --- a/src/bin/network/wget/po/Makefile +++ /dev/null @@ -1,251 +0,0 @@ -# Makefile for program source directory in GNU NLS utilities package. -# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper -# -# This file file be copied and used freely without restrictions. It can -# be used in projects which are not available under the GNU Public License -# but which still want to provide support for the GNU gettext functionality. -# Please note that the actual code is *not* freely available. - -PACKAGE = wget -VERSION = 1.10.2 - -SHELL = /bin/sh - - -top_builddir = .. - -srcdir = . -top_srcdir = .. - - -prefix = /boot/home/config/wget/ -exec_prefix = ${prefix} -datadir = $(prefix)/ -localedir = $(datadir)/locale -gnulocaledir = $(prefix)/share/locale -gettextsrcdir = $(prefix)/share/gettext/po -subdir = po - -DESTDIR = - -INSTALL = /bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 - -CC = gcc -GMSGFMT = PATH=../src:$$PATH -MSGFMT = -XGETTEXT = PATH=../src:$$PATH -MSGMERGE = PATH=../src:$$PATH msgmerge - -DEFS = -DHAVE_CONFIG_H -CFLAGS = -O2 -Wall -Wno-implicit -CPPFLAGS = - -INCLUDES = -I.. -I$(top_srcdir)/intl - -COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) - -POFILES = -GMOFILES = -DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \ -$(POFILES) $(GMOFILES) $(SOURCES) - -POTFILES = \ - ../src/cmpt.c \ - ../src/connect.c \ - ../src/convert.c \ - ../src/cookies.c \ - ../src/ftp-basic.c \ - ../src/ftp-ls.c \ - ../src/ftp-opie.c \ - ../src/ftp.c \ - ../src/gen-md5.c \ - ../src/getopt.c \ - ../src/gnu-md5.c \ - ../src/hash.c \ - ../src/host.c \ - ../src/html-parse.c \ - ../src/html-url.c \ - ../src/http.c \ - ../src/init.c \ - ../src/log.c \ - ../src/main.c \ - ../src/mswindows.c \ - ../src/netrc.c \ - ../src/openssl.c \ - ../src/progress.c \ - ../src/ptimer.c \ - ../src/recur.c \ - ../src/res.c \ - ../src/retr.c \ - ../src/url.c \ - ../src/utils.c \ - ../src/version.c \ - ../src/xmalloc.c - -CATALOGS = -CATOBJEXT = -INSTOBJEXT = - -.SUFFIXES: -.SUFFIXES: .c .o .po .pox .gmo .mo .msg - -.c.o: - $(COMPILE) $< - -.po.pox: - $(MAKE) $(PACKAGE).pot - $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox - -.po.mo: - $(MSGFMT) -o $@ $< - -.po.gmo: - file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ - && rm -f $$file && $(GMSGFMT) -o $$file $< - - -all: all-no - -all-yes: $(CATALOGS) -all-no: - -$(srcdir)/$(PACKAGE).pot: $(POTFILES) - $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ - --add-comments --keyword=_ --keyword=N_ \ - --files-from=$(srcdir)/POTFILES.in - rm -f $(srcdir)/$(PACKAGE).pot - mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot - -install.mo: install -install: install-exec install-data -install-exec: -install-data: install-data-no -install-data-no: all -install-data-yes: all - @catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - case "$$cat" in \ - *.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \ - *) destdir=$(DESTDIR)$(localedir);; \ - esac; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - dir=$$destdir/$$lang/LC_MESSAGES; \ - $(top_srcdir)/mkinstalldirs $$dir; \ - if test -r $$cat; then \ - $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ - echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \ - else \ - $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ - echo "installing $(srcdir)/$$cat as" \ - "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ - fi; \ - if test -r $$cat.m; then \ - $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ - else \ - if test -r $(srcdir)/$$cat.m ; then \ - $(INSTALL_DATA) $(srcdir)/$$cat.m \ - $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - echo "installing $(srcdir)/$$cat as" \ - "$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ - else \ - true; \ - fi; \ - fi; \ - done - if test "$(PACKAGE)" = "gettext"; then \ - $(INSTALL_DATA) $(srcdir)/Makefile.in.in \ - $(gettextsrcdir)/Makefile.in.in; \ - else \ - : ; \ - fi - -# Define this as empty until I found a useful application. -installcheck: - -uninstall: - catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - dir=$(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES; \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - done - rm -f $(gettextsrcdir)/po-Makefile.in.in - -check: all - -cat-id-tbl.o: ../intl/libgettext.h - -dvi info tags TAGS ID: - -mostlyclean: - rm -f core core.* *.pox $(PACKAGE).po *.old.po - rm -fr *.o - -clean: mostlyclean - -distclean: clean - rm -f Makefile Makefile.in POTFILES *.mo *.gmo *.msg - -maintainer-clean: distclean - @echo "!! This command is intended for maintainers to use;" - @echo "!! it deletes files that may require special tools to rebuild." - rm -f $(GMOFILES) - -realclean: maintainer-clean - -distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) -dist distdir: update-po $(DISTFILES) - dists="$(DISTFILES)"; \ - for file in $$dists; do \ - ln $(srcdir)/$$file $(distdir) 2> /dev/null \ - || cp -p $(srcdir)/$$file $(distdir); \ - done - -update-po: Makefile - $(MAKE) $(PACKAGE).pot - PATH=`pwd`/../src:$$PATH; \ - cd $(srcdir); \ - catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - mv $$lang.po $$lang.old.po; \ - echo "$$lang:"; \ - if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \ - rm -f $$lang.old.po; \ - else \ - echo "msgmerge for $$cat failed!"; \ - rm -f $$lang.po; \ - mv $$lang.old.po $$lang.po; \ - fi; \ - done - -POTFILES: POTFILES.in - ( if test 'x$(srcdir)' != 'x.'; then \ - posrcprefix='$(top_srcdir)/'; \ - else \ - posrcprefix="../"; \ - fi; \ - rm -f $@-t $@ \ - && (sed -e '/^#/d' -e '/^[ ]*$$/d' \ - -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \ - | sed -e '$$s/\\$$//') > $@-t \ - && chmod a-w $@-t \ - && mv $@-t $@ ) - -Makefile: Makefile.in.in ../config.status POTFILES - cd .. \ - && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ - $(SHELL) ./config.status - -# Tell versions [3.59,3.63) of GNU make not to export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/bin/network/wget/po/Makefile.in b/src/bin/network/wget/po/Makefile.in deleted file mode 100644 index fd333001ff..0000000000 --- a/src/bin/network/wget/po/Makefile.in +++ /dev/null @@ -1,220 +0,0 @@ -# Makefile for program source directory in GNU NLS utilities package. -# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper -# -# This file file be copied and used freely without restrictions. It can -# be used in projects which are not available under the GNU Public License -# but which still want to provide support for the GNU gettext functionality. -# Please note that the actual code is *not* freely available. - -PACKAGE = wget -VERSION = 1.10.2 - -SHELL = /bin/sh - - -top_builddir = .. - -srcdir = . -top_srcdir = .. - - -prefix = /boot/home/config/wget/ -exec_prefix = ${prefix} -datadir = $(prefix)/ -localedir = $(datadir)/locale -gnulocaledir = $(prefix)/share/locale -gettextsrcdir = $(prefix)/share/gettext/po -subdir = po - -DESTDIR = - -INSTALL = /bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 - -CC = gcc -GMSGFMT = PATH=../src:$$PATH -MSGFMT = -XGETTEXT = PATH=../src:$$PATH -MSGMERGE = PATH=../src:$$PATH msgmerge - -DEFS = -DHAVE_CONFIG_H -CFLAGS = -O2 -Wall -Wno-implicit -CPPFLAGS = - -INCLUDES = -I.. -I$(top_srcdir)/intl - -COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) - -POFILES = -GMOFILES = -DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \ -$(POFILES) $(GMOFILES) $(SOURCES) - -POTFILES = \ - -CATALOGS = -CATOBJEXT = -INSTOBJEXT = - -.SUFFIXES: -.SUFFIXES: .c .o .po .pox .gmo .mo .msg - -.c.o: - $(COMPILE) $< - -.po.pox: - $(MAKE) $(PACKAGE).pot - $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox - -.po.mo: - $(MSGFMT) -o $@ $< - -.po.gmo: - file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ - && rm -f $$file && $(GMSGFMT) -o $$file $< - - -all: all-no - -all-yes: $(CATALOGS) -all-no: - -$(srcdir)/$(PACKAGE).pot: $(POTFILES) - $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ - --add-comments --keyword=_ --keyword=N_ \ - --files-from=$(srcdir)/POTFILES.in - rm -f $(srcdir)/$(PACKAGE).pot - mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot - -install.mo: install -install: install-exec install-data -install-exec: -install-data: install-data-no -install-data-no: all -install-data-yes: all - @catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - case "$$cat" in \ - *.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \ - *) destdir=$(DESTDIR)$(localedir);; \ - esac; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - dir=$$destdir/$$lang/LC_MESSAGES; \ - $(top_srcdir)/mkinstalldirs $$dir; \ - if test -r $$cat; then \ - $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ - echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \ - else \ - $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ - echo "installing $(srcdir)/$$cat as" \ - "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ - fi; \ - if test -r $$cat.m; then \ - $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ - else \ - if test -r $(srcdir)/$$cat.m ; then \ - $(INSTALL_DATA) $(srcdir)/$$cat.m \ - $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - echo "installing $(srcdir)/$$cat as" \ - "$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ - else \ - true; \ - fi; \ - fi; \ - done - if test "$(PACKAGE)" = "gettext"; then \ - $(INSTALL_DATA) $(srcdir)/Makefile.in.in \ - $(gettextsrcdir)/Makefile.in.in; \ - else \ - : ; \ - fi - -# Define this as empty until I found a useful application. -installcheck: - -uninstall: - catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - dir=$(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES; \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT); \ - rm -f $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ - done - rm -f $(gettextsrcdir)/po-Makefile.in.in - -check: all - -cat-id-tbl.o: ../intl/libgettext.h - -dvi info tags TAGS ID: - -mostlyclean: - rm -f core core.* *.pox $(PACKAGE).po *.old.po - rm -fr *.o - -clean: mostlyclean - -distclean: clean - rm -f Makefile Makefile.in POTFILES *.mo *.gmo *.msg - -maintainer-clean: distclean - @echo "!! This command is intended for maintainers to use;" - @echo "!! it deletes files that may require special tools to rebuild." - rm -f $(GMOFILES) - -realclean: maintainer-clean - -distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) -dist distdir: update-po $(DISTFILES) - dists="$(DISTFILES)"; \ - for file in $$dists; do \ - ln $(srcdir)/$$file $(distdir) 2> /dev/null \ - || cp -p $(srcdir)/$$file $(distdir); \ - done - -update-po: Makefile - $(MAKE) $(PACKAGE).pot - PATH=`pwd`/../src:$$PATH; \ - cd $(srcdir); \ - catalogs='$(CATALOGS)'; \ - for cat in $$catalogs; do \ - cat=`basename $$cat`; \ - lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - mv $$lang.po $$lang.old.po; \ - echo "$$lang:"; \ - if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \ - rm -f $$lang.old.po; \ - else \ - echo "msgmerge for $$cat failed!"; \ - rm -f $$lang.po; \ - mv $$lang.old.po $$lang.po; \ - fi; \ - done - -POTFILES: POTFILES.in - ( if test 'x$(srcdir)' != 'x.'; then \ - posrcprefix='$(top_srcdir)/'; \ - else \ - posrcprefix="../"; \ - fi; \ - rm -f $@-t $@ \ - && (sed -e '/^#/d' -e '/^[ ]*$$/d' \ - -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \ - | sed -e '$$s/\\$$//') > $@-t \ - && chmod a-w $@-t \ - && mv $@-t $@ ) - -Makefile: Makefile.in.in ../config.status POTFILES - cd .. \ - && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ - $(SHELL) ./config.status - -# Tell versions [3.59,3.63) of GNU make not to export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/bin/network/wget/po/POTFILES b/src/bin/network/wget/po/POTFILES deleted file mode 100644 index 25e4e522f9..0000000000 --- a/src/bin/network/wget/po/POTFILES +++ /dev/null @@ -1,31 +0,0 @@ - ../src/cmpt.c \ - ../src/connect.c \ - ../src/convert.c \ - ../src/cookies.c \ - ../src/ftp-basic.c \ - ../src/ftp-ls.c \ - ../src/ftp-opie.c \ - ../src/ftp.c \ - ../src/gen-md5.c \ - ../src/getopt.c \ - ../src/gnu-md5.c \ - ../src/hash.c \ - ../src/host.c \ - ../src/html-parse.c \ - ../src/html-url.c \ - ../src/http.c \ - ../src/init.c \ - ../src/log.c \ - ../src/main.c \ - ../src/mswindows.c \ - ../src/netrc.c \ - ../src/openssl.c \ - ../src/progress.c \ - ../src/ptimer.c \ - ../src/recur.c \ - ../src/res.c \ - ../src/retr.c \ - ../src/url.c \ - ../src/utils.c \ - ../src/version.c \ - ../src/xmalloc.c diff --git a/src/bin/network/wget/src/Makefile b/src/bin/network/wget/src/Makefile deleted file mode 100644 index 99952f98fe..0000000000 --- a/src/bin/network/wget/src/Makefile +++ /dev/null @@ -1,162 +0,0 @@ -# Makefile for `wget' utility -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -# In addition, as a special exception, the Free Software Foundation -# gives permission to link the code of its release of Wget with the -# OpenSSL project's "OpenSSL" library (or with modified versions of it -# that use the same license as the "OpenSSL" library), and distribute -# the linked executables. You must obey the GNU General Public License -# in all respects for all of the code used other than "OpenSSL". If you -# modify this file, you may extend this exception to your version of the -# file, but you are not obligated to do so. If you do not wish to do -# so, delete this exception statement from your version. - -# -# Version: 1.10.2 -# - -SHELL = /bin/sh - -top_builddir = .. - -top_srcdir = .. -srcdir = . - -ANSI2KNR = -o = .o - -prefix = /boot/home/config/wget/ -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -sysconfdir = ${prefix}/etc -localedir = $(prefix)/share/locale - -DESTDIR = - -CC = gcc -CPPFLAGS = -# The following line is losing on some versions of make! -DEFS = -DHAVE_CONFIG_H -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\" -CFLAGS = -O2 -Wall -Wno-implicit -LDFLAGS = -LIBS = -lsocket -exeext = - -INCLUDES = -I. -I$(srcdir) - -COMPILE = $(CC) $(INCLUDES) $(CPPFLAGS) $(DEFS) $(CFLAGS) -LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ -INSTALL = /bin/install -c -INSTALL_PROGRAM = ${INSTALL} -RM = rm -f -ETAGS = etags - -# Conditional compiles -ALLOCA = -MD5_OBJ = gen-md5$o gnu-md5$o -OPIE_OBJ = ftp-opie$o -NTLM_OBJ = -SSL_OBJ = -GETOPT_OBJ = - -OBJ = $(ALLOCA) cmpt$o connect$o convert$o cookies$o \ - ftp$o ftp-basic$o ftp-ls$o $(OPIE_OBJ) $(GETOPT_OBJ) hash$o \ - host$o html-parse$o html-url$o http$o $(NTLM_OBJ) init$o \ - log$o main$o $(MD5_OBJ) netrc$o progress$o ptimer$o recur$o \ - res$o retr$o safe-ctype$o snprintf$o $(SSL_OBJ) url$o \ - utils$o version$o xmalloc$o - -.SUFFIXES: -.SUFFIXES: .c .o ._c ._o - -.c.o: - $(COMPILE) -c $< - -.c._c: $(ANSI2KNR) - $(ANSI2KNR) $< > $*.tmp && mv $*.tmp $@ - -._c._o: - @echo $(COMPILE) -c $< - @rm -f _$*.c - @ln $< _$*.c && $(COMPILE) -c _$*.c && mv _$*.o $@ && rm _$*.c - -.c._o: $(ANSI2KNR) - $(ANSI2KNR) $< > $*.tmp && mv $*.tmp $*._c - @echo $(COMPILE) -c $*._c - @rm -f _$*.c - @ln $*._c _$*.c && $(COMPILE) -c _$*.c && mv _$*.o $@ && rm _$*.c - -# Dependencies for building - -wget$(exeext): $(OBJ) - $(LINK) $(OBJ) $(LIBS) - -ansi2knr: ansi2knr.o - $(CC) -o ansi2knr ansi2knr.o $(LIBS) - -# We make object files depend on every header. Rather than attempt to -# track dependencies, everything gets recompiled when a header -# changes. With a program of Wget's size this doesn't waste much -# time, and it's a lot safer than attempting to get all the -# dependencies right. - -$(OBJ): $(ANSI2KNR) \ - config-post.h connect.h convert.h cookies.h ftp.h gen-md5.h \ - getopt.h gnu-md5.h hash.h host.h html-parse.h http-ntlm.h \ - init.h log.h mswindows.h netrc.h options.h progress.h \ - ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h sysdep.h \ - url.h utils.h wget.h xmalloc.h - -# -# Dependencies for installing -# - -install: install.bin - -uninstall: uninstall.bin - -install.bin: wget$(exeext) - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir) - $(INSTALL_PROGRAM) wget$(exeext) $(DESTDIR)$(bindir)/wget$(exeext) - -uninstall.bin: - $(RM) $(DESTDIR)$(bindir)/wget$(exeext) - -# -# Dependencies for cleanup -# - -clean: - $(RM) *.o wget$(exeext) *~ *.bak core core.[0-9]* $(ANSI2KNR) *._o *._c - -distclean: clean - $(RM) Makefile config.h - -realclean: distclean - $(RM) TAGS config.h.in - -# -# Dependencies for maintenance -# - -subdir = src - -Makefile: Makefile.in ../config.status - cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status - -TAGS: *.c *.h - -$(ETAGS) *.c *.h diff --git a/src/bin/network/wget/stamp-h b/src/bin/network/wget/stamp-h deleted file mode 100644 index 9788f70238..0000000000 --- a/src/bin/network/wget/stamp-h +++ /dev/null @@ -1 +0,0 @@ -timestamp diff --git a/src/bin/network/wget/util/Makefile b/src/bin/network/wget/util/Makefile deleted file mode 100644 index b70688dff8..0000000000 --- a/src/bin/network/wget/util/Makefile +++ /dev/null @@ -1,49 +0,0 @@ -# Makefile for `wget' utility -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -# In addition, as a special exception, the Free Software Foundation -# gives permission to link the code of its release of Wget with the -# OpenSSL project's "OpenSSL" library (or with modified versions of it -# that use the same license as the "OpenSSL" library), and distribute -# the linked executables. You must obey the GNU General Public License -# in all respects for all of the code used other than "OpenSSL". If you -# modify this file, you may extend this exception to your version of the -# file, but you are not obligated to do so. If you do not wish to do -# so, delete this exception statement from your version. - -# -# Version: 1.10.2 -# - -SHELL = /bin/sh - -top_builddir = .. - -srcdir = . - - -RM = rm -f - -all: - -clean: - -distclean: clean - $(RM) Makefile - -realclean: distclean - diff --git a/src/bin/network/wget/windows/Makefile b/src/bin/network/wget/windows/Makefile deleted file mode 100644 index 8acf78d94a..0000000000 --- a/src/bin/network/wget/windows/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# Makefile for `wget' utility -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -# In addition, as a special exception, the Free Software Foundation -# gives permission to link the code of its release of Wget with the -# OpenSSL project's "OpenSSL" library (or with modified versions of it -# that use the same license as the "OpenSSL" library), and distribute -# the linked executables. You must obey the GNU General Public License -# in all respects for all of the code used other than "OpenSSL". If you -# modify this file, you may extend this exception to your version of the -# file, but you are not obligated to do so. If you do not wish to do -# so, delete this exception statement from your version. - -# -# Version: 1.10.2 -# - -# This file is just a stub, so that the build subprocess in `windows' -# succeeds. This directory is not used under Unix builds, normally -# affected by Makefile.in. - -SHELL = /bin/sh - -top_builddir = .. - -srcdir = . - - -RM = rm -f - -all: - -clean: - -distclean: clean - $(RM) Makefile - -realclean: distclean -