Overview
| Comment: | Fix to build of TCL_UTF_MAX | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
71bd41f921a77c69f75f398725173568 | 
| User & Date: | rkeene on 2016-05-13 02:00:05 | 
| Other Links: | manifest | tags | 
Context
| 
   2016-07-08 
 | ||
| 19:41 | Updated to support building our own libSSL (LibreSSL) if none is available or if requested (KC_TLS_BUILDSSL) check-in: 3defed1bc3 user: rkeene tags: trunk | |
| 
   2016-06-29 
 | ||
| 01:19 | Merge updates from trunk. check-in: e29b34acd1 user: mistachkin tags: win32-install | |
| 
   2016-05-13 
 | ||
| 02:00 | Fix to build of TCL_UTF_MAX check-in: 71bd41f921 user: rkeene tags: trunk | |
| 01:54 | Added TCL_UTF_MAX=6 build support check-in: fe4c8bd979 user: rkeene tags: trunk | |
Changes
Modified tcl/patchscripts/tcl-utf-max.sh from [774cb52df3] to [22c18daa85].
1 2 3 4 5 6  | 
#! /bin/bash
if [ -z "${KC_TCL_UTF_MAX}" ]; then
	exit 0
fi
 | |  | 1 2 3 4 5 6 7 8 9 10 11  | 
#! /bin/bash
if [ -z "${KC_TCL_UTF_MAX}" ]; then
	exit 0
fi
sed 's@^# *define TCL_UTF_MAX.*$@#define TCL_UTF_MAX '"${KC_TCL_UTF_MAX}"'@' generic/tcl.h > generic/tcl.h.new
cat generic/tcl.h.new > generic/tcl.h
rm -f generic/tcl.h.new
exit 0
 |