Overview
Comment: | Add -flat_namespace to library flags on OS X. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9851471d25686c433db0450af76dadea |
User & Date: | js on 2009-07-22 23:03:02 |
Other Links: | manifest | tags |
Context
2009-10-28
| ||
18:49 | Add support for converting .po files to .gmo. check-in: 05ae2271b7 user: js tags: trunk | |
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 | |
Changes
Modified m4/buildsys.m4 from [90cfb0d7df] to [c2b52df991].
︙ | ︙ | |||
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 -flat_namespace -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' |
︙ | ︙ |