1999-04-29 03:59:00 +08:00
|
|
|
#! /bin/sh
|
2003-11-26 12:17:25 +08:00
|
|
|
# Create a version.c file
|
1999-08-30 16:08:00 +08:00
|
|
|
# $OpenLDAP$
|
2003-11-26 12:17:25 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## Copyright 1998-2003 The OpenLDAP Foundation.
|
|
|
|
## All rights reserved.
|
|
|
|
##
|
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
## Public License.
|
|
|
|
##
|
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
2003-11-26 12:17:25 +08:00
|
|
|
|
1999-04-29 03:59:00 +08:00
|
|
|
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
|
|
|
|
WHOWHERE="$USER@`uname -n`:`pwd`"
|
|
|
|
|
|
|
|
cat << __EOF__
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation
|
2002-02-11 01:50:58 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY. See COPYRIGHT file in top level directory
|
1999-04-29 03:59:00 +08:00
|
|
|
* of this package for details.
|
|
|
|
*/
|
2002-02-11 01:50:58 +08:00
|
|
|
static const char copyright[] =
|
2003-01-04 04:20:47 +08:00
|
|
|
"Copyright 1998-2003 The OpenLDAP Foundation\n"
|
2002-02-11 01:50:58 +08:00
|
|
|
"COPYING RESTRICTIONS APPLY\n";
|
1999-04-29 03:59:00 +08:00
|
|
|
|
|
|
|
$static $const char $SYMBOL[] =
|
2003-03-29 02:35:50 +08:00
|
|
|
"@(#) \$$PACKAGE: $APPLICATION $VERSION (" __DATE__ " " __TIME__ ") \$\n\t$WHOWHERE\n";
|
1999-04-29 03:59:00 +08:00
|
|
|
|
|
|
|
__EOF__
|