summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-14 10:36:30 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-14 10:36:30 (GMT)
commit40ec7c7c69eb2e544d61c293e94c0247df0b93bc (patch)
tree31b65718f7e34f797477c5381d974b8c5fc0a07c /unix/configure
parente15d30ff40f9ec41c095e7ae0013ad0efb3aac9d (diff)
parente050cf7ed22790b5d95108c5d01d507d852f888c (diff)
downloadtk-40ec7c7c69eb2e544d61c293e94c0247df0b93bc.zip
tk-40ec7c7c69eb2e544d61c293e94c0247df0b93bc.tar.gz
tk-40ec7c7c69eb2e544d61c293e94c0247df0b93bc.tar.bz2
Static Cygwin wish.exe cannot link with win32's static libtk86.a (because it expects a different runtime), so configure shouldn't even try to do this.
(On a dynamic wish.exe this works, this is exactly how wish can run even without X11). Don't use deprecated stricmp/strnicmp any more, but underscored variant for non-GNU compilers.
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure13
1 files changed, 7 insertions, 6 deletions
diff --git a/unix/configure b/unix/configure
index 1c33793..4d5138c 100755
--- a/unix/configure
+++ b/unix/configure
@@ -11357,14 +11357,15 @@ else
fi
# libdir must be a fully qualified path and not ${exec_prefix}/lib
eval libdir="$libdir"
- if test "${ac_cv_cygwin}" != "yes" -a "${TCL_LIB_VERSIONS_OK}" = "ok"; then
- TK_LIB_FLAG="-ltk${TK_VERSION}"
- else
- TK_LIB_FLAG="-ltk`echo ${TK_VERSION} | tr -d .`"
- fi
if test "${ac_cv_cygwin}" = "yes" -a "$SHARED_BUILD" = "1"; then
- TK_BUILD_LIB_SPEC="-L\$(TOP_DIR)/win -ltk${TK_MAJOR_VERSION}${TK_MINOR_VERSION} \${TCL_LIB_SPEC}"
+ TK_LIB_FLAG="-ltk`echo ${TK_VERSION} | tr -d .`"
+ TK_BUILD_LIB_SPEC="-L\$(TOP_DIR)/win ${TK_LIB_FLAG}"
else
+ if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
+ TK_LIB_FLAG="-ltk${TK_VERSION}"
+ else
+ TK_LIB_FLAG="-ltk`echo ${TK_VERSION} | tr -d .`"
+ fi
TK_BUILD_LIB_SPEC="-L`pwd | sed -e 's/ /\\\\ /g'` ${TK_LIB_FLAG}"
fi
TK_LIB_SPEC="-L${libdir} ${TK_LIB_FLAG}"