* 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
This commit is contained in:
Derek Atkins 2003-03-13 21:08:32 +00:00
parent 7572f487b0
commit 5f6edf16b8
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2003-03-13 Derek Atkins <derek@ihtfp.com>
* 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 <derek@ihtfp.com>
* src/gnome-utils/dialog-transfer.c: the Euroland currency rates

View File

@ -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}