File: 0014-disable-dropped-modules.patch

package info (click to toggle)
obs-studio 30.2.3%2Bdfsg-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 47,884 kB
  • sloc: ansic: 202,137; cpp: 112,403; makefile: 868; python: 599; sh: 275; javascript: 19
file content (28 lines) | stat: -rw-r--r-- 849 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: Drop modules that have been excluded during repacking
 - obs-qsv11
Author: IOhannes m zmölnig <umlaeute@debian.org>
Origin: Debian
Forwarded: not-needed
Last-Update: 2023-12-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- obs-studio.orig/plugins/CMakeLists.txt
+++ obs-studio/plugins/CMakeLists.txt
@@ -86,7 +86,7 @@
   if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/obs-browser/CMakeLists.txt)
     add_subdirectory(obs-browser)
   else()
-    obs_status(FATAL_ERROR "obs-browser submodule not available.")
+    obs_status(WARNING "obs-browser submodule not available.")
   endif()
 endfunction()
 
@@ -127,7 +127,7 @@
   add_subdirectory(vlc-video)
   add_subdirectory(sndio)
   add_subdirectory(obs-vst)
-  add_subdirectory(obs-qsv11)
+  #add_subdirectory(obs-qsv11)
 
   check_obs_browser()
 elseif(OS_FREEBSD)