mirror of https://git.FreeBSD.org/ports.git
24 lines
807 B
C
24 lines
807 B
C
* Skip the detection of root rights requirement, the assumption that presence
|
|
* of KMS drivers removes the root requirement is only valid for Linux
|
|
*
|
|
--- hw/xfree86/xorg-wrapper.c.orig 2022-01-02 23:41:56.000000000 +0100
|
|
+++ hw/xfree86/xorg-wrapper.c 2022-06-29 16:28:24.797008000 +0200
|
|
@@ -191,7 +191,7 @@ int main(int argc, char *argv[])
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
-#ifdef WITH_LIBDRM
|
|
+#if defined(WITH_LIBDRM) && defined(__linux__)
|
|
struct drm_mode_card_res res;
|
|
#endif
|
|
char buf[PATH_MAX];
|
|
@@ -230,7 +230,7 @@ int main(int argc, char *argv[])
|
|
}
|
|
}
|
|
|
|
-#ifdef WITH_LIBDRM
|
|
+#if defined(WITH_LIBDRM) && defined(__linux__)
|
|
/* Detect if we need root rights, except when overridden by the config */
|
|
if (needs_root_rights == -1) {
|
|
for (i = 0; i < 16; i++) {
|