Overview
Comment: | Solaris only allows -f for ln if the file's already existent. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8b2924942b71b6adabdf5228d680b9d4 |
User & Date: | js on 2007-09-24 16:09:18 |
Other Links: | manifest | tags |
Context
2007-09-24
| ||
18:00 | Add depend status. check-in: d21b1a6b92 user: js tags: trunk | |
16:09 | Solaris only allows -f for ln if the file's already existent. check-in: 8b2924942b user: js tags: trunk | |
12:06 | PLUGIN_LDFLAGS needs -shared on Windows. check-in: 67e417000d user: js tags: trunk | |
Changes
Modified m4/sharedlib.m4 from [b612513a32] to [60dfe62b18].
︙ | ︙ | |||
58 59 60 61 62 63 64 | LIB_LDFLAGS='-shared -fPIC -Wl,-soname=${LIB}.${LIB_MAJOR}.${LIB_MINOR}' LIB_PREFIX='lib' LIB_SUFFIX='.so' PLUGIN_CPPFLAGS='-DPIC' PLUGIN_CFLAGS='-fPIC' PLUGIN_LDFLAGS='-shared -fPIC' PLUGIN_SUFFIX='.so' | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | LIB_LDFLAGS='-shared -fPIC -Wl,-soname=${LIB}.${LIB_MAJOR}.${LIB_MINOR}' LIB_PREFIX='lib' LIB_SUFFIX='.so' PLUGIN_CPPFLAGS='-DPIC' PLUGIN_CFLAGS='-fPIC' PLUGIN_LDFLAGS='-shared -fPIC' PLUGIN_SUFFIX='.so' INSTALL_LIB='${INSTALL} -m 755 $$i ${DESTDIR}${libdir}/$$i.${LIB_MAJOR}.${LIB_MINOR} && rm -f ${DESTDIR}${libdir}/$$i && ${LN_S} $$i.${LIB_MAJOR}.${LIB_MINOR} ${DESTDIR}${libdir}/$$i' UNINSTALL_LIB='rm -f ${DESTDIR}${libdir}/$$i ${DESTDIR}${libdir}/$$i.${LIB_MAJOR}.${LIB_MINOR}' CLEAN_LIB='' ;; *-*-mingw32 | *-*-cygwin) AC_MSG_RESULT(Win32) LIB_CPPFLAGS='-DPIC' LIB_CFLAGS='' |
︙ | ︙ |