1999-09-11 06:25:02 +08:00
|
|
|
#! /bin/sh
|
|
|
|
# $OpenLDAP$
|
2000-06-14 03:56:15 +08:00
|
|
|
## Copyright 1998-2000 The OpenLDAP Foundation
|
1999-09-11 06:25:02 +08:00
|
|
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
|
|
## of this package for details.
|
|
|
|
#
|
|
|
|
# Create a version.c file
|
|
|
|
#
|
|
|
|
PACKAGE=OpenLDAP
|
|
|
|
VERSION=unknown
|
|
|
|
SYMBOL=__Version
|
|
|
|
static=static
|
|
|
|
const=const
|
|
|
|
while :
|
|
|
|
do case "$1" in
|
|
|
|
-p)
|
|
|
|
PACKAGE=$2
|
|
|
|
shift; shift ;;
|
|
|
|
-v)
|
|
|
|
VERSION=$2
|
|
|
|
shift; shift ;;
|
|
|
|
|
|
|
|
-c)
|
|
|
|
const=
|
|
|
|
shift ;;
|
|
|
|
-n)
|
|
|
|
SYMBOL=$2
|
|
|
|
shift; shift ;;
|
|
|
|
-s)
|
|
|
|
static=
|
|
|
|
shift ;;
|
|
|
|
|
|
|
|
# -*) shift ;;
|
|
|
|
*)
|
|
|
|
break ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if test $# != 1 ; then
|
|
|
|
echo 'usage: mkversion [-c] [-s] [-p package] [-v version] application'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
APPLICATION=$1
|
|
|
|
WHEN=`date`
|
|
|
|
WHOWHERE="$USER@`uname -n`:`pwd`"
|
|
|
|
|
|
|
|
cat << __EOF__
|
|
|
|
/*
|
2000-06-14 03:56:15 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation
|
1999-09-11 06:25:02 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
|
|
* of this package for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
$static $const char $SYMBOL[] =
|
|
|
|
"@(#) \$$PACKAGE: $APPLICATION $VERSION ($WHEN) \$\n\t$WHOWHERE\n";
|
|
|
|
|
|
|
|
__EOF__
|