mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Re-use existing GUILE_LOAD_PATH variable in order not to override existing search paths.
BP git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14540 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
416596dabe
commit
55a0b44a88
16
configure.in
16
configure.in
@ -314,8 +314,8 @@ AC_SUBST(G_WRAP_LIB_DIR)
|
||||
AS_SCRUB_INCLUDE(CFLAGS)
|
||||
|
||||
AC_MSG_CHECKING([for (g-wrap) guile module])
|
||||
if LD_LIBRARY_PATH=$G_WRAP_LIB_DIR:$LD_LIBRARY_PATH \
|
||||
GUILE_LOAD_PATH=$G_WRAP_MODULE_DIR \
|
||||
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 (g-wrap))" > /dev/null 2>&1
|
||||
then
|
||||
AC_MSG_RESULT(yes)
|
||||
@ -330,8 +330,8 @@ else
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING([for (g-wrap gw-glib-spec) guile module])
|
||||
if LD_LIBRARY_PATH=$G_WRAP_LIB_DIR:$LD_LIBRARY_PATH \
|
||||
GUILE_LOAD_PATH=$G_WRAP_MODULE_DIR \
|
||||
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 (g-wrap gw-glib-spec))" > /dev/null 2>&1
|
||||
then
|
||||
AC_MSG_RESULT(yes)
|
||||
@ -346,16 +346,16 @@ else
|
||||
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 \
|
||||
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 (g-wrap gw-standard))" > /dev/null 2>&1
|
||||
then
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
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 \
|
||||
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 (g-wrap gw standard))" > /dev/null 2>&1
|
||||
then
|
||||
AC_MSG_RESULT(yes)
|
||||
|
Loading…
Reference in New Issue
Block a user