Check-in [204d6385f0]
Overview
Comment:Compile tcc4tcl with stubs enabled (should be optional?)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 204d6385f071e26ebd75715fe14180ffd620bf37
User & Date: rkeene on 2017-10-13 01:52:03
Other Links: manifest | tags
Context
2017-10-13
20:39
Updated to the latest version of tcc4tcl check-in: 5d9fc82c1f user: rkeene tags: trunk
01:52
Compile tcc4tcl with stubs enabled (should be optional?) check-in: 204d6385f0 user: rkeene tags: trunk
2017-09-06
02:08
Updated to deal better with pkg-config OpenSSL and newer versions of TclTLS check-in: 534f2d1839 user: rkeene tags: trunk
Changes

Modified tcc4tcl/build.sh from [fabf93d83d] to [ef508fc70b].

1
2
3
4
5
6
7

8
9

10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/env bash

# BuildCompatible: KitCreator

version="0.28"
url="http://rkeene.org/devel/tcc4tcl/tcc4tcl-${version}.tar.gz"
sha256='7062bd924b91d2ce8efc5d1983f8bd900514b7a674c9b567f564ee977ef3512e'


function preconfigure() {

	if echo " ${CONFIGUREEXTRA} " | grep ' --disable-load ' >/dev/null; then
		configure_extra=("--with-dlopen")
	else
		configure_extra=("--without-dlopen")
	fi
}

function postinstall() {
	echo "/libtcc1\.a" > "${installdir}/kitcreator-nolibs"
}








>


>

|

|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/env bash

# BuildCompatible: KitCreator

version="0.28"
url="http://rkeene.org/devel/tcc4tcl/tcc4tcl-${version}.tar.gz"
sha256='7062bd924b91d2ce8efc5d1983f8bd900514b7a674c9b567f564ee977ef3512e'
configure_extra=()

function preconfigure() {
	configure_extra=("${configure_extra[@]}" "--enable-stubs")
	if echo " ${CONFIGUREEXTRA} " | grep ' --disable-load ' >/dev/null; then
		configure_extra=("${configure_extra[@]}" "--with-dlopen")
	else
		configure_extra=("${configure_extra[@]}" "--without-dlopen")
	fi
}

function postinstall() {
	echo "/libtcc1\.a" > "${installdir}/kitcreator-nolibs"
}