mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-11 08:10:21 +02:00
add --with-lightning-prefix option to lightning.m4
2008-02-03 Paolo Bonzini <bonzini@gnu.org> * build-aux/lightning.m4: Add --with-lightning-prefix option, suggested by Sam Steingold.
This commit is contained in:
parent
889d7fbf8b
commit
f47b23aa9f
4 changed files with 22 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-02-03 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
* build-aux/lightning.m4: Add --with-lightning-prefix option, suggested
|
||||||
|
by Sam Steingold.
|
||||||
|
|
||||||
2008-01-14 Paolo Bonzini <bonzini@gnu.org>
|
2008-01-14 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
* lightning/i386/core-64.h: Use CALLsr, not CALLLsr.
|
* lightning/i386/core-64.h: Use CALLsr, not CALLLsr.
|
||||||
|
|
3
THANKS
3
THANKS
|
@ -3,8 +3,9 @@ improving GNU lightning:
|
||||||
|
|
||||||
Eli Barzilay <eli@barzilay.org>
|
Eli Barzilay <eli@barzilay.org>
|
||||||
Ludovic Courtes <ludo@chbouib.org>
|
Ludovic Courtes <ludo@chbouib.org>
|
||||||
|
Matthew Flatt <mflatt@cs.utah.edu>
|
||||||
Laurent Michel <ldm@thorgal.homelinux.org>
|
Laurent Michel <ldm@thorgal.homelinux.org>
|
||||||
Basile Starynkevitch <basile@starynkevitch.net>
|
Basile Starynkevitch <basile@starynkevitch.net>
|
||||||
|
Sam Steingold <sds@gnu.org>
|
||||||
Jens Troeger <savage@light-speed.de>
|
Jens Troeger <savage@light-speed.de>
|
||||||
Tom Tromey <tromey@redhat.com>
|
Tom Tromey <tromey@redhat.com>
|
||||||
Matthew Flatt <mflatt@cs.utah.edu>
|
|
||||||
|
|
|
@ -44,7 +44,20 @@ AC_SUBST_FILE(lightning_frag)
|
||||||
AC_DEFUN([LIGHTNING_CONFIGURE_IF_NOT_FOUND], [
|
AC_DEFUN([LIGHTNING_CONFIGURE_IF_NOT_FOUND], [
|
||||||
AC_REQUIRE([AC_PROG_LN_S])dnl
|
AC_REQUIRE([AC_PROG_LN_S])dnl
|
||||||
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
||||||
|
|
||||||
|
AC_ARG_WITH(lightning-prefix,
|
||||||
|
AS_HELP_STRING([--with-lightning-prefix=PFX], [Prefix where GNU lightning is installed]),
|
||||||
|
[], [with_lightning_prefix=])
|
||||||
|
saveCFLAGS="$CFLAGS"
|
||||||
|
if test "x$with_lightning_prefix" != x; then
|
||||||
|
INCLIGHTNING="-I${with_lightning_prefix}/include"
|
||||||
|
CFLAGS="$CFLAGS $INCLIGHTNING"
|
||||||
|
else
|
||||||
|
INCLIGHTNING=
|
||||||
|
fi
|
||||||
AC_CHECK_HEADER(lightning.h)
|
AC_CHECK_HEADER(lightning.h)
|
||||||
|
CFLAGS="$saveCFLAGS"
|
||||||
|
|
||||||
AM_CONDITIONAL(LIGHTNING_MAIN, (exit 1))
|
AM_CONDITIONAL(LIGHTNING_MAIN, (exit 1))
|
||||||
AM_CONDITIONAL(HAVE_INSTALLED_LIGHTNING, test "$ac_cv_header_lightning_h" = yes)
|
AM_CONDITIONAL(HAVE_INSTALLED_LIGHTNING, test "$ac_cv_header_lightning_h" = yes)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@set UPDATED 25 October 2006
|
@set UPDATED 9 January 2008
|
||||||
@set UPDATED-MONTH October 2006
|
@set UPDATED-MONTH January 2008
|
||||||
@set EDITION 1.2c
|
@set EDITION 1.2c
|
||||||
@set VERSION 1.2c
|
@set VERSION 1.2c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue