Bumped version

This commit is contained in:
Michiel Broek 2004-06-20 09:57:08 +00:00
parent c3af2ae90b
commit 16b6b5840c
3 changed files with 28 additions and 2 deletions

View File

@ -17,6 +17,9 @@
/* Compile new binkp driver */
#undef USE_NEWBINKP
/* Compile full newsgate */
#undef USE_NEWSGATE
/* Has strcasestr function */
#undef HAVE_STRCASESTR

17
configure vendored
View File

@ -845,6 +845,7 @@ Optional Features:
--enable-debugging Compile for debugging
--enable-optimize Enable CPU optimize
--enable-newbinkp Compile New Binkp code
--enable-newsgate Compile with newsgate
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@ -1309,7 +1310,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbnntp mbtask mbsetup unix lang example
PACKAGE="mbsebbs"
MAJOR="0"
MINOR="61"
REVISION="0"
REVISION="1"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
@ -3058,6 +3059,20 @@ _ACEOF
fi
# Check whether --enable-newsgate or --disable-newsgate was given.
if test "${enable_newsgate+set}" = set; then
enableval="$enable_newsgate"
newsgate=$enableval
else
newsgate=no
fi;
if test "$newsgate" = "ues"; then
cat >>confdefs.h <<\_ACEOF
#define USE_NEWSGATE 1
_ACEOF
fi
cat >>confdefs.h <<_ACEOF
#define RESTAMP_OLD_POSTINGS 21

View File

@ -13,7 +13,7 @@ dnl
PACKAGE="mbsebbs"
MAJOR="0"
MINOR="61"
REVISION="0"
REVISION="1"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
@ -98,6 +98,14 @@ if test "$newbinkp" = "yes"; then
AC_DEFINE(USE_NEWBINKP)
fi
dnl
dnl Enable full newsgate, this was default upto 0.50.0
dnl
AC_ARG_ENABLE(newsgate, [ --enable-newsgate Compile with newsgate], [ newsgate=$enableval ], [ newsgate=no ])
if test "$newsgate" = "ues"; then
AC_DEFINE(USE_NEWSGATE)
fi
dnl
dnl Defines for MBSE BBS (must use tests or --enable-stuff later)