diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-01-13 10:42:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-01-13 10:42:58 (GMT) |
commit | aa7bf1b2e138bde9996a2b899df33b8e3a4f534b (patch) | |
tree | d10069bc64343a4d935c8c752f14a754b329d5bf /win/configure | |
parent | 60ca61474093fda831f75f9e28990f2693f05229 (diff) | |
parent | 370b55738907dd034b5937b161a3981a0d3aed02 (diff) | |
download | tcl-aa7bf1b2e138bde9996a2b899df33b8e3a4f534b.zip tcl-aa7bf1b2e138bde9996a2b899df33b8e3a4f534b.tar.gz tcl-aa7bf1b2e138bde9996a2b899df33b8e3a4f534b.tar.bz2 |
Fix [b89209f5cd]: compilation error Windows 10 / Visual Studio 2019
Diffstat (limited to 'win/configure')
-rwxr-xr-x | win/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/configure b/win/configure index e09b531..4fc8fff 100755 --- a/win/configure +++ b/win/configure @@ -5081,7 +5081,7 @@ eval "TCL_STUB_LIB_SPEC=\"-L${libdir} ${TCL_STUB_LIB_FLAG}\"" eval "TCL_BUILD_STUB_LIB_PATH=\"`$CYGPATH $(pwd)`/${TCL_STUB_LIB_FILE}\"" eval "TCL_STUB_LIB_PATH=\"${libdir}/${TCL_STUB_LIB_FILE}\"" -if test ${SHARED_BUILD} = 0 ; then +if test ${SHARED_BUILD} = 0 -o "$GCC" != "yes" ; then eval "TCL_LIB_FILE=\"${LIBPREFIX}tcl${VER}${LIBSUFFIX}\"" else eval "TCL_LIB_FILE=\"${LIBPREFIX}tcl${VER}${DLLSUFFIX}.a\"" |