mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
(dyld_prefix), pre-inst-guile-env.in
(dyld_prefix): Construct and export dyld_prefix in a similar way to ltdl_prefix, to allow pre-install dynamic linking to work on MacOS. Thanks to Roger Mc Murtrie for reporting this problem.
This commit is contained in:
parent
d4ebfb617e
commit
027e0e2c69
4 changed files with 16 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-01-30 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* pre-inst-guile.in (dyld_prefix), pre-inst-guile-env.in
|
||||
(dyld_prefix): Construct and export dyld_prefix in a similar way
|
||||
to ltdl_prefix, to allow pre-install dynamic linking to work on
|
||||
MacOS. Thanks to Roger Mc Murtrie for reporting this problem.
|
||||
|
||||
2008-01-22 Neil Jerram <neil@ossau.uklinux.net>
|
||||
|
||||
* LICENSE: Change COPYING.LIB to COPYING.LESSER.
|
||||
|
|
1
THANKS
1
THANKS
|
@ -57,6 +57,7 @@ For fixes or providing information which led to a fix:
|
|||
Marco Maggi
|
||||
Gregory Marton
|
||||
Dan McMahill
|
||||
Roger Mc Murtrie
|
||||
Han-Wen Nienhuys
|
||||
Jan Nieuwenhuizen
|
||||
Hrvoje Nikšić
|
||||
|
|
|
@ -63,11 +63,15 @@ export GUILE_LOAD_PATH
|
|||
|
||||
# handle LTDL_LIBRARY_PATH (no clobber)
|
||||
ltdl_prefix=""
|
||||
dyld_prefix=""
|
||||
for dir in $subdirs_with_ltlibs ; do
|
||||
ltdl_prefix="${top_builddir}/${dir}:${ltdl_prefix}"
|
||||
dyld_prefix="${top_builddir}/${dir}/.libs:${dyld_prefix}"
|
||||
done
|
||||
LTDL_LIBRARY_PATH="${ltdl_prefix}$LTDL_LIBRARY_PATH"
|
||||
export LTDL_LIBRARY_PATH
|
||||
DYLD_LIBRARY_PATH="${dyld_prefix}${top_builddir}/libguile/.libs:$DYLD_LIBRARY_PATH"
|
||||
export DYLD_LIBRARY_PATH
|
||||
|
||||
# handle PATH (no clobber)
|
||||
PATH="${top_builddir}/guile-config:${PATH}"
|
||||
|
|
|
@ -76,11 +76,15 @@ export GUILE_LOAD_PATH
|
|||
|
||||
# handle LTDL_LIBRARY_PATH (no clobber)
|
||||
ltdl_prefix=""
|
||||
dyld_prefix=""
|
||||
for dir in $subdirs_with_ltlibs ; do
|
||||
ltdl_prefix="${top_builddir}/${dir}:${ltdl_prefix}"
|
||||
dyld_prefix="${top_builddir}/${dir}/.libs:${dyld_prefix}"
|
||||
done
|
||||
LTDL_LIBRARY_PATH="${ltdl_prefix}$LTDL_LIBRARY_PATH"
|
||||
export LTDL_LIBRARY_PATH
|
||||
DYLD_LIBRARY_PATH="${dyld_prefix}${top_builddir}/libguile/.libs:$DYLD_LIBRARY_PATH"
|
||||
export DYLD_LIBRARY_PATH
|
||||
|
||||
# set GUILE (clobber)
|
||||
GUILE=${top_builddir}/libguile/guile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue