From: Georg Baum Date: Sun, 8 May 2016 11:46:35 +0000 (+0200) Subject: Fix packaging for mingw crosscompilation X-Git-Tag: 2.3.0alpha1~1643^2~37 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c8619110ff6b2d2b1eb77654ed3f6320a442617d;hp=cfa0eea4b96e5596dabbce77726fee7f18ecc680;p=features.git Fix packaging for mingw crosscompilation The standard host triplet for mingw tools is is something like x86_64-w64-mingw32 on debian and something like x86-64-w64-mingw32.shared for mxe (http://mxe.cc). Detect windows packaging correctly for these build types. --- diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4 index 84f66880a2..1f1fdb67e7 100644 --- a/config/lyxinclude.m4 +++ b/config/lyxinclude.m4 @@ -695,6 +695,7 @@ AC_ARG_WITH(packaging, case $host in *-apple-darwin*) lyx_use_packaging=macosx ;; *-pc-mingw*) lyx_use_packaging=windows ;; + *-mingw32*) lyx_use_packaging=windows ;; *haiku*) lyx_use_packaging=haiku ;; *) lyx_use_packaging=posix ;; esac])