Bumped version to 0.39.3

This commit is contained in:
Michiel Broek 2003-11-26 21:47:52 +00:00
parent 88d139c314
commit efa6438b8e
4 changed files with 18 additions and 20 deletions

View File

@ -1,11 +1,8 @@
$Id$ $Id$
v0.39.3 26-Nov-2003
v0.39.2 21-Nov-2003 v0.39.2 21-Nov-2003 - 26-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.
general: general:
Incoming telnet mailer connections are handled using a telnet 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. because we now default to telnet port 23 for ITN calls.
Incoming calls using the -t itn commandline parameters are not Incoming calls using the -t itn commandline parameters are not
supported anymore, they need to go via mbtelind. supported anymore, they need to go via mbtelind.
Outgoing telnet doesn't work!
mbtelind: mbtelind:
New program, a incoming telnet proxy daemon to accept incoming New program, a incoming telnet proxy daemon to accept incoming

View File

@ -8,8 +8,8 @@
#undef VERSION_REVISION #undef VERSION_REVISION
#undef VERSION #undef VERSION
/* Compile experimental telnet code */ /* Compile experimental code (may not be present) */
#undef USE_TELNET #undef USE_EXPERIMENT
/* Define if you have the snprintf function. */ /* Define if you have the snprintf function. */
#undef HAVE_SNPRINTF #undef HAVE_SNPRINTF

18
configure vendored
View File

@ -840,7 +840,7 @@ if test -n "$ac_init_help"; then
Optional Features: Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-telnet Compile experimental telnet code --enable-experiment Compile experimental code
Optional Packages: Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --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" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="39" MINOR="39"
REVISION="2" REVISION="3"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek" SHORTRIGHT="Copyright (C) 1997-2003 M. Broek"
@ -1782,17 +1782,17 @@ fi
CFLAGS="$CFLAGS -Wall -Wshadow -Wwrite-strings -Wstrict-prototypes" CFLAGS="$CFLAGS -Wall -Wshadow -Wwrite-strings -Wstrict-prototypes"
# Check whether --enable-telnet or --disable-telnet was given. # Check whether --enable-experiment or --disable-experiment was given.
if test "${enable_telnet+set}" = set; then if test "${enable_experiment+set}" = set; then
enableval="$enable_telnet" enableval="$enable_experiment"
telnet=$enableval experiment=$enableval
else else
telnet=no experiment=no
fi; fi;
if test "$telnet" = "yes"; then if test "$experiment" = "yes"; then
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define USE_TELNET 1 #define USE_EXPERIMENT 1
_ACEOF _ACEOF
fi fi

View File

@ -11,7 +11,7 @@ dnl After changeing the version number, run autoconf!
PACKAGE="mbsebbs" PACKAGE="mbsebbs"
MAJOR="0" MAJOR="0"
MINOR="39" MINOR="39"
REVISION="2" REVISION="3"
VERSION="$MAJOR.$MINOR.$REVISION" VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved" COPYRIGHT="Copyright (C) 1997-2003 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2003 M. Broek" 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" CFLAGS="$CFLAGS -Wall -Wshadow -Wwrite-strings -Wstrict-prototypes"
dnl Additional commandline switches 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 if test "$experiment" = "yes"; then
AC_DEFINE(USE_TELNET) AC_DEFINE(USE_EXPERIMENT)
fi fi
dnl Defines for MBSE BBS (must use tests or --enable-stuff later) dnl Defines for MBSE BBS (must use tests or --enable-stuff later)