#! /bin/echo AutoGen_Version_5.6,_but_this_should_be_sourced
# -*- Mode: sh -*-
# VERSION --- Set version info for GNU-ish tool use
#
# Copyright (C) 1999-2005 Bruce Korb
#
# Time-stamp:        "2005-06-18 08:48:13 bkorb"
# Author:            Bruce Korb <bkorb@gnu.org>
         MAINTAINER='Bruce Korb <bkorb@gnu.org>'
# Last Committed:    $Date: 2005/06/26 16:26:45 $
# ----------------------------------------------------------------------

AG_MAJOR_VERSION=5
AG_MINOR_VERSION=7
AG_REVISION=$AG_MAJOR_VERSION.$AG_MINOR_VERSION
AG_PATCHLEVEL=".1"
AG_VERSION=$AG_REVISION$AG_PATCHLEVEL

# Making releases:
#   AG_PATCHLEVEL=""
#   AG_MINOR_VERSION += 1 (OR AG_MINOR_VERSION = 0 && AG_MAJOR_VERSION += 1)
#
# AutoOpts versioning:
#
# AO_CURRENT  represents the number of visible changes to the interface
# AO_REVISION represents the number of times the library has been
#             modified with an unchanged interface.
# AO_AGE      represents the number of older revisions the current library
#             is capable of handling.
#
AO_LIBRARY=libopts.la
AO_CURRENT=25
AO_REVISION=1
AO_AGE=0

GO_LIBRARY=libguileopts.la
GO_CURRENT=0
GO_REVISION=1
GO_AGE=0

# For automake
#
VERSION=$AG_VERSION
PACKAGE=autogen

# Display version numbers banner for my sanity!
#
soname=$AO_LIBRARY-$AO_CURRENT:$AO_REVISION:$AO_AGE
h='*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-'

cat <<EOF
$h$h*

                 A      U      T      O      G      E      N

`printf "%-38s %38s\n" "$PACKAGE-$VERSION" "$soname" || :`
$h$h*
EOF

# VERSION ends here
