From: Magnus Jacobsson Date: Thu, 30 Sep 2021 18:24:05 +0000 (+0200) Subject: autotools: add WITH_MINGW to AM_CONDITIONAL X-Git-Tag: 3.0.0~144^2~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5d821123274ad3c2f8ae6b09c98d70ce4784846;p=graphviz autotools: add WITH_MINGW to AM_CONDITIONAL This will allow an upcoming commit in this series to introduce MinGW-specific functionality in the autotools build system. --- diff --git a/configure.ac b/configure.ac index 7f2bac195..26b1323be 100644 --- a/configure.ac +++ b/configure.ac @@ -200,6 +200,7 @@ AC_DEFINE_UNQUOTED(PATHSEPARATOR,"$PATHSEPARATOR",[Path separator character.]) AM_CONDITIONAL(WITH_WIN32, [test "x$UWIN" = "xyes" -o "x$CYGWIN" = "xyes" -o "x$MINGW32" = "xyes"]) AM_CONDITIONAL(WITH_DARWIN9, [test "x$DARWIN9" = "xyes"]) AM_CONDITIONAL(WITH_CYGWIN, [test "x$CYGWIN" = "xyes"]) +AM_CONDITIONAL(WITH_MINGW, [test "x$MINGW32" = "xyes"]) DEFAULT_DPI=96 AC_DEFINE_UNQUOTED(DEFAULT_DPI,$DEFAULT_DPI,Default DPI.)