From 579a4b9dec333e681ebb49985aa014181cc902ab Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Fri, 7 Apr 2017 15:44:34 -0400 Subject: [PATCH] Fix: disable debug by default info on Cygwin MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit elfutils is not available on Cygwin. Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index a0a076e0..3a6eca9a 100644 --- a/configure.ac +++ b/configure.ac @@ -161,6 +161,11 @@ AS_CASE([$host_os], [ DEFAULT_ENABLE_DEBUG_INFO=no ], + [cygwin*], + [ + DEFAULT_ENABLE_DEBUG_INFO=no + LT_NO_UNDEFINED="-no-undefined" + ], [mingw*], [ MINGW32=yes -- 2.34.1