GUILE-VERSION 887 B

12345678910111213141516171819202122232425
  1. # -*-shell-script-*-
  2. # Note: `GUILE_VERSION' is defined in `configure.ac' using `git-version-gen'.
  3. GUILE_MAJOR_VERSION=3
  4. GUILE_MINOR_VERSION=0
  5. GUILE_MICRO_VERSION=9
  6. GUILE_EFFECTIVE_VERSION=3.0
  7. # All of the shared lib versioning info. Right now, for this to work
  8. # properly, you'll also need to add AC_SUBST calls to the right place
  9. # in configure.in, add the right -version-info statement to your
  10. # Makefile.am.
  11. # See libtool info pages for more information on how and when to change
  12. # these. Note: We consider the ABI of default builds, and not that of
  13. # '--disable-deprecated' builds. Generally speaking, within a stable
  14. # series, you increment CURRENT and AGE and set REVISION to 0.
  15. LIBGUILE_INTERFACE_CURRENT=7
  16. LIBGUILE_INTERFACE_REVISION=0
  17. LIBGUILE_INTERFACE_AGE=6
  18. LIBGUILE_INTERFACE="${LIBGUILE_INTERFACE_CURRENT}:${LIBGUILE_INTERFACE_REVISION}:${LIBGUILE_INTERFACE_AGE}"