X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fversion.sh;h=f409278951a7f2d078c3aa2c70f7a08922db073f;hb=f682ee0918d4e1c5c347073c8d3a6948d1c8bf2e;hp=1dd2a21ed7a2f24db6f2e4b5ec0378465563d82b;hpb=f1f1b0f69b560aca08745e3e01faddb3321fd264;p=openldap diff --git a/build/version.sh b/build/version.sh index 1dd2a21ed7..f409278951 100755 --- a/build/version.sh +++ b/build/version.sh @@ -2,7 +2,7 @@ # $OpenLDAP$ ## This work is part of OpenLDAP Software . ## -## Copyright 1998-2004 The OpenLDAP Foundation. +## Copyright 1998-2005 The OpenLDAP Foundation. ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without @@ -18,24 +18,28 @@ DIR=`dirname $0` 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 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}\"