Check-in [ba02ddd48a]
Overview
Comment:Updated tcc4tcl to rely on Tcl 8.5 or newer
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ba02ddd48a49b7ab4d97bda8f82ecba995b055d4
User & Date: rkeene on 2014-06-21 22:06:40
Other Links: manifest | tags
Context
2014-06-22
00:51
Updated to not support multiarch Mac OS X builds in tcc4tcl (which won't actually work with it) check-in: b9edcbd4d2 user: rkeene tags: trunk
2014-06-21
22:06
Updated tcc4tcl to rely on Tcl 8.5 or newer check-in: ba02ddd48a user: rkeene tags: trunk
21:59
Updated to include "fake-uname" in pkgs file check-in: 98b6dd903b user: rkeene tags: trunk
Changes

Modified server/buildpkgs/common.sh from [b0d5bd6980] to [1464904b80].

8
9
10
11
12
13
14
15
16


17
18
19
20
21
22
23

		if [ ! -f "${envfile}" ]; then
			continue
		fi

		source "${envfile}"

		break
	done


}

function setup_tcl85 () {
	setup_tcl 8.5 8.4
}

function setup_tcl84 () {







|

>
>







8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

		if [ ! -f "${envfile}" ]; then
			continue
		fi

		source "${envfile}"

		return 0
	done

	return 1
}

function setup_tcl85 () {
	setup_tcl 8.5 8.4
}

function setup_tcl84 () {

Modified server/buildpkgs/tcc4tcl/build.sh from [649bd9fbb7] to [c24828e782].

10
11
12
13
14
15
16



17
18
19
20
21
22
23

# Load common functions
source ../common.sh

# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'




# Download source
download_src

# Extract package
(
	rm -rf build
	mkdir build







>
>
>







10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

# Load common functions
source ../common.sh

# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'

# Requires Tcl 8.5 or newer
setup_tcl 8.5 8.6 || exit 1

# Download source
download_src

# Extract package
(
	rm -rf build
	mkdir build
43
44
45
46
47
48
49
50
51
52

	${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" || exit 1

	${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" install || exit 1
) || exit 1

# Create metadata
../create_teapot "${PLATDIR}/teapot.txt" "tcc4tcl" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.4" "tcc4tcl provides a Tcl binding to the TinyCC compiler. It allows dynamic compilation of C code from within a Tcl interpreter." "${LICENSE}"

exit 0







|


46
47
48
49
50
51
52
53
54
55

	${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" || exit 1

	${MAKE:-make} PACKAGE_INSTALL_DIR="${PLATDIR}" install || exit 1
) || exit 1

# Create metadata
../create_teapot "${PLATDIR}/teapot.txt" "tcc4tcl" "${VERS}" "${SRCURL}" "${PLATFORM}" "Tcl 8.5" "tcc4tcl provides a Tcl binding to the TinyCC compiler. It allows dynamic compilation of C code from within a Tcl interpreter." "${LICENSE}"

exit 0