From dfc95bffff910002bb112bc046cd0de24368a8ff Mon Sep 17 00:00:00 2001 From: carlo-bramini <30959007+carlo-bramini@users.noreply.github.com> Date: Sun, 25 Mar 2018 13:31:35 +0200 Subject: [PATCH] Add conditional inclusion for signal.h HAVE_SIGNAL_H macro is already handled by CMAKE, but signal.h is not included here (it's required for LASH). --- src/utils/fluidsynth_priv.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/utils/fluidsynth_priv.h b/src/utils/fluidsynth_priv.h index 2bdda93b..f48bed7a 100644 --- a/src/utils/fluidsynth_priv.h +++ b/src/utils/fluidsynth_priv.h @@ -106,6 +106,10 @@ #include #endif +#if HAVE_SIGNAL_H +#include +#endif + /** Integer types */ #if HAVE_STDINT_H #include