summaryrefslogtreecommitdiffstats
path: root/unix/configure.in
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-02-22 23:31:41 (GMT)
committernijtmans <nijtmans>2010-02-22 23:31:41 (GMT)
commit718a26fe2a6c218477b2486bcc3d014df7b559fa (patch)
treee6177ca61b1da75b2580be08eb4087ac9b62e192 /unix/configure.in
parentb3ceb866eec8e0f9dbde55f024efb248732602ca (diff)
downloadtcl-718a26fe2a6c218477b2486bcc3d014df7b559fa.zip
tcl-718a26fe2a6c218477b2486bcc3d014df7b559fa.tar.gz
tcl-718a26fe2a6c218477b2486bcc3d014df7b559fa.tar.bz2
Remove unnecessary EXTERN's, which already
are in the global stub table. Use @EXEEXT@ in stead of @EXT_SUFFIX@ Use -DBUILD_tcl in Makefile for CYGWIN Use EXTERN to control CYGWIN exported symbols Remove some unnecessary type casts.
Diffstat (limited to 'unix/configure.in')
-rw-r--r--unix/configure.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/unix/configure.in b/unix/configure.in
index d2b62a2..26f9bc0 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.210 2010/02/16 16:01:33 dkf Exp $
+# RCS: @(#) $Id: configure.in,v 1.211 2010/02/22 23:31:41 nijtmans Exp $
AC_INIT([tcl],[8.6])
AC_PREREQ(2.59)
@@ -88,6 +88,12 @@ AC_C_INLINE
SC_MISSING_POSIX_HEADERS
+#--------------------------------------------------------------------
+# Determines the correct executable file extension (.exe)
+#--------------------------------------------------------------------
+
+AC_EXEEXT
+
#------------------------------------------------------------------------
# If we're using GCC, see if the compiler understands -pipe. If so, use it.
# It makes compiling go faster. (This is only a performance feature.)