mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 22:32:05 -08:00
src/aclocal.m4: fake -rpath in OSX using -install_name.
This commit is contained in:
parent
cac368ef42
commit
ab76c8d40c
3 changed files with 6 additions and 2 deletions
|
|
@ -19,6 +19,10 @@ ECL 9.10.2:
|
|||
- In CLX, there were a couple of typos in the code related to locks and ECL.
|
||||
These typos only revealed in multithreaded builds of the CLX library.
|
||||
|
||||
- Under OS X, --enable-rpath works again. It was broken for about a year
|
||||
due to my misunderstanding of how -install_name works and the differences
|
||||
between that and -rpath.
|
||||
|
||||
ECL 9.10.1:
|
||||
===========
|
||||
|
||||
|
|
|
|||
2
src/aclocal.m4
vendored
2
src/aclocal.m4
vendored
|
|
@ -345,7 +345,7 @@ case "${host_os}" in
|
|||
# well with our signal handler.
|
||||
enable_boehm=included
|
||||
SONAME="${SHAREDPREFIX}ecl.SOVERSION.${SHAREDEXT}"
|
||||
SONAME_LDFLAGS="-Wl,-install_name,SONAME -Wl,-compatibility_version,${PACKAGE_VERSION}"
|
||||
SONAME_LDFLAGS="-Wl,-install_name,@libdir\@/SONAME -Wl,-compatibility_version,${PACKAGE_VERSION}"
|
||||
;;
|
||||
nsk*)
|
||||
# HP Non-Stop platform
|
||||
|
|
|
|||
2
src/configure
vendored
2
src/configure
vendored
|
|
@ -4494,7 +4494,7 @@ case "${host_os}" in
|
|||
# well with our signal handler.
|
||||
enable_boehm=included
|
||||
SONAME="${SHAREDPREFIX}ecl.SOVERSION.${SHAREDEXT}"
|
||||
SONAME_LDFLAGS="-Wl,-install_name,SONAME -Wl,-compatibility_version,${PACKAGE_VERSION}"
|
||||
SONAME_LDFLAGS="-Wl,-install_name,@libdir\@/SONAME -Wl,-compatibility_version,${PACKAGE_VERSION}"
|
||||
;;
|
||||
nsk*)
|
||||
# HP Non-Stop platform
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue