TclPKCS11

Check-in [768c073914]
Login
Overview
Comment:Updated local testing scripts to building using verbose errors
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 768c073914b1638dfb9fa7ef0baa70793974a4d1ab0b1081ae9273cdc7d4e2cc
User & Date: rkeene on 2010-10-11 13:55:21
Other Links: manifest | tags
Context
2010-10-11
13:55
Tclpkcs11 0.9.6 Updated test script to not call exit check-in: 00bd99c476 user: rkeene tags: release-0.9.6, trunk
13:55
Updated local testing scripts to building using verbose errors check-in: 768c073914 user: rkeene tags: trunk
13:54
Changed session management functions to use an active flag rather than a special session value check-in: 250660270e user: rkeene tags: trunk
Changes

Modified build/make-local from [3bcde6e579] to [8e00895db3].

1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

make distclean

./configure

# 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.so




|








1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

make distclean

CFLAGS='-Wall -Werror -W' ./configure

# 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.so

Modified build/make-win32 from [1fc9e7f214] to [a073e1f521].

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












|








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

CFLAGS='-Wall -Werror -W' ./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