fluidsynth: fix the build with clang on powerpc
Unlike gcc, clang defines __POWERPC__ and as such wants to include a non-existing header. Bring back gcc's behaviour by deleting the troublesome #ifdef. OK sthen@
This commit is contained in:
parent
76d8ca3021
commit
5608961680
18
audio/fluidsynth/patches/patch-src_utils_fluidsynth_priv_h
Normal file
18
audio/fluidsynth/patches/patch-src_utils_fluidsynth_priv_h
Normal file
@ -0,0 +1,18 @@
|
||||
$OpenBSD: patch-src_utils_fluidsynth_priv_h,v 1.1 2020/04/22 16:53:20 cwen Exp $
|
||||
|
||||
Don't use an header that is not provided
|
||||
|
||||
Index: src/utils/fluidsynth_priv.h
|
||||
--- src/utils/fluidsynth_priv.h.orig
|
||||
+++ src/utils/fluidsynth_priv.h
|
||||
@@ -28,10 +28,6 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
-#if defined(__POWERPC__) && !(defined(__APPLE__) && defined(__MACH__))
|
||||
-#include "config_maxmsp43.h"
|
||||
-#endif
|
||||
-
|
||||
#if defined(WIN32) && !defined(MINGW32)
|
||||
#include "config_win32.h"
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user