]> git.sur5r.net Git - openldap/blobdiff - build/mkversion
adaptive caching code
[openldap] / build / mkversion
index 4a807e0037719149b560b50bce6fd7cabda010d2..af6022238d7f742cfef1a3850a2f706413fb017c 100755 (executable)
@@ -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 <http://www.openldap.org/>.
+##
+## Copyright 1998-2004 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
 ## <http://www.OpenLDAP.org/license.html>.
-#
-# 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 <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2004 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>.
  */
+
 static const char copyright[] =
-"Copyright 1998-2003 The OpenLDAP Foundation\n"
+"Copyright 1998-2004 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__