1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-25 22:20:28 +02:00

* guile.m4 (AM_INIT_GUILE_MODULE): Replaced AM_INIT_AUTOMAKE macro

with its definition and commented out definition of PACKAGE.  This
changed seemed necessary after having removed PACKAGE from
libguile/acconfig.h.
This commit is contained in:
Mikael Djurfeldt 1997-03-15 01:07:38 +00:00
parent dfa84eae7b
commit 3b0d0eb8ed
2 changed files with 19 additions and 1 deletions

View file

@ -1,3 +1,10 @@
Sat Mar 15 01:11:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* guile.m4 (AM_INIT_GUILE_MODULE): Replaced AM_INIT_AUTOMAKE macro
with its definition and commented out definition of PACKAGE. This
changed seemed necessary after having removed PACKAGE from
libguile/acconfig.h.
Mon Feb 24 21:43:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* ltconfig, ltmain.sh: New versions from libtool-0.9.

View file

@ -7,7 +7,18 @@ dnl top-level srcdir, and will initialize automake. It also
dnl defines the `module' variable.
AC_DEFUN([AM_INIT_GUILE_MODULE],[
. $srcdir/../GUILE-VERSION
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
## Beginning of AM_INIT_AUTOMAKE macro
AC_REQUIRE([AM_PROG_INSTALL])
PACKAGE=[$1]
AC_SUBST(PACKAGE)
## AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
VERSION=[$2]
AC_SUBST(VERSION)
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
AM_SANITY_CHECK
AC_ARG_PROGRAM
AC_PROG_MAKE_SET
## End of AM_INIT_AUTOMAKE macro
AC_CONFIG_AUX_DIR(..)
module=[$1]
AC_SUBST(module)])