Commit 3981297 1 parent 16c3d53 commit 3981297 Copy full SHA for 3981297
File tree 2 files changed +12
-1
lines changed
src/java.desktop/unix/native
libpipewire/include/spa/param/audio
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,11 @@ static struct PwLoopData pw = {0};
49
49
jclass tokenStorageClass = NULL ;
50
50
jmethodID storeTokenMethodID = NULL ;
51
51
52
+ #if defined(AIX ) && defined(__open_xl_version__ ) && __open_xl_version__ >= 17
53
+ #pragma GCC diagnostic push
54
+ #pragma GCC diagnostic ignored "-Wformat-nonliteral"
55
+ #endif
56
+
52
57
inline void debug_screencast (
53
58
const char * __restrict fmt ,
54
59
...
Original file line number Diff line number Diff line change @@ -11,10 +11,16 @@ extern "C" {
11
11
12
12
#include <stdint.h>
13
13
14
- #if !defined(__FreeBSD__ ) && !defined(__MidnightBSD__ )
14
+ #if !defined(__FreeBSD__ ) && !defined(__MidnightBSD__ ) && !defined( AIX )
15
15
#include <endian.h>
16
16
#endif
17
17
18
+ #if defined(AIX )
19
+ #include <sys/machine.h>
20
+ #define __BIG_ENDIAN BIG_ENDIAN
21
+ #define __BYTE_ORDER BIG_ENDIAN
22
+ #endif
23
+
18
24
/**
19
25
* \addtogroup spa_param
20
26
* \{
You can’t perform that action at this time.
0 commit comments