diff options
author | nijtmans <nijtmans> | 2010-02-22 23:31:41 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-02-22 23:31:41 (GMT) |
commit | 718a26fe2a6c218477b2486bcc3d014df7b559fa (patch) | |
tree | e6177ca61b1da75b2580be08eb4087ac9b62e192 /unix/Makefile.in | |
parent | b3ceb866eec8e0f9dbde55f024efb248732602ca (diff) | |
download | tcl-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/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index e1c7314..0c356a6 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.289 2010/02/13 18:11:06 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.290 2010/02/22 23:31:41 nijtmans Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -164,7 +164,7 @@ INSTALL_DATA = ${INSTALL} -m 644 # make for the first time. Certain build targets (make genstubs) need it to be # available on the PATH. This executable should *NOT* be required just to do a # normal build although it can be required to run make dist. -EXE_SUFFIX = @EXE_SUFFIX@ +EXE_SUFFIX = @EXEEXT@ TCL_EXE = tclsh${EXE_SUFFIX} TCLTEST_EXE = tcltest${EXE_SUFFIX} @@ -175,7 +175,7 @@ TCLTEST_EXE = tcltest${EXE_SUFFIX} STLIB_LD = @STLIB_LD@ SHLIB_LD = @SHLIB_LD@ -SHLIB_CFLAGS = @SHLIB_CFLAGS@ +SHLIB_CFLAGS = @SHLIB_CFLAGS@ -DBUILD_tcl SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ TCL_SHLIB_LD_EXTRAS = @TCL_SHLIB_LD_EXTRAS@ |