diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-08-13 08:35:52 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2015-08-13 08:35:52 +0000 |
commit | e99c0ea4de186714209c6be95394fe48a720567f (patch) | |
tree | c3378e1c9045ede43cd2a53851cecf4d64d4306d /Build/source/configure | |
parent | e693c2e5c8b1070b8ad4390c0782ef0d40231433 (diff) |
Allow shared libraries (DLLs) in native TeXLive builds for Cygwin and MinGW
git-svn-id: svn://tug.org/texlive/trunk@38111 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/configure')
-rwxr-xr-x | Build/source/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/configure b/Build/source/configure index 8933e26408b..c805f8f194c 100755 --- a/Build/source/configure +++ b/Build/source/configure @@ -4048,10 +4048,10 @@ case $enable_libtool_hack in #( esac ac_configure_args="$ac_configure_args '--enable-libtool-hack=$enable_libtool_hack'" ;; esac -case $enable_shared in #( - no) : +case $enable_shared:$host_os in #( + no:* | yes:mingw* | yes:cygwin*) : : ;; #( - yes ) : + yes:* ) : if test "x$enable_native_texlive_build" = xyes; then : as_fn_error $? "you can not use a shared Kpathsea library for a native TeX Live build" "$LINENO" 5 fi ;; #( |