Bumped version
This commit is contained in:
parent
c3af2ae90b
commit
16b6b5840c
@ -17,6 +17,9 @@
|
|||||||
/* Compile new binkp driver */
|
/* Compile new binkp driver */
|
||||||
#undef USE_NEWBINKP
|
#undef USE_NEWBINKP
|
||||||
|
|
||||||
|
/* Compile full newsgate */
|
||||||
|
#undef USE_NEWSGATE
|
||||||
|
|
||||||
/* Has strcasestr function */
|
/* Has strcasestr function */
|
||||||
#undef HAVE_STRCASESTR
|
#undef HAVE_STRCASESTR
|
||||||
|
|
||||||
|
17
configure
vendored
17
configure
vendored
@ -845,6 +845,7 @@ Optional Features:
|
|||||||
--enable-debugging Compile for debugging
|
--enable-debugging Compile for debugging
|
||||||
--enable-optimize Enable CPU optimize
|
--enable-optimize Enable CPU optimize
|
||||||
--enable-newbinkp Compile New Binkp code
|
--enable-newbinkp Compile New Binkp code
|
||||||
|
--enable-newsgate Compile with newsgate
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--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"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="61"
|
MINOR="61"
|
||||||
REVISION="0"
|
REVISION="1"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
|
||||||
@ -3058,6 +3059,20 @@ _ACEOF
|
|||||||
|
|
||||||
fi
|
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
|
cat >>confdefs.h <<_ACEOF
|
||||||
#define RESTAMP_OLD_POSTINGS 21
|
#define RESTAMP_OLD_POSTINGS 21
|
||||||
|
10
configure.in
10
configure.in
@ -13,7 +13,7 @@ dnl
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="0"
|
MAJOR="0"
|
||||||
MINOR="61"
|
MINOR="61"
|
||||||
REVISION="0"
|
REVISION="1"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2004 Michiel Broek, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
|
SHORTRIGHT="Copyright (C) 1997-2004 M. Broek"
|
||||||
@ -98,6 +98,14 @@ if test "$newbinkp" = "yes"; then
|
|||||||
AC_DEFINE(USE_NEWBINKP)
|
AC_DEFINE(USE_NEWBINKP)
|
||||||
fi
|
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
|
||||||
dnl Defines for MBSE BBS (must use tests or --enable-stuff later)
|
dnl Defines for MBSE BBS (must use tests or --enable-stuff later)
|
||||||
|
Reference in New Issue
Block a user