diff options
author | nijtmans <nijtmans> | 2010-06-09 13:51:51 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-06-09 13:51:51 (GMT) |
commit | 47d68f982cf946a1cab3f9e7c45be564f63a9471 (patch) | |
tree | f56f282743fca4dedfd8694cbd5eb4409c8cf161 /tools/configure.in | |
parent | 448358d7c20e186a62a2abcb7f32cc112205d142 (diff) | |
download | tcl-47d68f982cf946a1cab3f9e7c45be564f63a9471.zip tcl-47d68f982cf946a1cab3f9e7c45be564f63a9471.tar.gz tcl-47d68f982cf946a1cab3f9e7c45be564f63a9471.tar.bz2 |
tsdPerf.c: Fix export of symbol Tsdperf_Init, when
using -fvisibility=hidden. Make two functions static,
eliminate some unnecessary type casts.
configure(.in)?: Update to Tcl 8.6
Diffstat (limited to 'tools/configure.in')
-rw-r--r-- | tools/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/configure.in b/tools/configure.in index ffae2ba..7585c64 100644 --- a/tools/configure.in +++ b/tools/configure.in @@ -2,8 +2,8 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run to configure the dnl Makefile in this directory. AC_INIT(man2tcl.c) -AC_PREREQ(2.57) -# RCS: @(#) $Id: configure.in,v 1.11 2003/03/13 10:39:57 mdejong Exp $ +AC_PREREQ(2.59) +# RCS: @(#) $Id: configure.in,v 1.12 2010/06/09 13:51:51 nijtmans Exp $ # Recover information that Tcl computed with its configure script. @@ -12,7 +12,7 @@ AC_PREREQ(2.57) # not, assume that its top-level directory is a sibling of ours. #-------------------------------------------------------------------- -DEF_VER=8.5 +DEF_VER=8.6 AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl $DEF_VER binaries from DIR], TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd ../../tcl$DEF_VER$TCL_PATCH_LEVEL/unix; pwd`) if test ! -d $TCL_BIN_DIR; then |