graphics/piglit: fix build
Include libgen.h for the prototype of basename() and correct the type of a return value (0 instead of (void*)0, which probably has been accepted with a warning by a previous compiler version, but is considered an error by clang-15 in -CURRENT). Reported by: pkg-fallout
This commit is contained in:
parent
4be1fbab53
commit
fcebb835c8
3 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
--- tests/egl/spec/egl_chromium_sync_control/egl_chromium_sync_control.c.orig 2020-09-09 08:57:32 UTC
|
||||
+++ tests/egl/spec/egl_chromium_sync_control/egl_chromium_sync_control.c
|
||||
@@ -35,6 +35,9 @@
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <libgen.h> /* For basename(3) */
|
||||
+#endif
|
||||
|
||||
#include "piglit-util-egl.h"
|
||||
#include "piglit-util-gl.h"
|
|
@ -0,0 +1,11 @@
|
|||
--- tests/spec/ext_external_objects/vk.c.orig 2020-09-09 08:57:32 UTC
|
||||
+++ tests/spec/ext_external_objects/vk.c
|
||||
@@ -336,7 +336,7 @@ get_aspect_from_depth_format(VkFormat depth_format)
|
||||
default:
|
||||
break;
|
||||
}
|
||||
- return VK_NULL_HANDLE;
|
||||
+ return VK_IMAGE_ASPECT_NONE;
|
||||
}
|
||||
|
||||
static VkPipelineStageFlags
|
12
graphics/piglit/files/patch-tests_util_piglit-framework-gl.c
Normal file
12
graphics/piglit/files/patch-tests_util_piglit-framework-gl.c
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- tests/util/piglit-framework-gl.c.orig 2020-09-09 08:57:32 UTC
|
||||
+++ tests/util/piglit-framework-gl.c
|
||||
@@ -27,6 +27,9 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <libgen.h> /* For basename(3) */
|
||||
+#endif
|
||||
|
||||
#include "piglit-util-gl.h"
|
||||
#include "piglit-framework-gl/piglit_gl_framework.h"
|
Loading…
Reference in a new issue