mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
check for SLIB. (#347922)
BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14551 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
1ff9e38a42
commit
43dbf78b80
@ -1,3 +1,7 @@
|
||||
2006-07-22 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* configure.in: check for SLIB. (#347922)
|
||||
|
||||
2006-07-21 Andreas Köhler <andi5.py@gmx.net>
|
||||
|
||||
* configure.in:
|
||||
|
15
configure.in
15
configure.in
@ -345,6 +345,21 @@ else
|
||||
])
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([for SLIB support])
|
||||
if LD_LIBRARY_PATH="${G_WRAP_LIB_DIR}:${LD_LIBRARY_PATH}" \
|
||||
GUILE_LOAD_PATH="${G_WRAP_MODULE_DIR}:${GUILE_LOAD_PATH}" \
|
||||
${GUILE} -c "(use-modules (ice-9 slib)) (require 'printf)" > /dev/null 2>&1
|
||||
then
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_MSG_ERROR([
|
||||
|
||||
Cannot find SLIB. Are you sure you have it installed?
|
||||
See http://bugzilla.gnome.org/show_bug.cgi?id=347922
|
||||
|
||||
])
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([for (g-wrap gw-standard) guile module])
|
||||
if LD_LIBRARY_PATH="${G_WRAP_LIB_DIR}:${LD_LIBRARY_PATH}" \
|
||||
GUILE_LOAD_PATH="${G_WRAP_MODULE_DIR}:${GUILE_LOAD_PATH}" \
|
||||
|
Loading…
Reference in New Issue
Block a user