Overview
Comment: | Fix creation of dirs on win32. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6294fc87a8dd60ed23079132f0aa3aca |
User & Date: | js on 2008-12-13 19:54:18 |
Other Links: | manifest | tags |
Context
2008-12-23
| ||
03:53 | Remove spaces at end of line. check-in: 0459f92e4f user: js tags: trunk | |
2008-12-13
| ||
19:54 | Fix creation of dirs on win32. check-in: 6294fc87a8 user: js tags: trunk | |
16:54 | Better error handing in dependency generation. check-in: c46e3c0160 user: js tags: trunk | |
Changes
Modified m4/buildsys.m4 from [22afbe045e] to [9ad0cdb277].
︙ | ︙ | |||
94 95 96 97 98 99 100 | LIB_LDFLAGS='-shared -Wl,--out-implib,${LIB}.a' LIB_PREFIX='lib' LIB_SUFFIX='.dll' PLUGIN_CPPFLAGS='' PLUGIN_CFLAGS='' PLUGIN_LDFLAGS='-shared' PLUGIN_SUFFIX='.dll' | | | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | LIB_LDFLAGS='-shared -Wl,--out-implib,${LIB}.a' LIB_PREFIX='lib' LIB_SUFFIX='.dll' PLUGIN_CPPFLAGS='' PLUGIN_CFLAGS='' PLUGIN_LDFLAGS='-shared' PLUGIN_SUFFIX='.dll' INSTALL_LIB='${MKDIR_P} ${DESTDIR}${bindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bindir}/$$i && ${INSTALL} -m 755 $$i.a ${DESTDIR}${libdir}/$$i.a' UNINSTALL_LIB='rm -f ${DESTDIR}${bindir}/$$i ${DESTDIR}${libdir}/$$i.a' CLEAN_LIB='${LIB}.a' ;; *) AC_MSG_RESULT(GNU) LIB_CPPFLAGS='-DPIC' LIB_CFLAGS='-fPIC' |
︙ | ︙ |