Changes of Revision 111

obs-studio.changes Changed
x
 
1
@@ -1,4 +1,9 @@
2
 -------------------------------------------------------------------
3
+Fri Jan 19 15:00:06 UTC 2024 - Hans-Peter Jansen <hp@urpla.net>
4
+
5
+- Explicitely set CFLAGS/CXXFLAGS for all targets
6
+
7
+-------------------------------------------------------------------
8
 Wed Jun 21 08:03:37 UTC 2023 - hpj@urpla.net
9
 
10
 - Update to version 29.1.3:
11
obs-studio.spec Changed
22
 
1
@@ -129,14 +129,15 @@
2
 %build
3
 mkdir -p build && cd build
4
 # does not like cmake macro as it fails to link in math.h (-lma
5
-# the compile flags for 15.{4,5} must be relaxed in order to compile obs-studio successfully
6
+# the compile flags must be relaxed in order to compile obs-studio successfully
7
+export CFLAGS="%{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder"
8
+export CXXFLAGS="%{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder"
9
+
10
 cmake \
11
   -DCMAKE_CXX_STANDARD=17 \
12
   -DCMAKE_INSTALL_PREFIX=/usr \
13
-%if 0%{?suse_version} == 1500
14
-  -DCMAKE_C_FLAGS:STRING="$CFLAGS %{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder" \
15
-  -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS %{optflags} -Wno-error=type-limits -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=pointer-sign -Wno-error=reorder" \
16
-%endif
17
+  -DCMAKE_C_FLAGS:STRING="$CFLAGS" \
18
+  -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \
19
   -DUNIX_STRUCTURE=1 \
20
 %if "%{_lib}" == "lib64"
21
   -DOBS_MULTIARCH_SUFFIX=64 \
22