blob: 7723dae8e30b3979709360c3f81eb4a5e22b2bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- a/util/support/plugins.c
+++ b/util/support/plugins.c
@@ -64,10 +64,12 @@
*/
#ifdef __linux__
#include <features.h>
+#if defined(__GLIBC__)
#if ! __GLIBC_PREREQ(2, 25)
#define dlclose(x)
#endif
#endif
+#endif
#if USE_DLOPEN && USE_CFBUNDLE
#include <CoreFoundation/CoreFoundation.h>
|