Differences From Artifact [b446dc0e74]:
- File
m4/buildsys.m4
— part of check-in
[be6fab977d]
at
2014-05-15 15:52:30
on branch trunk
— @rpath is not even needed as install_name
It is possible to set it to the path where the library will be installed
and still have in-tree applications work by setting DYLD_LIBRARY_PATH.
Even if the library is already installed, it will use the in-tree
library if DYLD_LIBRARY_PATH is set. (user: js, size: 7078) [annotate] [blame] [check-ins using]
To Artifact [c066cbd390]:
- File m4/buildsys.m4 — part of check-in [cce8f132a5] at 2014-05-25 11:28:38 on branch trunk — Better naming for shared library systems (user: js, size: 7087) [annotate] [blame] [check-ins using]
︙ | |||
155 156 157 158 159 160 161 | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | - - + + - + | PLUGIN_CFLAGS='-fPIC -DPIC' PLUGIN_LDFLAGS='-shared' PLUGIN_SUFFIX='.so' INSTALL_LIB='&& ${INSTALL} -m 755 $$i ${DESTDIR}${libdir}/$$i' UNINSTALL_LIB='&& rm -f ${DESTDIR}${libdir}/$$i' CLEAN_LIB='' ;; |
︙ |