X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fversion.sh;h=b6d003ce18782c38f48c4fd5302df9af41b3f7b6;hb=79d27e960063db4487521a0202ac32633faa9744;hp=2308efee2e30b0350e503091481dfff1e6e22a11;hpb=6939c531700652491f4be4688c6a1f35a1ab8a18;p=openldap diff --git a/build/version.sh b/build/version.sh index 2308efee2e..b6d003ce18 100755 --- a/build/version.sh +++ b/build/version.sh @@ -1,37 +1,45 @@ #! /bin/sh # $OpenLDAP$ -## Copyright 2000-2003 The OpenLDAP Foundation -## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory -## of this package for details. -# -ol_package=OpenLDAP -ol_major=2 -ol_minor=X -ol_patch=X -ol_api_inc=000000 -ol_api_lib=0:0:0 -ol_release_date="00/00/0000" +## This work is part of OpenLDAP Software . +## +## 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 +## . + +DIR=`dirname $0` +. $DIR/version.var if test $ol_patch != X ; then ol_version=${ol_major}.${ol_minor}.${ol_patch} + ol_api_lib_release=${ol_major}.${ol_minor} ol_type=Release elif test $ol_minor != X ; then ol_version=${ol_major}.${ol_minor}.${ol_patch} + ol_api_lib_release=${ol_major}.${ol_minor}-releng ol_type=Engineering else ol_version=${ol_major}.${ol_minor} + ol_api_lib_release=${ol_major}-devel ol_type=Devel - ol_api_lib=0:0:0 fi ol_string="${ol_package} ${ol_version}-${ol_type}" +ol_api_lib_version="${ol_api_current}:${ol_api_revision}:${ol_api_age}" echo OL_PACKAGE=\"${ol_package}\" echo OL_MAJOR=$ol_major echo OL_MINOR=$ol_minor echo OL_PATCH=$ol_patch echo OL_API_INC=$ol_api_inc -echo OL_API_LIB=$ol_api_lib +echo OL_API_LIB_RELEASE=$ol_api_lib_release +echo OL_API_LIB_VERSION=$ol_api_lib_version echo OL_VERSION=$ol_version echo OL_TYPE=$ol_type echo OL_STRING=\"${ol_string}\"