Check-in [0ca601053b]
Overview
Comment:tcc4tcl 0.15 -- updated to default to providing dlopen unless --without-dlopen is requested
Timelines: family | ancestors | descendants | both | trunk | 0.15
Files: files | file ages | folders
SHA1: 0ca601053b9b6d905efd08113c53b3d69a12c3f1
User & Date: rkeene on 2014-05-22 17:18:35
Other Links: manifest | tags
Context
2014-05-23
19:00
tcc4tcl 0.16 -- support out-of-directory builds and older Make check-in: c000e01e26 user: rkeene tags: trunk, 0.16
2014-05-22
17:18
tcc4tcl 0.15 -- updated to default to providing dlopen unless --without-dlopen is requested check-in: 0ca601053b user: rkeene tags: trunk, 0.15
16:59
tcc4tcl 0.14 check-in: d99ec4f80e user: rkeene tags: trunk, 0.14
Changes

Modified build/makearch.info from [c7ea52cae9] to [04b1d4f5eb].

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# If set to "auto" it will be maintained in a file called .version
# in the source directory and the revision will be incremented
# each time a "makearch" is done.
#
# If @@SVNLCR@@ is used anywhere in this version number, it will be
# replaced with the highest last-changed-rev from the output of
#   svn info -R    (or 0)
VERS="0.14"

# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
#     @@UTIL@@ becomes the utility name ${UTIL}
#     @@VERS@@ becomes the utility version
#     @@DATE@@ becomes the current date







|







13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# If set to "auto" it will be maintained in a file called .version
# in the source directory and the revision will be incremented
# each time a "makearch" is done.
#
# If @@SVNLCR@@ is used anywhere in this version number, it will be
# replaced with the highest last-changed-rev from the output of
#   svn info -R    (or 0)
VERS="0.15"

# Space sperated list of documents, if they exist, they will be
# prefixed with the contents of the DOC_HDR file and substitution
# will occur:
#     @@UTIL@@ becomes the utility name ${UTIL}
#     @@VERS@@ becomes the utility version
#     @@DATE@@ becomes the current date

Modified configure.ac from [52676be797] to [3af96890fd].

33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

53
54
55
56
57
58
59

if test "${TCC4TCL_TARGET}" = "shared"; then
	dnl Determine how to make shared objects
	DC_GET_SHOBJFLAGS

	dnl Only export symbols we wish to expose
	TARGET="tcc4tcl.${SHOBJEXT}"

	no_dlopen='1'
else
	AC_CHECK_TOOL([RANLIB], [ranlib])
	AC_CHECK_TOOL([AR], [ar])

	TARGET="tcc4tcl-static.a"

	no_dlopen='0'
fi
AC_SUBST(TARGET)
AC_SUBST(TCC4TCL_TARGET)


AC_ARG_WITH([dlopen], AS_HELP_STRING([--without-dlopen], [do not define dlopen/dlclose/dlerror]), [
	if test "$withval" = "no"; then
		no_dlopen='1'
	else
		no_dlopen='0'
	fi
])







<
<





<
<




>







33
34
35
36
37
38
39


40
41
42
43
44


45
46
47
48
49
50
51
52
53
54
55
56

if test "${TCC4TCL_TARGET}" = "shared"; then
	dnl Determine how to make shared objects
	DC_GET_SHOBJFLAGS

	dnl Only export symbols we wish to expose
	TARGET="tcc4tcl.${SHOBJEXT}"


else
	AC_CHECK_TOOL([RANLIB], [ranlib])
	AC_CHECK_TOOL([AR], [ar])

	TARGET="tcc4tcl-static.a"


fi
AC_SUBST(TARGET)
AC_SUBST(TCC4TCL_TARGET)

no_dlopen='0'
AC_ARG_WITH([dlopen], AS_HELP_STRING([--without-dlopen], [do not define dlopen/dlclose/dlerror]), [
	if test "$withval" = "no"; then
		no_dlopen='1'
	else
		no_dlopen='0'
	fi
])