23 lines
869 B
Diff
23 lines
869 B
Diff
Imported from https://git.alpinelinux.org/aports/plain/testing/blender/0002-fix-linking-issue.patch?id=42cee48643cb6ccc1a110e66446aa74408ee0160
|
|
|
|
From 54f5929131f537b6cbb74b5a7da45858cef6020b Mon Sep 17 00:00:00 2001
|
|
From: Leon Marz <lmarz@cs.uni-frankfurt.de>
|
|
Date: Tue, 1 Sep 2020 09:11:18 +0200
|
|
Subject: [PATCH 2/3] fix linking issue
|
|
|
|
---
|
|
intern/ghost/CMakeLists.txt | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: blender-3.3.0/intern/ghost/CMakeLists.txt
|
|
===================================================================
|
|
--- blender-3.3.0.orig/intern/ghost/CMakeLists.txt
|
|
+++ blender-3.3.0/intern/ghost/CMakeLists.txt
|
|
@@ -562,5 +562,5 @@ if(WITH_XR_OPENXR)
|
|
endif()
|
|
|
|
add_definitions(${GL_DEFINITIONS})
|
|
-
|
|
+list(APPEND LIB "-lX11" "-lXi" "-lXxf86vm" "-lXfixes" "-lXrender")
|
|
blender_add_lib(bf_intern_ghost "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|