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.
This commit is contained in:
Georg Baum 2016-05-08 13:46:35 +02:00 committed by Richard Heck
parent cfa0eea4b9
commit c8619110ff

View File

@ -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])