Overview
| Comment: | Updated to use newer mingw32 conventions |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3e08f3d352d556981401d09e41ed01ea |
| User & Date: | rkeene on 2012-07-19 00:25:20.000 |
| Other Links: | manifest | tags |
Context
|
2014-01-07
| ||
| 00:02 | Updated to clean-up handles if unable to load (rare memory leak) check-in: 4ea7b9090a user: rkeene tags: trunk | |
|
2012-07-19
| ||
| 00:25 | Updated to use newer mingw32 conventions check-in: 3e08f3d352 user: rkeene tags: trunk | |
|
2012-05-12
| ||
| 18:31 | Added FreeBSD/amd64 build target Updated to try to download cross-compiled SDKs check-in: 07e5971a1c user: rkeene tags: trunk | |
Changes
Modified aclocal/shobj.m4
from [ef2141a606]
to [284a31275c].
| ︙ | ︙ | |||
73 74 75 76 77 78 79 |
SHOBJEXT="dylib"
;;
hpux*)
SHOBJEXT="sl"
;;
mingw*)
SHOBJEXT="dll"
| | | 73 74 75 76 77 78 79 80 81 82 83 84 |
SHOBJEXT="dylib"
;;
hpux*)
SHOBJEXT="sl"
;;
mingw*)
SHOBJEXT="dll"
SHOBJFLAGS="-mms-bitfields -DPIC"
SHOBJLDFLAGS='-shared -Wl,--dll -Wl,--enable-auto-image-base -Wl,--output-def,$[@].def,--out-implib,$[@].a'
;;
esac
])
|