Check-in [9608a4d5cf]
Overview
Comment:Updated to correctly build release output Removed extraneous file
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9608a4d5cf4e07276771556728cef1952b934818
User & Date: rkeene on 2011-09-09 14:32:06
Other Links: manifest | tags
Context
2011-09-09
14:32
Clean up build-related source check-in: 424c69792c user: rkeene tags: trunk
14:32
Updated to correctly build release output Removed extraneous file check-in: 9608a4d5cf user: rkeene tags: trunk
14:20
Updated to support release build system check-in: 43aebb6a2b user: rkeene tags: trunk
Changes

Modified build/autogen.sh from [01ca528618] to [855de803e9].

1






2
3
4
5
6
7
1
2
3
4
5
6
7
8
9
10
11
12
13

+
+
+
+
+
+






#! /bin/bash

if [ -n "${VERS}" ]; then
	sed "s|@@VERS@@|${VERS}|g" configure.ac > configure.ac.new
	cat configure.ac.new > configure.ac
	rm -f configure.ac.new
fi

cat aclocal/*.m4 > aclocal.m4 || exit 1
autoconf || exit 1
rm -rf autom4te.cache/

exit 0

Modified build/makearch.info from [28eea2a5f7] to [7aec6d0b9a].

29
30
31
32
33
34
35



36

37
38
39
40
41
42
43
29
30
31
32
33
34
35
36
37
38

39
40
41
42
43
44
45
46







+
+
+
-
+








# These files follow the same convention as DOCS, but don't have the header
# tacked onto them.
UPDATE_VARS="configure.ac"

# This script is executed immediately after copying the files
# to a temp directory to attempt to compile
BEFORE=""

# This script is executed after updating variables
BEFORE="build/autogen.sh"
UPDATED="build/autogen.sh"

# This script is executed immediately prior to creation of the
# tarball
AFTER=""

# Files matching these (space-seperated) patterns are deleted
TMPS="*.out HEADER build"

Deleted ctk.tcl version [e5557e7784].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31































-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#! /usr/bin/env tclsh

load ./libctk.so Tk

namespace eval ::pkcs11_getfile {}
unset -nocomplain ::pkcs11_getfile::pkcs11file

# Curses Tk lacks a "tk_getOpenFile" dialog, we create a simple input dialog
toplevel .pkcs11_getfile
label .pkcs11_getfile.lblInput -text "Please enter the pathname to a working PKCS#11 Module"
entry .pkcs11_getfile.entInput
button .pkcs11_getfile.btnOK -text "OK" -command {
	set ::pkcs11_getfile::pkcs11file [.pkcs11_getfile.entInput get]

	destroy .pkcs11_getfile
}
button .pkcs11_getfile.btnCancel -text "Cancel" -command {
	destroy .pkcs11_getfile

	set ::pkcs11_getfile::pkcs11file ""
}

pack .pkcs11_getfile.lblInput
pack .pkcs11_getfile.entInput
pack .pkcs11_getfile.btnOK .pkcs11_getfile.btnCancel

focus .pkcs11_getfile.entInput

tkwait variable ::pkcs11_getfile::pkcs11file
set pkcs11file $::pkcs11_getfile::pkcs11file