diff options
author | mdejong <mdejong> | 2001-07-06 02:20:31 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-07-06 02:20:31 (GMT) |
commit | b238f5b91918301d19821b57eb83c3bf077f2be6 (patch) | |
tree | 0122d42607fc6421223f5d87207495faef102bcf /win/configure.in | |
parent | 6f3350d72668fbc24956091ab9fc547da83d5e03 (diff) | |
download | tcl-b238f5b91918301d19821b57eb83c3bf077f2be6.zip tcl-b238f5b91918301d19821b57eb83c3bf077f2be6.tar.gz tcl-b238f5b91918301d19821b57eb83c3bf077f2be6.tar.bz2 |
* win/Makefile.in: Subst DEPARG directly instead
of relying on a variable. This will make Cygwin
build faster since an extra exec will be avoided.
* win/configure: Regen.
* win/configure.in: Subst DEPARG.
* win/tcl.m4 (SC_CONFIG_CFLAGS): Move AC_MSG_CHECKING
after the AC_CHECK_PROG so that status messages do
not get mixed together. Set DEPARG based on the
results of the cygpath check so that we avoid using
an extra exec when it is not needed. Use ac_cv_cygwin
status flag instead of looking at the output of
gcc -v, which works in the case where -mno-cygwin is
set in the CFLAGS.
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/configure.in b/win/configure.in index f593136..833317a 100644 --- a/win/configure.in +++ b/win/configure.in @@ -2,7 +2,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.38 2001/07/04 00:07:47 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.39 2001/07/06 02:20:31 mdejong Exp $ AC_INIT(../generic/tcl.h) @@ -187,6 +187,7 @@ AC_SUBST(CFG_TCL_EXPORT_FILE_SUFFIX) AC_SUBST(TCL_SHARED_BUILD) AC_SUBST(CYGPATH) +AC_SUBST(DEPARG) AC_SUBST(CFLAGS_DEFAULT) AC_SUBST(CFLAGS_DEBUG) AC_SUBST(CFLAGS_OPTIMIZE) |