X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkversion;h=3fd9565ca242bcff7fbae43c6a99d2531e7fee66;hb=2389028ec5a644c817cb60b2135898f33674ae7d;hp=5fbfa490a9113ad8d4a71220c770269121f677f4;hpb=8f921243eba058043e9c811e1b257267dbd22390;p=openldap diff --git a/build/mkversion b/build/mkversion index 5fbfa490a9..3fd9565ca2 100755 --- a/build/mkversion +++ b/build/mkversion @@ -1,10 +1,19 @@ #! /bin/sh -## Copyright 1998,1999 The OpenLDAP Foundation -## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory -## of this package for details. -# # Create a version.c file -# +# $OpenLDAP$ +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2012 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 +## . + PACKAGE=OpenLDAP VERSION=unknown SYMBOL=__Version @@ -41,17 +50,29 @@ if test $# != 1 ; then fi APPLICATION=$1 -WHEN=`date` WHOWHERE="$USER@`uname -n`:`pwd`" cat << __EOF__ -/* - * Copyright 1998,1999 The OpenLDAP Foundation - * COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory - * of this package for details. +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2012 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 + * . */ +static const char copyright[] = +"Copyright 1998-2012 The OpenLDAP Foundation. All rights reserved.\n" +"COPYING RESTRICTIONS APPLY\n"; + $static $const char $SYMBOL[] = -"@(#) \$$PACKAGE: $APPLICATION $VERSION ($WHEN) \$\n\t$WHOWHERE\n"; +"@(#) \$$PACKAGE: $APPLICATION $VERSION (" __DATE__ " " __TIME__ ") \$\n" +"\t$WHOWHERE\n"; __EOF__