-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update gettext and fix QEMU compiler error
Proper fix for the new compiler errors introduced in Xcode 15.3.
- Loading branch information
Showing
5 changed files
with
117 additions
and
87 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
diff --color -Naur a/libtextstyle/lib/get_ppid_of.c b/libtextstyle/lib/get_ppid_of.c | ||
--- a/libtextstyle/lib/get_ppid_of.c 2024-02-21 02:45:23 | ||
+++ b/libtextstyle/lib/get_ppid_of.c 2024-03-30 20:38:55 | ||
@@ -33,6 +33,8 @@ | ||
#endif | ||
|
||
#if defined __APPLE__ && defined __MACH__ /* Mac OS X */ | ||
+# include <TargetConditionals.h> | ||
+# if TARGET_OS_OSX | ||
/* Get MAC_OS_X_VERSION_MIN_REQUIRED, MAC_OS_X_VERSION_MAX_ALLOWED. | ||
The version at runtime satisfies | ||
MAC_OS_X_VERSION_MIN_REQUIRED <= version <= MAC_OS_X_VERSION_MAX_ALLOWED. */ | ||
@@ -46,6 +48,7 @@ | ||
extern int proc_pidinfo (int, int, uint64_t, void *, int) WEAK_IMPORT_ATTRIBUTE; | ||
# endif | ||
# endif | ||
+# endif | ||
#endif | ||
|
||
#if defined _AIX /* AIX */ | ||
@@ -238,6 +241,7 @@ | ||
#endif | ||
|
||
#if defined __APPLE__ && defined __MACH__ /* Mac OS X */ | ||
+# if TARGET_OS_OSX | ||
# if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050 | ||
|
||
/* Mac OS X >= 10.7 has PROC_PIDT_SHORTBSDINFO. */ | ||
@@ -271,6 +275,7 @@ | ||
} | ||
# endif | ||
|
||
+# endif | ||
# endif | ||
#endif | ||
|
||
diff --color -Naur a/libtextstyle/lib/get_progname_of.c b/libtextstyle/lib/get_progname_of.c | ||
--- a/libtextstyle/lib/get_progname_of.c 2024-02-21 02:45:23 | ||
+++ b/libtextstyle/lib/get_progname_of.c 2024-03-30 20:39:22 | ||
@@ -41,6 +41,8 @@ | ||
#endif | ||
|
||
#if defined __APPLE__ && defined __MACH__ /* Mac OS X */ | ||
+# include <TargetConditionals.h> | ||
+# if TARGET_OS_OSX | ||
/* Get MAC_OS_X_VERSION_MIN_REQUIRED, MAC_OS_X_VERSION_MAX_ALLOWED. | ||
The version at runtime satisfies | ||
MAC_OS_X_VERSION_MIN_REQUIRED <= version <= MAC_OS_X_VERSION_MAX_ALLOWED. */ | ||
@@ -54,6 +56,7 @@ | ||
extern int proc_pidinfo (int, int, uint64_t, void *, int) WEAK_IMPORT_ATTRIBUTE; | ||
# endif | ||
# endif | ||
+# endif | ||
#endif | ||
|
||
#if defined _AIX /* AIX */ | ||
@@ -278,6 +281,7 @@ | ||
#endif | ||
|
||
#if defined __APPLE__ && defined __MACH__ /* Mac OS X */ | ||
+# if TARGET_OS_OSX | ||
# if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050 | ||
|
||
/* Mac OS X >= 10.7 has PROC_PIDT_SHORTBSDINFO. */ | ||
@@ -311,6 +315,7 @@ | ||
} | ||
# endif | ||
|
||
+# endif | ||
# endif | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7011,3 +7011,46 @@ index 9f6e6279d9..b6cda6e00b 100644 | |
-- | ||
2.41.0 | ||
|
||
From c03d7e35473b57544523ba19975023332567a63d Mon Sep 17 00:00:00 2001 | ||
From: osy <[email protected]> | ||
Date: Sat, 30 Mar 2024 20:15:01 -0700 | ||
Subject: [PATCH] egl-helpers: incorrect type for native_display | ||
|
||
--- | ||
ui/egl-helpers.c | 6 +++--- | ||
1 file changed, 3 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/ui/egl-helpers.c b/ui/egl-helpers.c | ||
index 0df9dd8fd5..0e9a3e469d 100644 | ||
--- a/ui/egl-helpers.c | ||
+++ b/ui/egl-helpers.c | ||
@@ -505,7 +505,7 @@ static int qemu_egl_init_dpy_platform(EGLNativeDisplayType native, | ||
PFNEGLGETPLATFORMDISPLAYEXTPROC getPlatformDisplayEXT = | ||
(void *) eglGetProcAddress("eglGetPlatformDisplayEXT"); | ||
if (getPlatformDisplayEXT && platform != 0) { | ||
- dpy = getPlatformDisplayEXT(platform, native, NULL); | ||
+ dpy = getPlatformDisplayEXT(platform, (void *)native, NULL); | ||
} | ||
} | ||
|
||
@@ -526,7 +526,7 @@ static int qemu_egl_init_dpy_platform(EGLNativeDisplayType native, | ||
|
||
int qemu_egl_init_dpy_surfaceless(DisplayGLMode mode) | ||
{ | ||
- return qemu_egl_init_dpy_platform(NULL, EGL_PLATFORM_SURFACELESS_MESA, mode); | ||
+ return qemu_egl_init_dpy_platform(EGL_DEFAULT_DISPLAY, EGL_PLATFORM_SURFACELESS_MESA, mode); | ||
} | ||
|
||
#if defined(CONFIG_X11) || defined(CONFIG_GBM) | ||
@@ -555,7 +555,7 @@ int qemu_egl_init_dpy_mesa(EGLNativeDisplayType dpy, DisplayGLMode mode) | ||
|
||
int qemu_egl_init_dpy_angle(DisplayGLMode mode) | ||
{ | ||
- return qemu_egl_init_dpy_platform(NULL, EGL_PLATFORM_ANGLE_ANGLE, mode); | ||
+ return qemu_egl_init_dpy_platform(EGL_DEFAULT_DISPLAY, EGL_PLATFORM_ANGLE_ANGLE, mode); | ||
} | ||
|
||
#endif | ||
-- | ||
2.41.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters