Overview
| Comment: | Updated Win32 build to replace version with actual value for building from Subversion |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3aac139bd8eaa5c00ab9e0564ec2d72b |
| User & Date: | rkeene on 2010-10-11 00:06:04.000 |
| Other Links: | manifest | tags |
Context
|
2010-10-11
| ||
| 00:08 | Subversion to Fossil Copy Commit. Please Ignore. Recording copying build/make-win32 to build/make-local. check-in: ee5ffe26ef user: rkeene tags: trunk | |
| 00:06 | Updated Win32 build to replace version with actual value for building from Subversion check-in: 3aac139bd8 user: rkeene tags: trunk | |
|
2010-10-10
| ||
| 23:20 | Tclpkcs11 0.9.2 Updated test driver slightly check-in: ae434dadfc user: rkeene tags: release-0.9.2, trunk | |
Changes
Modified build/make-win32
from [5377b37a6c]
to [1fc9e7f214].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#! /bin/sh
make distclean
AR=i586-mingw32msvc-ar
CC=i586-mingw32msvc-gcc
CXX=i586-mingw32msvc-g++
RANLIB=i586-mingw32msvc-ranlib
RC=i586-mingw32msvc-windres
STRIP=i586-mingw32msvc-strip
export AR CC CXX RANLIB RC STRIP
./configure --host=i586-mingw32msvc --with-tcl=build/win32
make
"${STRIP}" -x tclpkcs11.dll
| > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#! /bin/sh
make distclean
AR=i586-mingw32msvc-ar
CC=i586-mingw32msvc-gcc
CXX=i586-mingw32msvc-g++
RANLIB=i586-mingw32msvc-ranlib
RC=i586-mingw32msvc-windres
STRIP=i586-mingw32msvc-strip
export AR CC CXX RANLIB RC STRIP
./configure --host=i586-mingw32msvc --with-tcl=build/win32
# Replace version with the version
. build/makearch.info
sed "s/@@VERS@@/${VERS}/g" Makefile > Makefile.new && cat Makefile.new > Makefile
rm -f Makefile.new
make
"${STRIP}" -x tclpkcs11.dll
|