ffmpeg-6: fix COMPONENT_REVISION
[oi-userland.git] / components / runtime / openjdk-23 / patches / illumos-port-27.patch
blob96a01761a4ea811394aaa7c8a6cf5a9fc40783f0
1 --- a/src/java.desktop/unix/native/libawt_xawt/awt/screencast_pipewire.c Thu Jun 8 15:06:27 2023
2 +++ b/src/java.desktop/unix/native/libawt_xawt/awt/screencast_pipewire.c Mon Jun 12 09:15:47 2023
3 @@ -37,6 +37,10 @@
4 #include "gtk_interface.h"
5 #include "gtk3_interface.h"
7 +#ifndef MAX
8 +#define MAX(a,b) ((a) > (b) ? (a) : (b))
9 +#endif
11 int DEBUG_SCREENCAST_ENABLED = FALSE;
13 #define EXCEPTION_CHECK_DESCRIBE() if ((*env)->ExceptionCheck(env)) { \