X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkversion;h=5c020b8bbe3f880e8157a3847a493e789f654a11;hb=31101e19628a1ce6c6fabf1385efb79915bf4bb4;hp=4a807e0037719149b560b50bce6fd7cabda010d2;hpb=e3a4c4ec9c640c03612f90bec1e95bfc55a54947;p=openldap diff --git a/build/mkversion b/build/mkversion index 4a807e0037..5c020b8bbe 100755 --- a/build/mkversion +++ b/build/mkversion @@ -1,6 +1,9 @@ #! /bin/sh +# Create a version.c file # $OpenLDAP$ -## Copyright 1998-2003 The OpenLDAP Foundation. +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2011 The OpenLDAP Foundation. ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without @@ -10,9 +13,7 @@ ## A copy of this license is available in the file LICENSE in the ## top-level directory of the distribution or, alternatively, at ## . -# -# Create a version.c file -# + PACKAGE=OpenLDAP VERSION=unknown SYMBOL=__Version @@ -52,16 +53,26 @@ APPLICATION=$1 WHOWHERE="$USER@`uname -n`:`pwd`" cat << __EOF__ -/* - * Copyright 1998-2003 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-2011 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-2003 The OpenLDAP Foundation\n" +"Copyright 1998-2011 The OpenLDAP Foundation. All rights reserved.\n" "COPYING RESTRICTIONS APPLY\n"; $static $const char $SYMBOL[] = -"@(#) \$$PACKAGE: $APPLICATION $VERSION (" __DATE__ " " __TIME__ ") \$\n\t$WHOWHERE\n"; +"@(#) \$$PACKAGE: $APPLICATION $VERSION (" __DATE__ " " __TIME__ ") \$\n" +"\t$WHOWHERE\n"; __EOF__