#! /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-2004 Bruce Korb
#
# Time-stamp:        "2004-05-18 20:39:39 bkorb"
# Author:            Bruce Korb <bkorb@gnu.org>
         MAINTAINER='Bruce Korb <bkorb@gnu.org>'
# Last Committed:    $Date: 2004/05/19 03:40:06 $
# ----------------------------------------------------------------------

AG_MAJOR_VERSION=5
AG_MINOR_VERSION=6
AG_REVISION=$AG_MAJOR_VERSION.$AG_MINOR_VERSION
AG_PATCHLEVEL=".2"
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=22
AO_REVISION=2
AO_AGE=13

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='*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-'

printf "$h$h*\n\n" || :
printf "                 A      U      T      O      G      E      N\n\n" || :
printf "%-38s %38s\n" "$PACKAGE-$VERSION" "$soname" || :
printf "$h$h*\n" || :

# VERSION ends here
