From 5f6edf16b83427fd82584b2326814483ddc74ce6 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Thu, 13 Mar 2003 21:08:32 +0000 Subject: [PATCH] * src/calculation/Makefile.am: fix to build on systems that don't have GUILE installed in the system path or in the same place as GLIB. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8074 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 6 ++++++ src/calculation/Makefile.am | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1f4d921d94..0fe50fbfdb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-03-13 Derek Atkins + + * src/calculation/Makefile.am: fix to build on systems that don't + have GUILE installed in the system path or in the same place + as GLIB. + 2003-03-12 Derek Atkins * src/gnome-utils/dialog-transfer.c: the Euroland currency rates diff --git a/src/calculation/Makefile.am b/src/calculation/Makefile.am index eb50084a93..011a1583d1 100644 --- a/src/calculation/Makefile.am +++ b/src/calculation/Makefile.am @@ -3,7 +3,7 @@ SUBDIRS = . test pkglib_LTLIBRARIES = libgncmod-calculation.la libgncmod_calculation_la_LDFLAGS = -module -libgncmod_calculation_la_LIBADD = ${GLIB_LIBS} +libgncmod_calculation_la_LIBADD = ${GLIB_LIBS} ${GUILE_LIBS} libgncmod_calculation_la_SOURCES = \ expression_parser.c \ @@ -29,4 +29,5 @@ EXTRA_DIST = \ AM_CFLAGS = \ -I${top_srcdir}/src \ -I${top_srcdir}/src/gnc-module \ + ${GUILE_INCS} \ ${GLIB_CFLAGS}