]> git.sur5r.net Git - openldap/blobdiff - build/version.sh
ITS#5086
[openldap] / build / version.sh
index 9a24265273bded8493757965b93c2806caa580cc..3cd24703d98e0cc872bea032455789edd1d024ad 100755 (executable)
@@ -1,6 +1,8 @@
 #! /bin/sh
 # $OpenLDAP$
-## Copyright 1998-2003 The OpenLDAP Foundation.
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2007 The OpenLDAP Foundation.
 ## All rights reserved.
 ##
 ## Redistribution and use in source and binary forms, with or without
 ## 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>.
-#
+
 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}\"