Upgraded to v0.36.00 stable
This commit is contained in:
parent
89555d8f4a
commit
a72bfbd930
11
ChangeLog
11
ChangeLog
@ -1,12 +1,12 @@
|
||||
$Id$
|
||||
|
||||
|
||||
v0.36.00 Pending release.
|
||||
v0.36.00 26-Dec-2002.
|
||||
|
||||
update:
|
||||
These are the total update instructions for the upgrade from
|
||||
v0.33.21 until v0.36.00 (not yet released). Read and perform
|
||||
this upgrade with great care, this one is quite complicated.
|
||||
v0.33.21 until v0.36.00. Read and perform this upgrade with
|
||||
great care, this one is quite complicated.
|
||||
Make sure you don't have download files with case differences
|
||||
in download directories like FileName.zip and FILENAME.ZIP.
|
||||
With this upgrade files with such names will be deleted!
|
||||
@ -70,10 +70,9 @@ v0.36.00 Pending release.
|
||||
|
||||
MBSEBBS History.
|
||||
|
||||
v0.35.07 11-Dec-2002
|
||||
v0.35.07 11-Dec-2002 - 26-Dec-2002
|
||||
|
||||
general:
|
||||
This may become release 0.36.00 (again).
|
||||
On FreeBSD the lsz and lrz programs are found as alternate for
|
||||
lz and sz.
|
||||
|
||||
@ -98,6 +97,8 @@ v0.35.07 11-Dec-2002
|
||||
was stored in a netmail packet of a different network and the
|
||||
netmail misses a lot of kludges. Better logging of processed
|
||||
netmails.
|
||||
If a TIC file woth lowercase 8.3 filename is received the name
|
||||
is forced to uppercase 8.3.
|
||||
|
||||
mbcico:
|
||||
Code cleanup in opentcp, better handling of given ports and
|
||||
|
@ -20,7 +20,7 @@ Login as root and type the following commands to do the basic install:
|
||||
cd /tmp
|
||||
tar xfvz /pathtopackage/@PACKAGE@-@VERSION@.tar.gz
|
||||
cd @PACKAGE@-@VERSION@
|
||||
sh ./SETUP.sh
|
||||
bash ./SETUP.sh
|
||||
|
||||
This will setup a new directory structure @prefix@ and create's some
|
||||
necessary users. If this in successfull, logout and login as user "mbse".
|
||||
@ -37,6 +37,7 @@ make install
|
||||
exit
|
||||
@prefix@/bin/mbtask
|
||||
|
||||
Note: On XxxBSD systems, use gmake instead of make.
|
||||
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.
|
||||
|
2
README
2
README
@ -20,6 +20,6 @@ these will not be released anymore but are only available via cvs.
|
||||
|
||||
The even minor version numbers will be stable releases, they will be available
|
||||
at http://mbse.sourceforge.net and at 2:280/2802. The first version using this
|
||||
scheme is 0.36.1
|
||||
scheme is 0.36.00
|
||||
|
||||
|
||||
|
@ -20,6 +20,7 @@ mbsebbs-0_33_20_current 10-Feb-2002 Start 0.33.20 current development.
|
||||
mbsebbs-0_33_20_final 04-Jun-2002 Version 0.33.20 finished (not released).
|
||||
mbsebbs-0_33_21_release 04-Jun-2002 Version 0.33.21 release.
|
||||
mbsebbs-0_35_01_current 05-Jun-2002 Start 0.35.01 development.
|
||||
mbsebbs-0_36_00_release 26-Dec-2002 Version 0.36.00 release.
|
||||
|
||||
|
||||
CVS usage.
|
||||
|
2
TODO
2
TODO
@ -1,6 +1,6 @@
|
||||
$Id$
|
||||
|
||||
MBSE BBS V0.35.05 TODO list.
|
||||
MBSE BBS V0.36.00 TODO list.
|
||||
----------------------------
|
||||
|
||||
These are a list of things that must be implemented one way or
|
||||
|
2
configure
vendored
2
configure
vendored
@ -1196,7 +1196,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbtask mbsetup unix lang examples html
|
||||
|
||||
|
||||
PACKAGE="mbsebbs"
|
||||
VERSION="0.35.07"
|
||||
VERSION="0.36.00"
|
||||
COPYRIGHT="Copyright (C) 1997-2002 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2002 M. Broek"
|
||||
GROUP="bbs"
|
||||
|
@ -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.07"
|
||||
VERSION="0.36.00"
|
||||
COPYRIGHT="Copyright (C) 1997-2002 Michiel Broek, All Rights Reserved"
|
||||
SHORTRIGHT="Copyright (C) 1997-2002 M. Broek"
|
||||
GROUP="bbs"
|
||||
|
@ -235,7 +235,9 @@ int LoadTic(char *inb, char *tfn)
|
||||
|
||||
} else if (strncasecmp(Temp, "file ", 5) == 0) {
|
||||
strncpy(TIC.TicIn.File, Temp+5, 80);
|
||||
|
||||
for (i = 0; i < strlen(TIC.TicIn.File); i++)
|
||||
TIC.TicIn.File[i] = toupper(TIC.TicIn.File[i]);
|
||||
|
||||
} else if (strncasecmp(Temp, "fullname ", 9) == 0) {
|
||||
strncpy(TIC.TicIn.FullName, Temp+9, 80);
|
||||
|
||||
|
@ -84,7 +84,7 @@ taskcomm.o: ../config.h libs.h ../lib/structs.h taskstat.h taskregs.h taskdisk.h
|
||||
taskinfo.o: ../config.h libs.h ../lib/structs.h taskinfo.h
|
||||
taskstat.o: ../config.h libs.h ../lib/structs.h ../lib/mberrors.h taskstat.h callstat.h outstat.h taskutil.h
|
||||
mbtask.o: ../config.h libs.h ../lib/structs.h ../paths.h ../lib/mberrors.h signame.h taskstat.h taskutil.h taskregs.h taskcomm.h callstat.h outstat.h nodelist.h ports.h calllist.h ping.h mbtask.h
|
||||
outstat.o: ../config.h libs.h ../lib/structs.h taskutil.h taskstat.h scanout.h nodelist.h callstat.h ports.h outstat.h
|
||||
outstat.o: ../config.h libs.h ../lib/structs.h ../lib/mberrors.h taskutil.h taskstat.h scanout.h nodelist.h callstat.h ports.h outstat.h
|
||||
signame.o: ../config.h signame.h
|
||||
taskdisk.o: ../config.h libs.h ../lib/structs.h taskdisk.h taskutil.h
|
||||
taskregs.o: ../config.h libs.h ../lib/structs.h taskstat.h taskregs.h taskutil.h
|
||||
|
Reference in New Issue
Block a user