1
2
3
4
5
6
7
8
9
10
|
diff -uNr tcc-0.9.26.orig/configure tcc-0.9.26-1tcl/configure
--- tcc-0.9.26.orig/configure 2013-02-15 08:24:00.000000000 -0600
+++ tcc-0.9.26-1tcl/configure 2014-06-21 09:48:08.270011999 -0500
@@ -43,6 +43,7 @@
tcc_libpaths=""
tcc_crtprefix=""
tcc_elfinterp=""
+tcc_tcl_path=""
tcc_lddir=
confvars=
|
|
|
1
2
3
4
5
6
7
8
9
10
|
diff -uNr tcc-0.9.26.orig/configure tcc-0.9.26-1tcl/configure
--- tcc-0.9.26.orig/configure 2013-02-15 08:24:00.000000000 -0600
+++ tcc-0.9.26-1tcl/configure 2014-06-21 16:28:18.930011999 -0500
@@ -43,6 +43,7 @@
tcc_libpaths=""
tcc_crtprefix=""
tcc_elfinterp=""
+tcc_tcl_path=""
tcc_lddir=
confvars=
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
+ LDFLAGS="$LDFLAGS $TCL_LIB_SPEC $TCL_LIBS"
+ CFLAGS="$CFLAGS $TCL_INCLUDE_SPEC -DHAVE_TCL_H=1"
+ set | egrep '^(CFLAGS|LDFLAGS)='
+ )
+}
+
+if [ -n "${tcc_tcl_path}" ]; then
+ for tcc_tcl_path_file in ${tcc_tcl_path}/{,lib,lib64}/tclConfig.sh; do
+ if [ -f "${tcc_tcl_path_file}" ]; then
+ eval `print_tcl_defs "${tcc_tcl_path_file}"`
+ break
+ fi
+ done
+fi
+
|
|
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
+ LDFLAGS="$LDFLAGS $TCL_LIB_SPEC $TCL_LIBS"
+ CFLAGS="$CFLAGS $TCL_INCLUDE_SPEC -DHAVE_TCL_H=1"
+ set | egrep '^(CFLAGS|LDFLAGS)='
+ )
+}
+
+if [ -n "${tcc_tcl_path}" ]; then
+ for tcc_tcl_path_file in "${tcc_tcl_path}/tclConfig.sh" "${tcc_tcl_path}/lib/tclConfig.sh" "${tcc_tcl_path}/lib64/tclConfig.sh" "${tcc_tcl_path}/lib32/tclConfig.sh"; do
+ if [ -f "${tcc_tcl_path_file}" ]; then
+ eval `print_tcl_defs "${tcc_tcl_path_file}"`
+ break
+ fi
+ done
+fi
+
|