Overview
Comment: | Ignore undefined symbols when linking a library. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0416cfa0fac91ad9e14068d900b32030 |
User & Date: | js on 2009-07-22 01:21:50 |
Other Links: | manifest | tags |
Context
2009-07-22
| ||
23:03 | Add -flat_namespace to library flags on OS X. check-in: 9851471d25 user: js tags: trunk | |
01:21 | Ignore undefined symbols when linking a library. check-in: 0416cfa0fa user: js tags: trunk | |
2009-06-15
| ||
21:48 | Change ${@} to $@. check-in: 00339d87b6 user: js tags: trunk | |
Changes
Modified m4/buildsys.m4 from [56dc9e71df] to [90cfb0d7df].
︙ | ︙ | |||
53 54 55 56 57 58 59 | AC_REQUIRE([AC_CANONICAL_HOST]) AC_MSG_CHECKING(for shared library system) case "$host" in *-apple-*) AC_MSG_RESULT(Mac OS X) LIB_CPPFLAGS='-DPIC' LIB_CFLAGS='-fPIC' | | | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | AC_REQUIRE([AC_CANONICAL_HOST]) AC_MSG_CHECKING(for shared library system) case "$host" in *-apple-*) AC_MSG_RESULT(Mac OS X) LIB_CPPFLAGS='-DPIC' LIB_CFLAGS='-fPIC' LIB_LDFLAGS='-dynamiclib -undefined suppress -install_name ${libdir}/${LIB}' LIB_PREFIX='lib' LIB_SUFFIX='.dylib' PLUGIN_CPPFLAGS='-DPIC' PLUGIN_CFLAGS='-fPIC' PLUGIN_LDFLAGS='-bundle -flat_namespace -undefined suppress' PLUGIN_SUFFIX='.impl' INSTALL_LIB='${INSTALL} -m 755 $$i ${DESTDIR}${libdir}/$${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib && ${LN_S} -f $${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib ${DESTDIR}${libdir}/$${i%.dylib}.${LIB_MAJOR}.dylib && ${LN_S} -f $${i%.dylib}.${LIB_MAJOR}.${LIB_MINOR}.dylib ${DESTDIR}${libdir}/$$i' |
︙ | ︙ |