2002-10-30 12:57:05 +01:00
|
|
|
# $Id: RELEASE,v 11.123 2002/09/13 22:16:02 bostic Exp $
|
2001-03-05 01:42:05 +01:00
|
|
|
|
2002-10-30 12:57:05 +01:00
|
|
|
DB_VERSION_MAJOR=4
|
|
|
|
DB_VERSION_MINOR=1
|
|
|
|
DB_VERSION_PATCH=24
|
|
|
|
DB_VERSION="$DB_VERSION_MAJOR.$DB_VERSION_MINOR.$DB_VERSION_PATCH"
|
|
|
|
|
|
|
|
DB_VERSION_UNIQUE_NAME=`printf "_%d%03d" $DB_VERSION_MAJOR $DB_VERSION_MINOR`
|
2001-03-05 01:42:05 +01:00
|
|
|
|
2002-10-30 12:57:05 +01:00
|
|
|
DB_RELEASE_DATE=`date "+%B %e, %Y"`
|
|
|
|
DB_VERSION_STRING="Sleepycat Software: Berkeley DB $DB_VERSION: ($DB_RELEASE_DATE)"
|
2002-11-11 00:08:42 +01:00
|
|
|
|
|
|
|
# this file is included by all s_* scripts, so it's the way to apply
|
|
|
|
# hacks :)
|
|
|
|
|
|
|
|
# bitkeeper doesn't like somebody to mess with permissions!
|
|
|
|
chmod()
|
|
|
|
{
|
2002-11-19 13:02:19 +01:00
|
|
|
echo "chmod $1 $2" >/dev/null
|
2002-11-11 00:08:42 +01:00
|
|
|
}
|
2002-11-11 20:16:45 +01:00
|
|
|
|
|
|
|
# useful trick to find auto-generated files
|
|
|
|
#cmp()
|
|
|
|
#{
|
|
|
|
# echo "==>> CMP $1 $2" >/dev/tty
|
|
|
|
# /usr/bin/cmp "$1" "$2"
|
|
|
|
#}
|
|
|
|
|