diff --git a/CHANGES b/CHANGES index 4ed0909..70ae71e 100644 --- a/CHANGES +++ b/CHANGES @@ -41,6 +41,10 @@ Coding: Renamed xioopts_t to xioparms_t to avoid confusion with xioopts module. +Porting: + Removed Config/ because its contents have not been maintained for many + years. + Testing: Removed obselete parts from test.sh diff --git a/Config/Makefile.AIX-5-1 b/Config/Makefile.AIX-5-1 deleted file mode 100644 index 0226892..0000000 --- a/Config/Makefile.AIX-5-1 +++ /dev/null @@ -1,171 +0,0 @@ -# source: Makefile.AIX-5-1 -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D__GNUC__=2 -D__GNUC_MINOR__=9 -D_IBMR2 -D_POWER -D_AIX -D_AIX32 -D_AIX41 -D_AIX43 -D_AIX51 -D_LONG_LONG -D_IBMR2 -D_POWER -D_AIX -D_AIX32 -D_AIX41 -D_AIX43 -D_AIX51 -D_LONG_LONG -D__CHAR_UNSIGNED__ -D_ARCH_COM -CPPFLAGS = -I. -I/usr/local/include -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -L/usr/local/lib -lwrap -lbsd -L/opt/freeware/lib -lreadline -lssl -lcrypto -LDFLAGS = - -INSTALL = ./install-sh -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c fdname.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT socat.1 socat.html xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-4-20 Config/config.Linux-2-4-20.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.MacOS-10-2 Config/config.MacOS-10-2.h \ - Config/Makefile.SunOS-5-9 Config/config.SunOS-5-9.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-4-10 Config/config.FreeBSD-4-10.h \ - Config/Makefile.FreeBSD-5-4 Config/config.FreeBSD-5-4.h \ - Config/Makefile.OpenBSD-3-4 Config/config.OpenBSD-3-4.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -procan: procan_main.o procan.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ procan_main.o procan.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: xio.help -# - -strip: progs - strip $(PROGS) - -install: progs socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 socat.1 $(DESTDIR)$(MANDEST)/man1/ - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.AIX-5-3 b/Config/Makefile.AIX-5-3 deleted file mode 100644 index 2565510..0000000 --- a/Config/Makefile.AIX-5-3 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = cc -qlanglvl=extc89 -CCOPTS = $(CCOPT) - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lbsd -lssl -lcrypto -LDFLAGS = - -INSTALL = ./install-sh -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html doc/socat-genericsocket.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.Cygwin-1-5-25 b/Config/Makefile.Cygwin-1-5-25 deleted file mode 100644 index 1972656..0000000 --- a/Config/Makefile.Cygwin-1-5-25 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lreadline -lssl -lcrypto -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html doc/socat-genericsocket.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.DragonFly-2-8-2 b/Config/Makefile.DragonFly-2-8-2 deleted file mode 100644 index 2649204..0000000 --- a/Config/Makefile.DragonFly-2-8-2 +++ /dev/null @@ -1,198 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger 2001-2009 -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lssl -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE -Wall -Wno-parentheses $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE -Wall -Wno-parentheses $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html doc/socat-genericsocket.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h \ - Config/Makefile.AIX-5-3 Config/config.AIX-5-3.h \ - Config/Makefile.Cygwin-1-5-25 Config/config.Cygwin-1-5-25.h \ - Config/Makefile.MacOSX-10-5 Config/config.MacOSX-10-5.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.FreeBSD-6-1 b/Config/Makefile.FreeBSD-6-1 deleted file mode 100644 index f75443b..0000000 --- a/Config/Makefile.FreeBSD-6-1 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D_LONGLONG -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lreadline -lssl -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.HP-UX-B-11-11 b/Config/Makefile.HP-UX-B-11-11 deleted file mode 100644 index 22ad4b3..0000000 --- a/Config/Makefile.HP-UX-B-11-11 +++ /dev/null @@ -1,177 +0,0 @@ -# source: Makefile.HP-UX-B-11-11 -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lssl -LDFLAGS = - -INSTALL = /opt/imake/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-16 Config/config.Linux-2-6-16.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.SunOS-5-8 Config/config.SunOS-5-8.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-2-0-2 Config/config.NetBSD-2-0-2.h \ - Config/Makefile.OpenBSD-3-8 Config/config.OpenBSD-3-8.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procat - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.Linux-2-6-16 b/Config/Makefile.Linux-2-6-16 deleted file mode 100644 index a5ba1ac..0000000 --- a/Config/Makefile.Linux-2-6-16 +++ /dev/null @@ -1,177 +0,0 @@ -# source: Makefile.Linux-2-6-16 -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lreadline -lssl -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-16 Config/config.Linux-2-6-16.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.SunOS-5-8 Config/config.SunOS-5-8.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-2-0-2 Config/config.NetBSD-2-0-2.h \ - Config/Makefile.OpenBSD-3-8 Config/config.OpenBSD-3-8.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procat - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.Linux-2-6-24 b/Config/Makefile.Linux-2-6-24 deleted file mode 100644 index e39b63b..0000000 --- a/Config/Makefile.Linux-2-6-24 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lreadline -lssl -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.MacOSX-10-5 b/Config/Makefile.MacOSX-10-5 deleted file mode 100644 index 2a808e7..0000000 --- a/Config/Makefile.MacOSX-10-5 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D__DYNAMIC__ -CPPFLAGS = -I. -I/usr/local/include -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lresolv -lreadline -lssl -lcrypto -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE -L/usr/local/lib $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE -L/usr/local/lib $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html doc/socat-genericsocket.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.NetBSD-2-0-2 b/Config/Makefile.NetBSD-2-0-2 deleted file mode 100644 index 7caed82..0000000 --- a/Config/Makefile.NetBSD-2-0-2 +++ /dev/null @@ -1,171 +0,0 @@ -# source: Makefile.NetBSD-2-0-2 -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D__GNUC__=3 -D__GNUC_MINOR__=3 -D__GNUC_PATCHLEVEL__=3 -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lssl -lcrypto -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c fdname.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT socat.1 socat.html xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-4-20 Config/config.Linux-2-4-20.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.MacOS-10-2 Config/config.MacOS-10-2.h \ - Config/Makefile.SunOS-5-9 Config/config.SunOS-5-9.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-4-10 Config/config.FreeBSD-4-10.h \ - Config/Makefile.FreeBSD-5-4 Config/config.FreeBSD-5-4.h \ - Config/Makefile.OpenBSD-3-4 Config/config.OpenBSD-3-4.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -procan: procan_main.o procan.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ procan_main.o procan.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: xio.help -# - -strip: progs - strip $(PROGS) - -install: progs socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 socat.1 $(DESTDIR)$(MANDEST)/man1/ - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.NetBSD-4-0 b/Config/Makefile.NetBSD-4-0 deleted file mode 100644 index b0e67bf..0000000 --- a/Config/Makefile.NetBSD-4-0 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lssl -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.NetBSD-5-1 b/Config/Makefile.NetBSD-5-1 deleted file mode 100644 index b0e67bf..0000000 --- a/Config/Makefile.NetBSD-5-1 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lssl -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.OpenBSD-3-8 b/Config/Makefile.OpenBSD-3-8 deleted file mode 100644 index ae41d02..0000000 --- a/Config/Makefile.OpenBSD-3-8 +++ /dev/null @@ -1,171 +0,0 @@ -# source: Makefile.OpenBSD-3-8 -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D__GNUC__=3 -D__GNUC_MINOR__=3 -D__GNUC_PATCHLEVEL__=5 -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lreadline -lcurses -lssl -lcrypto -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c fdname.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT socat.1 socat.html xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-4-20 Config/config.Linux-2-4-20.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.MacOS-10-2 Config/config.MacOS-10-2.h \ - Config/Makefile.SunOS-5-9 Config/config.SunOS-5-9.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-4-10 Config/config.FreeBSD-4-10.h \ - Config/Makefile.FreeBSD-5-4 Config/config.FreeBSD-5-4.h \ - Config/Makefile.OpenBSD-3-4 Config/config.OpenBSD-3-4.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -procan: procan_main.o procan.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ procan_main.o procan.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: xio.help -# - -strip: progs - strip $(PROGS) - -install: progs socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 socat.1 $(DESTDIR)$(MANDEST)/man1/ - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.OpenBSD-4-3 b/Config/Makefile.OpenBSD-4-3 deleted file mode 100644 index 375c120..0000000 --- a/Config/Makefile.OpenBSD-4-3 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D__GNUC__=3 -D__GNUC_MINOR__=3 -D__GNUC_PATCHLEVEL__=5 -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lutil -lreadline -lcurses -lssl -lcrypto -LDFLAGS = - -INSTALL = /usr/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.SunOS-5-10 b/Config/Makefile.SunOS-5-10 deleted file mode 100644 index 5bd38be..0000000 --- a/Config/Makefile.SunOS-5-10 +++ /dev/null @@ -1,195 +0,0 @@ -# source: Makefile.in -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -datarootdir = ${prefix}/share -MANDEST = ${datarootdir}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -I/usr/sfw/include -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lrt -lsocket -lnsl -lresolv -lreadline -lcurses -L/usr/sfw/lib -lssl -lcrypto -LDFLAGS = - -INSTALL = ./install-sh -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-interface.c xio-listen.c xio-unix.c \ - xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c \ - xio-sctp.c xio-rawip.c \ - xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c xio-streams.c\ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c procan-cdefs.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h \ - xio-socket.h xio-interface.h xio-listen.h xio-unix.h \ - xio-ip.h xio-ip4.h xio-ip6.h xio-rawip.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-sctp.h \ - xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h xio-streams.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.yo doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-4-0 Config/config.NetBSD-4-0.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h - -all: progs doc - -scmclean: gitclean - -gitclean: distclean docclean - rm -f Makefile.bak configure - -doc: doc/socat.1 doc/socat.html - -docclean: - rm -f doc/socat.1 doc/socat.html - -doc/socat.1: doc/socat.yo - yodl2man -o $@ $+ - -doc/socat.html: doc/socat.yo - cd doc; yodl2html -o socat.html socat.yo; cd .. - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o procan-cdefs.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs $(srcdir)/doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 $(srcdir)/doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procan - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.SunOS-5-8 b/Config/Makefile.SunOS-5-8 deleted file mode 100644 index d221d6b..0000000 --- a/Config/Makefile.SunOS-5-8 +++ /dev/null @@ -1,177 +0,0 @@ -# source: Makefile.SunOS-5-8 -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -CPPFLAGS = -I. -I/usr/local/ssl/include -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lwrap -lrt -lsocket -lnsl -lresolv -lreadline -lcurses -L/usr/local/ssl/lib -lssl -lcrypto -LDFLAGS = - -INSTALL = ./install-sh -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c xio-tun.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c hostan.c fdname.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h hostan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h xio-tun.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT doc/socat.1 doc/socat.html doc/xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL doc/dest-unreach.css doc/socat-openssltunnel.html doc/socat-multicast.html doc/socat-tun.html -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-6-16 Config/config.Linux-2-6-16.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.SunOS-5-8 Config/config.SunOS-5-8.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-2-0-2 Config/config.NetBSD-2-0-2.h \ - Config/Makefile.OpenBSD-3-8 Config/config.OpenBSD-3-8.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -PROCAN_OBJS=procan_main.o procan.o hostan.o error.o sycls.o sysutils.o utils.o -procan: $(PROCAN_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(PROCAN_OBJS) $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: doc/xio.help -# - -strip: progs - strip $(PROGS) - -install: progs doc/socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 doc/socat.1 $(DESTDIR)$(MANDEST)/man1/ - -uninstall: - rm -f $(DESTDIR)$(BINDEST)/socat - rm -f $(DESTDIR)$(BINDEST)/procat - rm -f $(DESTDIR)$(BINDEST)/filan - rm -f $(DESTDIR)$(MANDEST)/man1/socat.1 - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/Makefile.Tru64-5-1B b/Config/Makefile.Tru64-5-1B deleted file mode 100644 index d5656e1..0000000 --- a/Config/Makefile.Tru64-5-1B +++ /dev/null @@ -1,171 +0,0 @@ -# source: Makefile.Tru64-5-1B -# Copyright Gerhard Rieger and contributors (see file CHANGES) -# Published under the GNU General Public License V.2, see file COPYING - -# note: @...@ forms are filled in by configure script - -SHELL = /bin/sh -AR = ar -RANLIB = ranlib - -.SUFFIXES: .c .o - -prefix = /usr/local -exec_prefix = ${prefix} - -BINDEST = ${exec_prefix}/bin - -MANDEST = ${prefix}/man - -srcdir = . - - -CC = gcc -CCOPTS = $(CCOPT) -Wall -Wno-parentheses - -SYSDEFS = -D__GNUC__=2 -D__GNUC_MINOR__=9 -Dunix -D__osf__ -D_LONGLONG -DSYSTYPE_BSD -D_SYSTYPE_BSD -D__unix__ -D__osf__ -D_LONGLONG -D__SYSTYPE_BSD__ -D_SYSTYPE_BSD -D__unix -D__SYSTYPE_BSD -D__LANGUAGE_C__ -D__LANGUAGE_C -DLANGUAGE_C -D__alpha -D__alpha__ -D__alpha_ev4__ -CPPFLAGS = -I. -#0 INCLS = -I. @V_INCL@ -DEFS = -DHAVE_CONFIG_H -LIBS = -lutil -lbsd -lrt -lreadline -lcurses -lssl -lcrypto -LDFLAGS = - -INSTALL = /usr/local/bin/install -c - -#OBJ = $(CSRC:.c=.o) $(GENSRC:.c=.o) - - -#0 CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(INCLS) -CFLAGS = -O -D_GNU_SOURCE $(CCOPTS) $(DEFS) $(CPPFLAGS) -CLIBS = $(LIBS) -#CLIBS = $(LIBS) -lm -lefence -XIOSRCS = xioinitialize.c xiohelp.c xioparam.c xiodiag.c xioopen.c xioopts.c \ - xiosignal.c xiosigchld.c xioread.c xiowrite.c \ - xiolayer.c xioshutdown.c xioclose.c xioexit.c \ - xio-process.c xio-fd.c xio-fdnum.c xio-stdio.c xio-pipe.c \ - xio-gopen.c xio-creat.c xio-file.c xio-named.c \ - xio-socket.c xio-listen.c xio-unix.c xio-ip.c xio-ip4.c xio-ip6.c xio-ipapp.c xio-tcp.c xio-socks.c xio-proxy.c xio-udp.c \ - xio-rawip.c \ - xio-progcall.c xio-exec.c xio-system.c xio-termios.c xio-readline.c \ - xio-pty.c xio-openssl.c \ - xio-ascii.c xiolockfile.c xio-tcpwrap.c xio-ext2.c -XIOOBJS = $(XIOSRCS:.c=.o) -UTLSRCS = error.c dalan.c procan.c sysutils.c utils.c nestlex.c filan.c sycls.c sslcls.c -UTLOBJS = $(UTLSRCS:.c=.o) -CFILES = $(XIOSRCS) $(UTLSRCS) socat.c procan_main.c filan_main.c fdname.c -OFILES = $(CFILES:.c=.o) -PROGS = socat procan filan - -HFILES = sycls.h sslcls.h error.h dalan.h procan.h filan.h sysincludes.h xio.h xioopen.h sysutils.h utils.h nestlex.h compat.h \ - xioconfig.h mytypes.h xioopts.h xiodiag.h xiohelp.h xiosysincludes.h \ - xiomodes.h xiolayer.h xio-process.h xio-fd.h xio-fdnum.h xio-stdio.h \ - xio-named.h xio-file.h xio-creat.h xio-gopen.h xio-pipe.h xio-socket.h \ - xio-listen.h xio-unix.h xio-rawip.h xio-ip.h xio-ip4.h xio-ip6.h \ - xio-ipapp.h xio-tcp.h xio-udp.h xio-socks.h xio-proxy.h xio-progcall.h xio-exec.h \ - xio-system.h xio-termios.h xio-readline.h \ - xio-pty.h xio-openssl.h \ - xio-ascii.h xiolockfile.h xio-tcpwrap.h xio-ext2.h - - -DOCFILES = README README.FIPS CHANGES FILES EXAMPLES PORTING SECURITY DEVELOPMENT socat.1 socat.html xio.help FAQ BUGREPORTS COPYING COPYING.OpenSSL -SHFILES = daemon.sh mail.sh ftp.sh readline.sh -TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ - proxy.sh socks4a-echo.sh testcert.conf -OSFILES = Config/Makefile.Linux-2-4-20 Config/config.Linux-2-4-20.h \ - Config/Makefile.AIX-5-1 Config/config.AIX-5-1.h \ - Config/Makefile.MacOS-10-2 Config/config.MacOS-10-2.h \ - Config/Makefile.SunOS-5-9 Config/config.SunOS-5-9.h \ - Config/Makefile.HP-UX-B-11-11 Config/config.HP-UX-B-11-11.h \ - Config/Makefile.FreeBSD-4-10 Config/config.FreeBSD-4-10.h \ - Config/Makefile.FreeBSD-5-4 Config/config.FreeBSD-5-4.h \ - Config/Makefile.OpenBSD-3-4 Config/config.OpenBSD-3-4.h \ - Config/Makefile.Tru64-5-1B Config/config.Tru64-5-1B.h - - -all: progs - -progs: $(PROGS) - -depend: $(CFILES) $(HFILES) - makedepend $(SYSDEFS) $(CFILES) - -socat: socat.o libxio.a - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ socat.o libxio.a $(CLIBS) - -procan: procan_main.o procan.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ procan_main.o procan.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -filan: filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ filan_main.o filan.o fdname.o error.o sycls.o sysutils.o utils.o $(CLIBS) - -libxio.a: $(XIOOBJS) $(UTLOBJS) - $(AR) r $@ $(XIOOBJS) $(UTLOBJS) - $(RANLIB) $@ - -doc: xio.help -# - -strip: progs - strip $(PROGS) - -install: progs socat.1 - mkdir -p $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 socat $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 procan $(DESTDIR)$(BINDEST) - $(INSTALL) -m 755 filan $(DESTDIR)$(BINDEST) - mkdir -p $(DESTDIR)$(MANDEST)/man1 - $(INSTALL) -m 644 socat.1 $(DESTDIR)$(MANDEST)/man1/ - -# make a GNU-zipped tar ball of the source files -dist: socat.tar.gz socat.tar.bz2 - -socat.tar.gz: socat.tar - gzip -9 socat.tar.gz - -socat.tar.bz2: socat.tar - bzip2 -9 socat.tar.bz2 - -VERSION = `sed 's/"//g' VERSION` -TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec - if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi - tar cf - $+ |(cd $(TARDIR); tar xf -) - tar cvf socat.tar $(TARDIR) - rm -f $(TARDIR)/COPYING # write protected - rm -r $(TARDIR) - -clean: - rm -f *.o libxio.a socat procan filan \ - socat.tar socat.tar.Z socat.tar.gz socat.tar.bz2 \ - socat.out compile.log test.log - -# remove all files that are generated from the original socat distribution -# note that Makefile is also removed, so you have to start with ./configure -# again -distclean: clean - rm -f config.status config.cache config.log config.h Makefile - rm -rf autom4te.cache - -info: socat - uname -a >socat.out - ./socat -V >>socat.out - ./socat -hh >>socat.out - -# perform some tests on socat -test: progs - ./test.sh - -cert: - # prepare critical files with correct permissions to avoid race cond - >cert.key - >cert.pem - chmod 600 cert.key cert.pem - # generate a private key - openssl genrsa -out cert.key 1024 - # generate a self signed cert - openssl req -new -key cert.key -x509 -days 3653 -out cert.crt - # ...enter fields - # generate the pem file - cat cert.key cert.crt >cert.pem - #echo use cert.pem on requestors side, i.e. with option cert=cert.pem - #echo use cert.crt on checkers side, i.e. with option cafile=cert.crt diff --git a/Config/config.AIX-5-1.h b/Config/config.AIX-5-1.h deleted file mode 100644 index 554c36d..0000000 --- a/Config/config.AIX-5-1.h +++ /dev/null @@ -1,450 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.AIX-5-1.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the hstrerror prototype */ -/* #undef HAVE_PROTOTYPE_HSTRERROR */ - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_STDINT_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -/* #undef HAVE_TERMIOS_ISPEED */ - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -/* #undef ISPEED_OFFSET */ - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the flock function */ -/* #undef HAVE_FLOCK */ - -/* Define if you have the openpty function */ -/* #undef HAVE_OPENPTY */ - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTMX */ - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -#define HAVE_DEV_PTC 1 - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 8 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 10 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE - #define HAVE_HOSTS_DENY_TABLE 1 -#else -/* #undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 6 /* unsigned long */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 3 /* int */ -#define HAVE_BASIC_OFF64_T 7 /* long long */ - -#define HAVE_BASIC_SOCKLEN_T 6 /* unsigned long */ - -#define HAVE_TYPEOF_ST_DEV 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 1 /* short */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 3 /* int */ -#define HAVE_TYPEOF_ST_BLOCKS 3 /* int */ - -#define HAVE_TYPEOF_ST64_DEV 4 /* unsigned int */ -#define HAVE_TYPEOF_ST64_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST64_NLINK 1 /* short */ -#define HAVE_TYPEOF_ST64_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST64_BLKSIZE 3 /* int */ -#define HAVE_TYPEOF_ST64_BLOCKS 3 /* int */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.AIX-5-3.h b/Config/config.AIX-5-3.h deleted file mode 100644 index f2c7e94..0000000 --- a/Config/config.AIX-5-3.h +++ /dev/null @@ -1,523 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_READLINE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_HISTORY_H */ - -/* Define if you have the readline library. */ -/* #undef HAVE_LIBREADLINE */ - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -/* #undef HAVE_TERMIOS_ISPEED */ - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -/* #undef ISPEED_OFFSET */ - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -/* #undef HAVE_FLOCK */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -/* #undef HAVE_OPENPTY */ - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTMX */ - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -#define HAVE_DEV_PTC 1 - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 8 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 10 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -/* #undef HAVE_HOSTS_ALLOW_TABLE */ -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 0 /* unknown, taking default */ -#define HAVE_BASIC_MODE_T 0 /* unknown, taking default */ -#define HAVE_BASIC_PID_T 0 /* unknown, taking default */ -#define HAVE_BASIC_UID_T 0 /* unknown, taking default */ -#define HAVE_BASIC_GID_T 0 /* unknown, taking default */ -#define HAVE_BASIC_TIME_T 0 /* unknown, taking default */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 0 /* unknown, taking default */ - -#define HAVE_TYPEOF_ST_DEV 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST_INO 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST_NLINK 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST_SIZE 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST_BLKSIZE 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST_BLOCKS 0 /* unknown, taking default */ - -#define HAVE_TYPEOF_ST64_DEV 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_INO 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_NLINK 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_SIZE 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_BLKSIZE 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_BLOCKS 0 /* unknown, taking default */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 0 /* unknown, taking default */ - -#define HAVE_TYPEOF_RLIM_MAX 0 /* unknown, taking default */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -#define HAVE_PROC_DIR_FD 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_SCTP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -/* #undef WITH_READLINE */ -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -/* #undef WITH_LIBWRAP */ -/* #undef HAVE_TCPD_H */ -/* #undef HAVE_LIBWRAP */ - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.Cygwin-1-5-25.h b/Config/config.Cygwin-1-5-25.h deleted file mode 100644 index 8840369..0000000 --- a/Config/config.Cygwin-1-5-25.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -/* #undef HAVE_GETADDRINFO */ - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -/* #undef HAVE_IF_INDEXTONAME */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -#define HAVE_PTY_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IP6_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_ARPA_NAMESER_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_RESOLV_H */ - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_NET_IF_DL_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -/* #undef HAVE_STRUCT_IPV6_MREQ */ - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -/* #undef HAVE_IP6_SOCKADDR */ - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 7 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 11 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 6 /* unsigned long */ -#define HAVE_BASIC_GID_T 6 /* unsigned long */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 3 /* int */ - -#define HAVE_TYPEOF_ST_DEV 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST_NLINK 2 /* unsigned short */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -#define HAVE_PROC_DIR_FD 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -/* #undef WITH_IP6 */ -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -/* #undef WITH_SCTP */ -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.DragonFly-2-8-2.h b/Config/config.DragonFly-2-8-2.h deleted file mode 100644 index 5b249f8..0000000 --- a/Config/config.DragonFly-2-8-2.h +++ /dev/null @@ -1,545 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger 2001-2011 */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -#define HAVE_MEMRCHR 1 - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_INTTYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET6_IN6_H */ - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_BSD_LIBUTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -#define HAVE_LIBUTIL_H 1 - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_READLINE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_HISTORY_H */ - -/* Define if you have the readline library. */ -/* #undef HAVE_LIBREADLINE */ - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -#define HAVE_STRUCT_IFREQ_IFR_INDEX 1 - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct in_pktinfo has component ipi_spec_dst */ -/* #undef HAVE_PKTINFO_IPI_SPEC_DST */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the SSLv2_client_method function. not in new openssl */ -/* #undef HAVE_SSLv2_client_method */ - -/* Define if you have the SSLv2_server_method function. not in new openssl */ -#define HAVE_SSLv2_server_method 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 2 /* unsigned short */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF_T 7 /* long long */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ -#define HAVE_BASIC_DEV_T 4 /* unsigned int */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 7 /* long long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define HAVE_SETGRENT 1 -#define HAVE_GETGRENT 1 -#define HAVE_ENDGRENT 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_SCTP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -/* #undef WITH_READLINE */ -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.FreeBSD-6-1.h b/Config/config.FreeBSD-6-1.h deleted file mode 100644 index 3cc3081..0000000 --- a/Config/config.FreeBSD-6-1.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -#define HAVE_LIBUTIL_H 1 - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -#define HAVE_STRUCT_IFREQ_IFR_INDEX 1 - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTMX */ - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 2 /* unsigned short */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 3 /* int */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 2 /* unsigned short */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 7 /* long long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_SCTP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.HP-UX-B-11-11.h b/Config/config.HP-UX-B-11-11.h deleted file mode 100644 index aa7743c..0000000 --- a/Config/config.HP-UX-B-11-11.h +++ /dev/null @@ -1,485 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.HP-UX-B-11-11.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -/* #undef HAVE_STRTOLL */ - -/* Define if you have the hstrerror function */ -/* #undef HAVE_HSTRERROR */ - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -/* #undef HAVE_PROTOTYPE_HSTRERROR */ - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_STDINT_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -/* #undef HAVE_SYS_SELECT_H */ - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_READLINE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_HISTORY_H */ - -/* Define if you have the readline library. */ -/* #undef HAVE_LIBREADLINE */ - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -/* #undef HAVE_TERMIOS_ISPEED */ - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -/* #undef ISPEED_OFFSET */ - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -#define HAVE_STRUCT_IFREQ_IFR_INDEX 1 - -/* Define if you have struct ifreq.ifr_ifindex */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROL */ - -/* define if your struct msghdr has msg_controllen */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROLLEN */ - -/* define if your struct msghdr has msg_flag */ -/* #undef HAVE_STRUCT_MSGHDR_MSGFLAGS */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -/* #undef HAVE_SETENV */ - -/* Define if you have the flock function */ -/* #undef HAVE_FLOCK */ - -/* Define if you have the openpty function */ -/* #undef HAVE_OPENPTY */ - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 9 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 11 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 5 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -/* #undef HAVE_HOSTS_ALLOW_TABLE */ -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 6 /* unsigned long */ -#define HAVE_BASIC_MODE_T 2 /* unsigned short */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 3 /* int */ -#define HAVE_BASIC_GID_T 3 /* int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 7 /* long long */ - -#define HAVE_BASIC_SOCKLEN_T 6 /* unsigned long */ - -#define HAVE_TYPEOF_ST_DEV 3 /* int */ -#define HAVE_TYPEOF_ST_INO 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_NLINK 2 /* unsigned short */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 5 /* long */ - -#define HAVE_TYPEOF_ST64_DEV 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_INO 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_NLINK 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_SIZE 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_BLKSIZE 0 /* unknown, taking default */ -#define HAVE_TYPEOF_ST64_BLOCKS 0 /* unknown, taking default */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -/* #undef HAVE_PROC_DIR */ - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -/* #undef WITH_READLINE */ -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -/* #undef WITH_LIBWRAP */ -/* #undef HAVE_TCPD_H */ -/* #undef HAVE_LIBWRAP */ - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.Linux-2-6-16.h b/Config/config.Linux-2-6-16.h deleted file mode 100644 index fd8020f..0000000 --- a/Config/config.Linux-2-6-16.h +++ /dev/null @@ -1,485 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.Linux-2-6-16.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -#define HAVE_MEMRCHR 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -#define HAVE_PTY_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_IF_TUN_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_FS_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_EXT2_FS_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 13 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -#define HAVE_STRUCT_IP_MREQN 1 - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex */ -#define HAVE_STRUCT_IFREQ_IFR_IFINDEX 1 - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -#define HAVE_TYPE_SIGHANDLER 1 - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -#define HAVE_FORMAT_Z 1 - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 9 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 11 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 7 /* long long */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST_INO 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 5 /* long */ - -#define HAVE_TYPEOF_ST64_DEV 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST64_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST64_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST64_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -#define HAVE_PROC_DIR_FD 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -#define WITH_ABSTRACT_UNIXSOCKET 1 -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -#define WITH_TUN 1 -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.Linux-2-6-24.h b/Config/config.Linux-2-6-24.h deleted file mode 100644 index 4936971..0000000 --- a/Config/config.Linux-2-6-24.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -#define HAVE_MEMRCHR 1 - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -#define HAVE_PTY_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_NET_IF_DL_H */ - -/* Define if you have the header file. */ -#define HAVE_LINUX_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_ERRQUEUE_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_IF_TUN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETPACKET_PACKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IF_ETHER_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_FS_H 1 - -/* Define if you have the header file. */ -#define HAVE_LINUX_EXT2_FS_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 13 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -#define HAVE_STRUCT_IP_MREQN 1 - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -#define HAVE_STRUCT_IFREQ_IFR_IFINDEX 1 - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -#define HAVE_STRUCT_IN_PKTINFO 1 - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -#define HAVE_TYPE_SIGHANDLER 1 - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -#define HAVE_FORMAT_Z 1 - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 9 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 11 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 7 /* long long */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST_INO 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 5 /* long */ - -#define HAVE_TYPEOF_ST64_DEV 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST64_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST64_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST64_BLOCKS 7 /* long long */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -#define HAVE_PROC_DIR_FD 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -#define WITH_ABSTRACT_UNIXSOCKET 1 -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -#define WITH_INTERFACE 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_SCTP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -#define WITH_TUN 1 -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.MacOSX-10-5.h b/Config/config.MacOSX-10-5.h deleted file mode 100644 index 4a0fce7..0000000 --- a/Config/config.MacOSX-10-5.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -#define HAVE_UTIL_H 1 - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 12 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 6 /* unsigned long */ -#define HAVE_BASIC_MODE_T 2 /* unsigned short */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 3 /* int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 2 /* unsigned short */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 3 /* int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -#define HAVE_TYPEOF_ST64_DEV 3 /* int */ -#define HAVE_TYPEOF_ST64_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_NLINK 2 /* unsigned short */ -#define HAVE_TYPEOF_ST64_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST64_BLKSIZE 3 /* int */ -#define HAVE_TYPEOF_ST64_BLOCKS 7 /* long long */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 3 /* int */ - -#define HAVE_TYPEOF_RLIM_MAX 8 /* unsigned long long */ - -/* Define if you have the /proc filesystem */ -/* #undef HAVE_PROC_DIR */ - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -/* #undef WITH_SCTP */ -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.NetBSD-2-0-2.h b/Config/config.NetBSD-2-0-2.h deleted file mode 100644 index dab7022..0000000 --- a/Config/config.NetBSD-2-0-2.h +++ /dev/null @@ -1,450 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.NetBSD-2-0-2.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -#define HAVE_UTIL_H 1 - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -/* #undef HAVE_LIBREADLINE */ - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -/* #undef HAVE_GRANTPT */ - -/* Define if you have the unlockpt function */ -/* #undef HAVE_UNLOCKPT */ - -/* Define if you have the ptsname function */ -/* #undef HAVE_PTSNAME */ - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTMX */ - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE - #define HAVE_HOSTS_DENY_TABLE 1 -#else -/* #undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 7 /* long long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -/* #undef WITH_READLINE */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.NetBSD-4-0.h b/Config/config.NetBSD-4-0.h deleted file mode 100644 index aa94d68..0000000 --- a/Config/config.NetBSD-4-0.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -#define HAVE_UTIL_H 1 - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_READLINE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_HISTORY_H */ - -/* Define if you have the readline library. */ -/* #undef HAVE_LIBREADLINE */ - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 7 /* long long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -/* #undef WITH_SCTP */ -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -/* #undef WITH_READLINE */ -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.NetBSD-5-1.h b/Config/config.NetBSD-5-1.h deleted file mode 100644 index aa94d68..0000000 --- a/Config/config.NetBSD-5-1.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -#define HAVE_UTIL_H 1 - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_READLINE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_READLINE_HISTORY_H */ - -/* Define if you have the readline library. */ -/* #undef HAVE_LIBREADLINE */ - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 7 /* long long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -/* #undef WITH_SCTP */ -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -/* #undef WITH_READLINE */ -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.OpenBSD-3-8.h b/Config/config.OpenBSD-3-8.h deleted file mode 100644 index ddd23d3..0000000 --- a/Config/config.OpenBSD-3-8.h +++ /dev/null @@ -1,450 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.OpenBSD-3-8.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_STDINT_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -#define HAVE_UTIL_H 1 - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -/* #undef HAVE_STRUCT_IOVEC */ - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -/* #undef HAVE_GRANTPT */ - -/* Define if you have the unlockpt function */ -/* #undef HAVE_UNLOCKPT */ - -/* Define if you have the ptsname function */ -/* #undef HAVE_PTSNAME */ - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTMX */ - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE - #define HAVE_HOSTS_DENY_TABLE 1 -#else -/* #undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 3 /* int */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 3 /* int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 8 /* unsigned long long */ - -/* Define if you have the /proc filesystem */ -/* #undef HAVE_PROC_DIR */ - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.OpenBSD-4-3.h b/Config/config.OpenBSD-4-3.h deleted file mode 100644 index 6b82d38..0000000 --- a/Config/config.OpenBSD-4-3.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -/* #undef HAVE_GETIPNODEBYNAME */ - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -#define HAVE_MEMRCHR 1 - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -#define HAVE_UTIL_H 1 - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -/* #undef HAVE_SYS_STROPTS_H */ - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -/* #undef HAVE_STRUCT_IFREQ_IFR_INDEX */ - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -#define HAVE_STRUCT_SOCKADDR_SALEN 1 - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -/* #undef HAVE_STRUCT_IOVEC */ - -/* define if your struct msghdr has msg_control */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROL 1 - -/* define if your struct msghdr has msg_controllen */ -#define HAVE_STRUCT_MSGHDR_MSGCONTROLLEN 1 - -/* define if your struct msghdr has msg_flag */ -#define HAVE_STRUCT_MSGHDR_MSGFLAGS 1 - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -/* #undef HAVE_GRANTPT */ - -/* Define if you have the unlockpt function */ -/* #undef HAVE_UNLOCKPT */ - -/* Define if you have the ptsname function */ -/* #undef HAVE_PTSNAME */ - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTMX */ - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT -1 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT -1 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 6 /* unsigned long */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 3 /* int */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 3 /* int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST_BLKSIZE 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 8 /* unsigned long long */ - -/* Define if you have the /proc filesystem */ -/* #undef HAVE_PROC_DIR */ - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -/* #undef WITH_SCTP */ -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.SunOS-5-10.h b/Config/config.SunOS-5-10.h deleted file mode 100644 index cf2eba2..0000000 --- a/Config/config.SunOS-5-10.h +++ /dev/null @@ -1,522 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* source: config.h.in */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the if_indextoname function. */ -#define HAVE_IF_INDEXTONAME 1 - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_DL_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_TYPES_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_ERRQUEUE_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETPACKET_PACKET_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_NETINET_IF_ETHER_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if you have the sa_family_t */ -#define HAVE_TYPE_SA_FAMILY_T 1 - -/* define if your struct sigaction has sa_sigaction */ -#define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 - -/* Define if your struct termios has component c_ispeed */ -/* #undef HAVE_TERMIOS_ISPEED */ - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -/* #undef ISPEED_OFFSET */ - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -#define HAVE_STRUCT_IFREQ_IFR_INDEX 1 - -/* Define if you have struct ifreq.ifr_ifindex; not on HPUX */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROL */ - -/* define if your struct msghdr has msg_controllen */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROLLEN */ - -/* define if your struct msghdr has msg_flag */ -/* #undef HAVE_STRUCT_MSGHDR_MSGFLAGS */ - -/* define if you have struct cmsghdr */ -#define HAVE_STRUCT_CMSGHDR 1 - -/* define if you have struct in_pktinfo */ -/* #undef HAVE_STRUCT_IN_PKTINFO */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the unsetenv function. not on HP-UX */ -#define HAVE_UNSETENV 1 - -/* Define if you have the flock function */ -/* #undef HAVE_FLOCK */ - -/* Define if you have the openpty function */ -/* #undef HAVE_OPENPTY */ - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 9 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 11 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 6 /* unsigned long */ -#define HAVE_BASIC_PID_T 5 /* long */ -#define HAVE_BASIC_UID_T 5 /* long */ -#define HAVE_BASIC_GID_T 5 /* long */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 7 /* long long */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_INO 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_NLINK 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 5 /* long */ - -#define HAVE_TYPEOF_ST64_DEV 6 /* unsigned long */ -#define HAVE_TYPEOF_ST64_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_NLINK 6 /* unsigned long */ -#define HAVE_TYPEOF_ST64_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST64_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST64_BLOCKS 7 /* long long */ - -#define HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC 5 /* long */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -#define HAVE_PROC_DIR_FD 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_GENERICSOCKET 1 -/* #undef WITH_INTERFACE */ -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_SCTP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -#define WITH_STREAMS 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.SunOS-5-8.h b/Config/config.SunOS-5-8.h deleted file mode 100644 index 4ccd97f..0000000 --- a/Config/config.SunOS-5-8.h +++ /dev/null @@ -1,485 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.SunOS-5-8.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -#define HAVE_STAT64 1 - -/* Define if you have the fstat64 function */ -#define HAVE_FSTAT64 1 - -/* Define if you have the lstat64 function */ -#define HAVE_LSTAT64 1 - -/* Define if you have the lseek64 function */ -#define HAVE_LSEEK64 1 - -/* Define if you have the truncate64 function */ -#define HAVE_TRUNCATE64 1 - -/* Define if you have the ftruncate64 function */ -#define HAVE_FTRUNCATE64 1 - -/* Define if you have the strtoll function */ -#define HAVE_STRTOLL 1 - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the inet_ntop function */ -#define HAVE_INET_NTOP 1 - -/* Define if you have the hstrerror prototype */ -#define HAVE_PROTOTYPE_HSTRERROR 1 - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_STDINT_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_PTY_H */ - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_ARPA_NAMESER_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_IF_TUN_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_FS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -/* #undef HAVE_TERMIOS_ISPEED */ - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -/* #undef ISPEED_OFFSET */ - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if you have struct ip_mreq */ -#define HAVE_STRUCT_IP_MREQ 1 - -/* Define if you have struct ip_mreqn */ -/* #undef HAVE_STRUCT_IP_MREQN */ - -/* Define if you have struct ipv6_mreq */ -#define HAVE_STRUCT_IPV6_MREQ 1 - -/* Define if you have struct ifreq */ -#define HAVE_STRUCT_IFREQ 1 - -/* Define if you have struct ifreq.ifr_index */ -#define HAVE_STRUCT_IFREQ_IFR_INDEX 1 - -/* Define if you have struct ifreq.ifr_ifindex */ -/* #undef HAVE_STRUCT_IFREQ_IFR_IFINDEX */ - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROL */ - -/* define if your struct msghdr has msg_controllen */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROLLEN */ - -/* define if your struct msghdr has msg_flag */ -/* #undef HAVE_STRUCT_MSGHDR_MSGFLAGS */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -#define HAVE_STRUCT_IP_IP_HL 1 - -/* Define if you have the setenv function */ -/* #undef HAVE_SETENV */ - -/* Define if you have the flock function */ -/* #undef HAVE_FLOCK */ - -/* Define if you have the openpty function */ -/* #undef HAVE_OPENPTY */ - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -#define HAVE_TYPE_SOCKLEN 1 - -/* Define if you have the struct stat64 type */ -#define HAVE_TYPE_STAT64 1 - -/* Define if you have the struct off64_t type */ -#define HAVE_TYPE_OFF64 1 - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* is uint64_t already defined? */ -#define HAVE_TYPE_UINT64 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 9 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 11 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 4 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -#define HAVE_HOSTS_ALLOW_TABLE 1 -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE -# define HAVE_HOSTS_DENY_TABLE 1 -#else -/* # undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 4 /* unsigned int */ -#define HAVE_BASIC_MODE_T 6 /* unsigned long */ -#define HAVE_BASIC_PID_T 5 /* long */ -#define HAVE_BASIC_UID_T 5 /* long */ -#define HAVE_BASIC_GID_T 5 /* long */ -#define HAVE_BASIC_TIME_T 5 /* long */ -#define HAVE_BASIC_OFF64_T 7 /* long long */ - -#define HAVE_BASIC_SOCKLEN_T 4 /* unsigned int */ - -#define HAVE_TYPEOF_ST_DEV 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_INO 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_NLINK 6 /* unsigned long */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 5 /* long */ - -#define HAVE_TYPEOF_ST64_DEV 6 /* unsigned long */ -#define HAVE_TYPEOF_ST64_INO 8 /* unsigned long long */ -#define HAVE_TYPEOF_ST64_NLINK 6 /* unsigned long */ -#define HAVE_TYPEOF_ST64_SIZE 7 /* long long */ -#define HAVE_TYPEOF_ST64_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST64_BLOCKS 7 /* long long */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -#define HAVE_PROC_DIR_FD 1 - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -/* #undef WITH_ABSTRACT_UNIXSOCKET */ -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -/* #undef WITH_TUN */ -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -#define WITH_LIBWRAP 1 -#define HAVE_TCPD_H 1 -#define HAVE_LIBWRAP 1 - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Config/config.Tru64-5-1B.h b/Config/config.Tru64-5-1B.h deleted file mode 100644 index 4e2f78f..0000000 --- a/Config/config.Tru64-5-1B.h +++ /dev/null @@ -1,450 +0,0 @@ -/* config.h. Generated by configure. */ -/* source: Config/config.Tru64-5-1B.h */ -/* Copyright Gerhard Rieger and contributors (see file CHANGES) */ -/* Published under the GNU General Public License V.2, see file COPYING */ - -#ifndef __config_h_included -#define __config_h_included 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct stat has st_blksize. */ -#define HAVE_ST_BLKSIZE 1 - -/* Define if your struct stat has st_blocks. */ -#define HAVE_ST_BLOCKS 1 - -/* Define if your struct stat has st_rdev. */ -#define HAVE_ST_RDEV 1 - -/* Define if you have the strftime function. */ -#define HAVE_STRFTIME 1 - -/* Define if you have that is POSIX.1 compatible. */ -#define HAVE_SYS_WAIT_H 1 - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you can safely include both and . */ -#define TIME_WITH_SYS_TIME 1 - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if you have the putenv function. */ -#define HAVE_PUTENV 1 - -/* Define if you have the select function. */ -#define HAVE_SELECT 1 - -/* Define if you have the poll function. */ -#define HAVE_POLL 1 - -/* Define if you have the socket function. */ -#define HAVE_SOCKET 1 - -/* Define if you have the strdup function. */ -#define HAVE_STRDUP 1 - -/* Define if you have the strerror function. */ -#define HAVE_STRERROR 1 - -/* Define if you have the strstr function. */ -#define HAVE_STRSTR 1 - -/* Define if you have the strtod function. */ -#define HAVE_STRTOD 1 - -/* Define if you have the strtol function. */ -#define HAVE_STRTOL 1 - -/* Define if you have the strtoul function. */ -#define HAVE_STRTOUL 1 - -/* Define if you have the uname function. */ -#define HAVE_UNAME 1 - -/* Define if you have the getpgid function. */ -#define HAVE_GETPGID 1 - -/* Define if you have the getsid function. */ -#define HAVE_GETSID 1 - -/* Define if you have the nanosleep function. */ -#define HAVE_NANOSLEEP 1 - -/* Define if you have the getaddrinfo function. */ -#define HAVE_GETADDRINFO 1 - -/* Define if you have the getipnodebyname function. */ -#define HAVE_GETIPNODEBYNAME 1 - -/* Define if you have the setgroups function. */ -#define HAVE_SETGROUPS 1 - -/* Define if you have the inet_aton function. */ -#define HAVE_INET_ATON 1 - -/* Define if you have the memrchr function. */ -/* #undef HAVE_MEMRCHR */ - -/* Define if you have the sigaction function */ -#define HAVE_SIGACTION 1 - -/* Define if you have the stat64 function */ -/* #undef HAVE_STAT64 */ - -/* Define if you have the fstat64 function */ -/* #undef HAVE_FSTAT64 */ - -/* Define if you have the lstat64 function */ -/* #undef HAVE_LSTAT64 */ - -/* Define if you have the lseek64 function */ -/* #undef HAVE_LSEEK64 */ - -/* Define if you have the truncate64 function */ -/* #undef HAVE_TRUNCATE64 */ - -/* Define if you have the ftruncate64 function */ -/* #undef HAVE_FTRUNCATE64 */ - -/* Define if you have the strtoll function */ -/* #undef HAVE_STRTOLL */ - -/* Define if you have the hstrerror function */ -#define HAVE_HSTRERROR 1 - -/* Define if you have the hstrerror prototype */ -/* #undef HAVE_PROTOTYPE_HSTRERROR */ - -/* Define if you have the header file. */ -#define HAVE_FCNTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_LIMITS_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_PARAM_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_IOCTL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_TIME_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYSLOG_H 1 - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if you have the header file. */ -#define HAVE_PWD_H 1 - -/* Define if you have the header file. */ -#define HAVE_GRP_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_STDINT_H */ - -/* Define if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_POLL_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_SOCKET_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETDB_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UN_H 1 - -/* Define if you have the header file. */ -#define HAVE_PTY_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IN_SYSTM_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_TCP_H 1 - -/* Define if you have the header file. */ -#define HAVE_NETINET_IP6_H 1 - -/* Define if you have the header file. */ -#define HAVE_RESOLV_H 1 - -/* Define if you have the header file. */ -#define HAVE_TERMIOS_H 1 - -/* Define if you have the header file. */ -#define HAVE_NET_IF_H 1 - -/* Define if you have the header file. */ -#define HAVE_SYS_UTSNAME_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_SELECT_H 1 - -/* Define if you have the header file. (AIX) */ -#define HAVE_SYS_FILE_H 1 - -/* Define if you have the header file. (NetBSD, OpenBSD: openpty()) */ -/* #undef HAVE_UTIL_H */ - -/* Define if you have the header file. (FreeBSD: openpty()) */ -/* #undef HAVE_LIBUTIL_H */ - -/* Define if you have the header file. (stream opts on SunOS)*/ -#define HAVE_SYS_STROPTS_H 1 - -/* Define if you have the header file. */ -#define HAVE_REGEX_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_LINUX_EXT2_FS_H */ - -/* Define if you have the header file. */ -#define HAVE_READLINE_READLINE_H 1 - -/* Define if you have the header file. */ -#define HAVE_READLINE_HISTORY_H 1 - -/* Define if you have the readline library. */ -#define HAVE_LIBREADLINE 1 - -/* Define if you have the m library (-lm). */ -/* #undef HAVE_LIBM */ - -/* Define if you have the floor function */ -/* #undef HAVE_FLOOR */ - -/* some platforms need _XOPEN_EXTENDED_SOURCE to get syslog headers (AIX4.1) */ -/* #undef _XOPEN_EXTENDED_SOURCE */ - -/* fdset may have component fds_bits or __fds_bits */ -#define HAVE_FDS_BITS 1 - -/* Define if your struct termios has component c_ispeed */ -#define HAVE_TERMIOS_ISPEED 1 - -/* the offset of c_ispeed in struct termios - usable in an speed_t array. - Applies only when HAVE_TERMIOS_ISPEED is set */ -#define ISPEED_OFFSET 9 - -/* the offset of c_ospeed in struct termios - see ISPEED_OFFSET */ -#ifdef ISPEED_OFFSET -# define OSPEED_OFFSET (ISPEED_OFFSET+1) -#else -/* # undef OSPEED_OFFSET */ -#endif - -/* Define if your termios.h likes _SVID3 defined */ -/* #undef _SVID3 */ - -/* Define if you have struct timespec (e.g. for nanosleep) */ -#define HAVE_STRUCT_TIMESPEC 1 - -/* Define if you have struct linger */ -#define HAVE_STRUCT_LINGER 1 - -/* Define if your struct sockaddr has sa_len */ -/* #undef HAVE_STRUCT_SOCKADDR_SALEN */ - -/* there are several implementations of sockaddr_in6 */ -#define HAVE_IP6_SOCKADDR 0 - -/* Define if you have struct iovec */ -#define HAVE_STRUCT_IOVEC 1 - -/* define if your struct msghdr has msg_control */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROL */ - -/* define if your struct msghdr has msg_controllen */ -/* #undef HAVE_STRUCT_MSGHDR_MSGCONTROLLEN */ - -/* define if your struct msghdr has msg_flag */ -/* #undef HAVE_STRUCT_MSGHDR_MSGFLAGS */ - -/* define if your struct ip has ip_hl; otherwise assume ip_vhl */ -/* #undef HAVE_STRUCT_IP_IP_HL */ - -/* Define if you have the setenv function */ -#define HAVE_SETENV 1 - -/* Define if you have the flock function */ -#define HAVE_FLOCK 1 - -/* Define if you have the openpty function */ -#define HAVE_OPENPTY 1 - -/* Define if you have the grantpt function */ -#define HAVE_GRANTPT 1 - -/* Define if you have the unlockpt function */ -#define HAVE_UNLOCKPT 1 - -/* Define if you have the ptsname function */ -#define HAVE_PTSNAME 1 - -/* Define if you have the /dev/ptmx pseudo terminal multiplexer */ -#define HAVE_DEV_PTMX 1 - -/* Define if you have the /dev/ptc pseudo terminal multiplexer */ -/* #undef HAVE_DEV_PTC */ - -/* Define if you have the long long type */ -#define HAVE_TYPE_LONGLONG 1 - -/* is socklen_t already typedef'd? */ -/* #undef HAVE_TYPE_SOCKLEN */ - -/* Define if you have the struct stat64 type */ -/* #undef HAVE_TYPE_STAT64 */ - -/* Define if you have the struct off64_t type */ -/* #undef HAVE_TYPE_OFF64 */ - -/* is sighandler_t already typedef'd? */ -/* #undef HAVE_TYPE_SIGHANDLER */ - -/* is uint8_t already defined? */ -#define HAVE_TYPE_UINT8 1 - -/* is uint16_t already defined? */ -#define HAVE_TYPE_UINT16 1 - -/* is uint32_t already defined? */ -#define HAVE_TYPE_UINT32 1 - -/* Define if you have the printf "Z" modifier */ -/* #undef HAVE_FORMAT_Z */ - -/* Define the shift offset of the CRDLY mask */ -#define CRDLY_SHIFT 12 - -/* Define the shift offset of the TABDLY mask */ -#define TABDLY_SHIFT 10 - -/* Define the shift offset of the CSIZE mask */ -#define CSIZE_SHIFT 8 - -/* Define if you have tcpwrappers (libwrap, tcpd) and it declares hosts_allow_table */ -/* #undef HAVE_HOSTS_ALLOW_TABLE */ -#if defined(HAVE_HOSTS_ALLOW_TABLE) && HAVE_HOSTS_ALLOW_TABLE - #define HAVE_HOSTS_DENY_TABLE 1 -#else -/* #undef HAVE_HOSTS_DENY_TABLE */ -#endif - -/* 1..short, 3..int, 5..long; 2,4,6..unsigned */ -#define HAVE_BASIC_SIZE_T 6 /* unsigned long */ -#define HAVE_BASIC_MODE_T 4 /* unsigned int */ -#define HAVE_BASIC_PID_T 3 /* int */ -#define HAVE_BASIC_UID_T 4 /* unsigned int */ -#define HAVE_BASIC_GID_T 4 /* unsigned int */ -#define HAVE_BASIC_TIME_T 3 /* int */ -#define HAVE_BASIC_OFF64_T 0 /* unknown, taking default */ - -#define HAVE_BASIC_SOCKLEN_T 0 /* unknown, taking default */ - -#define HAVE_TYPEOF_ST_DEV 3 /* int */ -#define HAVE_TYPEOF_ST_INO 4 /* unsigned int */ -#define HAVE_TYPEOF_ST_NLINK 2 /* unsigned short */ -#define HAVE_TYPEOF_ST_SIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLKSIZE 5 /* long */ -#define HAVE_TYPEOF_ST_BLOCKS 5 /* long */ - -/* #undef HAVE_TYPEOF_ST64_DEV */ -/* #undef HAVE_TYPEOF_ST64_INO */ -/* #undef HAVE_TYPEOF_ST64_NLINK */ -/* #undef HAVE_TYPEOF_ST64_SIZE */ -/* #undef HAVE_TYPEOF_ST64_BLKSIZE */ -/* #undef HAVE_TYPEOF_ST64_BLOCKS */ - -/* #undef HAVE_TYPEOF_STRUCT_TIMEVAL_TV_USEC */ - -#define HAVE_TYPEOF_RLIM_MAX 6 /* unsigned long */ - -/* Define if you have the /proc filesystem */ -#define HAVE_PROC_DIR 1 - -/* Define if you have the /proc/$$/fd directories */ -/* #undef HAVE_PROC_DIR_FD */ - -#define WITH_HELP 1 -#define WITH_STDIO 1 -#define WITH_FDNUM 1 -#define WITH_FILE 1 -#define WITH_CREAT 1 -#define WITH_GOPEN 1 -#define WITH_TERMIOS 1 -#define WITH_PIPE 1 -#define WITH_UNIX 1 -#define WITH_IP4 1 -#define WITH_IP6 1 -#define WITH_RAWIP 1 -#define WITH_TCP 1 -#define WITH_UDP 1 -#define WITH_LISTEN 1 -#define WITH_SOCKS4 1 -#define WITH_SOCKS4A 1 -#define WITH_PROXY 1 -#define WITH_EXEC 1 -#define WITH_SYSTEM 1 -#define WITH_READLINE 1 -#define WITH_PTY 1 -#define WITH_EXT2 1 -#define WITH_OPENSSL 1 -/* #undef WITH_FIPS */ -/* #undef OPENSSL_FIPS */ -/* #undef WITH_LIBWRAP */ -/* #undef HAVE_TCPD_H */ -/* #undef HAVE_LIBWRAP */ - -#define WITH_SYCLS 1 -#define WITH_FILAN 1 -#define WITH_RETRY 1 - -#define WITH_MSGLEVEL 0 - -#endif /* !defined(__config_h_included) */ diff --git a/Makefile.in b/Makefile.in index fb97eb2..3ee3b44 100644 --- a/Makefile.in +++ b/Makefile.in @@ -78,15 +78,6 @@ SHFILES = daemon.sh mail.sh ftp.sh readline.sh \ socat_buildscript_for_android.sh TESTFILES = test.sh socks4echo.sh proxyecho.sh gatherinfo.sh readline-test.sh \ proxy.sh socks4a-echo.sh -OSFILES = Config/Makefile.Linux-2-6-24 Config/config.Linux-2-6-24.h \ - Config/Makefile.SunOS-5-10 Config/config.SunOS-5-10.h \ - Config/Makefile.FreeBSD-6-1 Config/config.FreeBSD-6-1.h \ - Config/Makefile.NetBSD-5-1 Config/config.NetBSD-5-1.h \ - Config/Makefile.OpenBSD-4-3 Config/config.OpenBSD-4-3.h \ - Config/Makefile.AIX-5-3 Config/config.AIX-5-3.h \ - Config/Makefile.Cygwin-1-5-25 Config/config.Cygwin-1-5-25.h \ - Config/Makefile.MacOSX-10-5 Config/config.MacOSX-10-5.h \ - Config/Makefile.DragonFly-2-8-2 Config/config.DragonFly-2-8-2.h all: progs doc @@ -156,7 +147,7 @@ socat.tar.bz2: socat.tar VERSION = `sed 's/"//g' VERSION` TARDIR = socat-$(VERSION) -socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(OSFILES) $(TESTFILES) socat.spec \ +socat.tar: configure.in configure Makefile.in config.h.in install-sh VERSION $(CFILES) $(HFILES) $(DOCFILES) $(SHFILES) $(TESTFILES) socat.spec \ configure.ac if [ ! -d $(TARDIR) ]; then mkdir $(TARDIR); fi tar cf - $+ |(cd $(TARDIR); tar xf -)