From: Martin Willi Date: Fri, 11 Oct 2013 13:26:01 +0000 (+0200) Subject: configure.ac: Define USE_WINDOWS for Automake when building for Windows X-Git-Tag: 5.2.0dr6~24^2~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce24e0d3e52c545bd0d4b4f22a11ff4a9f8f0039;p=thirdparty%2Fstrongswan.git configure.ac: Define USE_WINDOWS for Automake when building for Windows --- diff --git a/configure.ac b/configure.ac index 309789ca15..8b0b8d087a 100644 --- a/configure.ac +++ b/configure.ac @@ -724,6 +724,19 @@ if test x$printf_hooks = xauto -o x$printf_hooks = xglibc; then ) fi +AC_MSG_CHECKING([for Windows target]) +AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM( + [[#include ]], + [[#ifndef WIN32 + # error WIN32 undefined + #endif + ]])], + [AC_MSG_RESULT([yes]); windows=true ], + [AC_MSG_RESULT([no])] +) +AM_CONDITIONAL(USE_WINDOWS, [test "x$windows" = xtrue]) + if test x$printf_hooks = xvstr; then AC_CHECK_LIB([vstr],[main],[LIBS="$LIBS"],[AC_MSG_ERROR([Vstr string library not found])],[]) AC_DEFINE([USE_VSTR], [], [use Vstr string library for printf hooks])