Overview
| Comment: | Comment update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
496446d70e2e77015632b47320751431 |
| User & Date: | rkeene on 2010-09-26 04:40:08 |
| Other Links: | manifest | tags |
Context
|
2010-09-26
| ||
| 04:40 |
Updated to support building Tk statically
Updated to build Tk statically on Windows check-in: ee99c0e5ae user: rkeene tags: trunk | |
| 04:40 | Comment update check-in: 496446d70e user: rkeene tags: trunk | |
| 04:40 |
Added support for i586-mingw32msvc compilation
Added patch to allow use of AR/RANLIB environment variables check-in: 9bdee0a947 user: rkeene tags: trunk | |
Changes
Modified kitsh/buildsrc/kitsh-0.0/aclocal.m4 from [ef0e476ed6] to [c33a095bf7].
| ︙ | |||
89 90 91 92 93 94 95 96 97 98 99 100 101 102 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | + + + + |
AC_MSG_CHECKING(host operating system)
AC_MSG_RESULT($host_os)
case $host_os in
mingw32msvc*)
CFLAGS="${CFLAGS} -mno-cygwin -mms-bitfields"
dnl If we are building for Win32, we need to define "BUILD_tcl" so that
dnl TCL_STORAGE_CLASS gets defined as DLLEXPORT, to make static linking
dnl work
AC_DEFINE(BUILD_tcl, [1], [Define if you need to pretend to be building Tcl (Windows)])
;;
cygwin*)
CFLAGS="${CFLAGS} -mms-bitfields"
;;
esac
])
|