From efa6438b8e9d372c7ee65bed1863291e32ca5279 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Wed, 26 Nov 2003 21:47:52 +0000 Subject: [PATCH] Bumped version to 0.39.3 --- ChangeLog | 8 +++----- config.h.in | 4 ++-- configure | 18 +++++++++--------- configure.in | 8 ++++---- 4 files changed, 18 insertions(+), 20 deletions(-) diff --git a/ChangeLog b/ChangeLog index 443c6718..4e2e338f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,8 @@ $Id$ +v0.39.3 26-Nov-2003 -v0.39.2 21-Nov-2003 - - NOTE: Don't use this version yet, mbtelnetd might be removed again! - Well, almost certain that it will be removed. This version is - in cvs because I need to test it on several machines at once. +v0.39.2 21-Nov-2003 - 26-Nov-2003 general: Incoming telnet mailer connections are handled using a telnet @@ -21,6 +18,7 @@ v0.39.2 21-Nov-2003 because we now default to telnet port 23 for ITN calls. Incoming calls using the -t itn commandline parameters are not supported anymore, they need to go via mbtelind. + Outgoing telnet doesn't work! mbtelind: New program, a incoming telnet proxy daemon to accept incoming diff --git a/config.h.in b/config.h.in index 852067ae..6df3eadf 100644 --- a/config.h.in +++ b/config.h.in @@ -8,8 +8,8 @@ #undef VERSION_REVISION #undef VERSION -/* Compile experimental telnet code */ -#undef USE_TELNET +/* Compile experimental code (may not be present) */ +#undef USE_EXPERIMENT /* Define if you have the snprintf function. */ #undef HAVE_SNPRINTF diff --git a/configure b/configure index 5c55a6eb..5988c180 100755 --- a/configure +++ b/configure @@ -840,7 +840,7 @@ if test -n "$ac_init_help"; then 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 + --enable-experiment Compile experimental code Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] @@ -1273,7 +1273,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html PACKAGE="mbsebbs" MAJOR="0" MINOR="39" -REVISION="2" +REVISION="3" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2003 M. Broek" @@ -1782,17 +1782,17 @@ 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 +# Check whether --enable-experiment or --disable-experiment was given. +if test "${enable_experiment+set}" = set; then + enableval="$enable_experiment" + experiment=$enableval else - telnet=no + experiment=no fi; -if test "$telnet" = "yes"; then +if test "$experiment" = "yes"; then cat >>confdefs.h <<\_ACEOF -#define USE_TELNET 1 +#define USE_EXPERIMENT 1 _ACEOF fi diff --git a/configure.in b/configure.in index 87b7363a..071a6703 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,7 @@ dnl After changeing the version number, run autoconf! PACKAGE="mbsebbs" MAJOR="0" MINOR="39" -REVISION="2" +REVISION="3" VERSION="$MAJOR.$MINOR.$REVISION" COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved" SHORTRIGHT="Copyright (C) 1997-2003 M. Broek" @@ -54,10 +54,10 @@ AC_PATH_PROG(CHOWN, chown, chown, /bin:/sbin:/usr/bin:/usr/sbin:) CFLAGS="$CFLAGS -Wall -Wshadow -Wwrite-strings -Wstrict-prototypes" dnl Additional commandline switches -AC_ARG_ENABLE(telnet, [ --enable-telnet Compile experimental telnet code], [ telnet=$enableval ], [ telnet=no ]) +AC_ARG_ENABLE(experiment, [ --enable-experiment Compile experimental code], [ experiment=$enableval ], [ experiment=no ]) -if test "$telnet" = "yes"; then - AC_DEFINE(USE_TELNET) +if test "$experiment" = "yes"; then + AC_DEFINE(USE_EXPERIMENT) fi dnl Defines for MBSE BBS (must use tests or --enable-stuff later)