Added incoming telnet proxy

This commit is contained in:
Michiel Broek
2003-11-22 21:42:44 +00:00
parent 202719cb45
commit 24cd311b9c
23 changed files with 660 additions and 22 deletions

20
configure vendored
View File

@@ -837,6 +837,11 @@ if test -n "$ac_init_help"; then
cat <<\_ACEOF
Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-telnet Compile experimental telnet code
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
@@ -1777,6 +1782,21 @@ fi
CFLAGS="$CFLAGS -Wall -Wshadow -Wwrite-strings -Wstrict-prototypes"
# Check whether --enable-telnet or --disable-telnet was given.
if test "${enable_telnet+set}" = set; then
enableval="$enable_telnet"
telnet=$enableval
else
telnet=no
fi;
if test "$telnet" = "yes"; then
cat >>confdefs.h <<\_ACEOF
#define USE_TELNET 1
_ACEOF
fi
cat >>confdefs.h <<_ACEOF
#define RESTAMP_OLD_POSTINGS 21
_ACEOF