Bumped version number
This commit is contained in:
parent
9c5300b9b6
commit
1d819c9201
@ -4,7 +4,14 @@ $Id$
|
||||
MBSEBBS History.
|
||||
|
||||
|
||||
v0.35.04 29-Sep-2002
|
||||
v0.35.05 19-Oct-2002
|
||||
|
||||
general:
|
||||
This may become release 0.36.00
|
||||
|
||||
|
||||
|
||||
v0.35.04 29-Sep-2002 - 19-Oct-2002.
|
||||
|
||||
general:
|
||||
Added mail and files security flags for nodes.
|
||||
|
10
INSTALL.in
10
INSTALL.in
@ -22,7 +22,7 @@ tar xfvz /pathtopackage/@PACKAGE@-@VERSION@.tar.gz
|
||||
cd @PACKAGE@-@VERSION@
|
||||
sh ./SETUP.sh
|
||||
|
||||
This will setup a new directory structure /opt/mbse and create's some
|
||||
This will setup a new directory structure @prefix@ and create's some
|
||||
necessary users. If this in successfull, logout and login as user "mbse".
|
||||
To build and install mbse bbs type the following commands:
|
||||
|
||||
@ -35,9 +35,9 @@ su
|
||||
[type rootpassword]
|
||||
make install
|
||||
exit
|
||||
/opt/mbse/bin/mbtask
|
||||
@prefix@/bin/mbtask
|
||||
|
||||
The next step is to read the documentation in /opt/mbse/html with a browser.
|
||||
The next step is to read the documentation in @prefix@/html with a browser.
|
||||
After your system is configured and tested type "sh ./CRON.sh" to install
|
||||
a default crontab for the bbs.
|
||||
|
||||
@ -153,8 +153,8 @@ Installation Names
|
||||
==================
|
||||
|
||||
By default, `make install' will install the package's files in
|
||||
`/opt/mbse/bin', `/opt/mbse/etc', etc. You can specify an
|
||||
installation prefix other than `/opt/mbse' by giving `configure' the
|
||||
`@prefix@/bin', `@prefix@/etc', etc. You can specify an
|
||||
installation prefix other than `@prefix@' by giving `configure' the
|
||||
option `--prefix=PATH'. This is NOT ADVISED for MBSE BBS!!!
|
||||
|
||||
You can specify separate installation prefixes for
|
||||
|
@ -21,7 +21,6 @@ RANLIB = @RANLIB@
|
||||
SHELL = /bin/sh
|
||||
ECHO = echo -e
|
||||
CC = @CC@
|
||||
YACC = @YACC@
|
||||
AWK = @AWK@
|
||||
TAR = @TAR@
|
||||
ZIP = @ZIP@
|
||||
|
2
TODO
2
TODO
@ -1,6 +1,6 @@
|
||||
$Id$
|
||||
|
||||
MBSE BBS V0.35.04 TODO list.
|
||||
MBSE BBS V0.35.05 TODO list.
|
||||
----------------------------
|
||||
|
||||
These are a list of things that must be implemented one way or
|
||||
|
55
configure
vendored
55
configure
vendored
@ -1196,7 +1196,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
|
||||
|
||||
|
||||
PACKAGE="mbsebbs"
|
||||
VERSION="0.35.04"
|
||||
VERSION="0.35.05"
|
||||
COPYRIGHT="Copyright (C) 1997-2002 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2002 M. Broek"
|
||||
GROUP="bbs"
|
||||
@ -2264,47 +2264,6 @@ else
|
||||
RANLIB="$ac_cv_prog_RANLIB"
|
||||
fi
|
||||
|
||||
for ac_prog in 'bison -y' byacc
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
||||
if test "${ac_cv_prog_YACC+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
if test -n "$YACC"; then
|
||||
ac_cv_prog_YACC="$YACC" # Let the user override the test.
|
||||
else
|
||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||
for as_dir in $PATH
|
||||
do
|
||||
IFS=$as_save_IFS
|
||||
test -z "$as_dir" && as_dir=.
|
||||
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||
if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||
ac_cv_prog_YACC="$ac_prog"
|
||||
echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
fi
|
||||
fi
|
||||
YACC=$ac_cv_prog_YACC
|
||||
if test -n "$YACC"; then
|
||||
echo "$as_me:$LINENO: result: $YACC" >&5
|
||||
echo "${ECHO_T}$YACC" >&6
|
||||
else
|
||||
echo "$as_me:$LINENO: result: no" >&5
|
||||
echo "${ECHO_T}no" >&6
|
||||
fi
|
||||
|
||||
test -n "$YACC" && break
|
||||
done
|
||||
test -n "$YACC" || YACC="yacc"
|
||||
|
||||
# Extract the first word of "tar", so it can be a program name with args.
|
||||
set dummy tar; ac_word=$2
|
||||
echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
@ -6981,10 +6940,8 @@ else
|
||||
echo "${ECHO_T}no" >&6
|
||||
fi
|
||||
|
||||
for ac_prog in gzip
|
||||
do
|
||||
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
||||
set dummy $ac_prog; ac_word=$2
|
||||
# Extract the first word of "gzip", so it can be a program name with args.
|
||||
set dummy gzip; ac_word=$2
|
||||
echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
||||
if test "${ac_cv_path_GZIP+set}" = set; then
|
||||
@ -7009,6 +6966,7 @@ do
|
||||
done
|
||||
done
|
||||
|
||||
test -z "$ac_cv_path_GZIP" && ac_cv_path_GZIP="no-gzip-found-during-configure"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
@ -7022,10 +6980,6 @@ else
|
||||
echo "${ECHO_T}no" >&6
|
||||
fi
|
||||
|
||||
test -n "$GZIP" && break
|
||||
done
|
||||
test -n "$GZIP" || GZIP="no-gzip-found-during-configure"
|
||||
|
||||
# Extract the first word of "arc", so it can be a program name with args.
|
||||
set dummy arc; ac_word=$2
|
||||
echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||
@ -8576,7 +8530,6 @@ s,@INSTALL@,$INSTALL,;t t
|
||||
s,@SET_MAKE@,$SET_MAKE,;t t
|
||||
s,@RANLIB@,$RANLIB,;t t
|
||||
s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
|
||||
s,@YACC@,$YACC,;t t
|
||||
s,@TAR@,$TAR,;t t
|
||||
s,@ZIP@,$ZIP,;t t
|
||||
s,@CHOWN@,$CHOWN,;t t
|
||||
|
@ -9,7 +9,7 @@ AC_SUBST(SUBDIRS)
|
||||
dnl General settings for MBSE BBS
|
||||
dnl After changeing the version number, run autoconf!
|
||||
PACKAGE="mbsebbs"
|
||||
VERSION="0.35.04"
|
||||
VERSION="0.35.05"
|
||||
COPYRIGHT="Copyright (C) 1997-2002 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2002 M. Broek"
|
||||
GROUP="bbs"
|
||||
@ -37,7 +37,6 @@ AC_CHECK_PROG(INSTALL, ginstall, ginstall)
|
||||
AC_CHECK_PROG(INSTALL, install, install)
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_RANLIB
|
||||
AC_PROG_YACC
|
||||
AC_CHECK_PROG(TAR, tar, tar)
|
||||
AC_CHECK_PROG(ZIP, zip, zip)
|
||||
AC_PATH_PROG(CHOWN, chown, chown, /bin:/sbin:/usr/bin:/usr/sbin:)
|
||||
@ -157,7 +156,7 @@ AC_CHECK_FUNCS(getspnam getutent initgroups updwtmp updwtmpx)
|
||||
|
||||
dnl Check for external programs
|
||||
AC_PATH_PROG(COMPRESS,compress,no-compress-found-during-configure)
|
||||
AC_PATH_PROGS(GZIP,gzip,no-gzip-found-during-configure)
|
||||
AC_PATH_PROG(GZIP,gzip,no-gzip-found-during-configure)
|
||||
AC_PATH_PROG(ARC,arc)
|
||||
AC_PATH_PROG(ARJ,arj)
|
||||
AC_PATH_PROG(UNARJ,unarj)
|
||||
|
Reference in New Issue
Block a user