Check-in [105dd6812a]
Overview
Comment:Updated tcl.m4 to print fewer errors looking for tclsh
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 105dd6812a4ae90e7144e3c2d0ae758cb449104c
User & Date: rkeene on 2014-07-16 13:38:00.962
Other Links: manifest | tags
Context
2014-07-16
13:41
Updated to link against stubs library for current version of Tcl check-in: 15ac59fd14 user: rkeene tags: trunk
13:38
Updated tcl.m4 to print fewer errors looking for tclsh check-in: 105dd6812a user: rkeene tags: trunk
04:14
Added comments check-in: 79f4d09e57 user: rkeene tags: trunk
Changes
25
26
27
28
29
30
31
32
33
34
35




36
37
38
39
40
41
42
25
26
27
28
29
30
31




32
33
34
35
36
37
38
39
40
41
42







-
-
-
-
+
+
+
+







		AC_MSG_ERROR([unable to locate tclConfig.sh.  Try --with-tcl.])
	fi

	for try_tclsh in "$TCLCONFIGPATH/../bin/tclsh" \
	                 "$TCLCONFIGPATH/../bin/tclsh8.6" \
	                 "$TCLCONFIGPATH/../bin/tclsh8.5" \
	                 "$TCLCONFIGPATH/../bin/tclsh8.4" \
	                 `which tclsh` \
	                 `which tclsh8.6` \
	                 `which tclsh8.5` \
	                 `which tclsh8.4` \
	                 `which tclsh 2>/dev/null` \
	                 `which tclsh8.6 2>/dev/null` \
	                 `which tclsh8.5 2>/dev/null` \
	                 `which tclsh8.4 2>/dev/null` \
	                 tclsh; do
		if test -x "$try_tclsh"; then
			break
		fi
	done
	TCLSH_PROG="${try_tclsh}"