Overview
| Comment: | Updated to use newer mingw32 conventions |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
19a5c7951ad5f29dfee6ef7bf42cdb20 |
| User & Date: | rkeene on 2012-07-19 00:25:20.000 |
| Other Links: | manifest | tags |
Context
|
2014-12-13
| ||
| 22:51 | Updated to use DESTDIR instead of INSTALL_ROOT (supporting both) and place libctk in the right directory check-in: 7781365c5e user: rkeene tags: trunk | |
|
2012-07-19
| ||
| 00:25 | Updated to use newer mingw32 conventions check-in: 19a5c7951a user: rkeene tags: trunk | |
|
2011-09-11
| ||
| 19:27 | Updated to initialize stubs correctly check-in: d18db48a4f user: rkeene tags: trunk | |
Changes
Modified aclocal/shobj.m4
from [2d19fed3b4]
to [2c7adb586d].
| ︙ | ︙ | |||
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
])
|