Overview
Comment: | Library version is included in .dylib and framework now. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b7c8dbb21c80b827c2c92d9833e0177b |
User & Date: | js on 2010-05-08 14:57:50 |
Other Links: | manifest | tags |
Context
2010-05-08
| ||
19:28 | Update buildsys. check-in: c43191d827 user: js tags: trunk | |
14:57 | Library version is included in .dylib and framework now. check-in: b7c8dbb21c user: js tags: trunk | |
2010-05-06
| ||
22:26 | Fix a typo introduced by the new ivar naming convention. check-in: e2b1c61c45 user: js tags: trunk | |
Changes
Modified m4/buildsys.m4 from [8507639fdf] to [d0ffab5eb1].
︙ | ︙ | |||
53 54 55 56 57 58 59 | AC_REQUIRE([AC_CANONICAL_HOST]) AC_MSG_CHECKING(for shared library system) case "$host_os" in darwin*) AC_MSG_RESULT(Darwin) 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_os" in darwin*) AC_MSG_RESULT(Darwin) LIB_CPPFLAGS='-DPIC' LIB_CFLAGS='-fPIC' LIB_LDFLAGS='-dynamiclib -flat_namespace -current_version ${LIB_MAJOR}.${LIB_MINOR} -compatibility_version ${LIB_MAJOR}' LIB_PREFIX='lib' LIB_SUFFIX='.dylib' LDFLAGS_RPATH='-Wl,-rpath,${libdir}' PLUGIN_CPPFLAGS='-DPIC' PLUGIN_CFLAGS='-fPIC' PLUGIN_LDFLAGS='-bundle -flat_namespace -undefined suppress' PLUGIN_SUFFIX='.impl' |
︙ | ︙ |