From: Magnus Jacobsson Date: Mon, 13 Sep 2021 15:10:31 +0000 (+0200) Subject: autotools: add WITH_CYGWIN to AM_CONDITIONAL X-Git-Tag: 2.49.2~32^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc68fe70b760e01a8899612d1844edba6a38019d;p=graphviz autotools: add WITH_CYGWIN to AM_CONDITIONAL This will allow an upcoming commit in this series to introduce Cygwin-specific functionality in the autotools build system. --- diff --git a/configure.ac b/configure.ac index fe3f2be9f..2b555ca59 100644 --- a/configure.ac +++ b/configure.ac @@ -204,6 +204,7 @@ AC_DEFINE_UNQUOTED(DEFAULT_FONTPATH,"$DEFAULT_FONTPATH",[Path to TrueType fonts. 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"]) DEFAULT_DPI=96 AC_DEFINE_UNQUOTED(DEFAULT_DPI,$DEFAULT_DPI,Default DPI.)