* Update CHANGELOG.md for 1.6. * Update README.md to point to release 1.6 in instructions * Fix installation of man pages in proper man dirs - Added only-build-shared-library.patch. - Update to version 1.6: * Created a new manpages for gamemoderun and the example, now called gamemode-simulate-game. * Copy default config file to the correct location. * Allow LD_PRELOAD to be overridden in $GAMEMODERUNEXEC. * Various minor bugfixes. - Drop special handling for no longer supported Leap 42. OBS-URL: https://build.opensuse.org/package/show/games:tools/gamemode?expand=0&rev=20
28 lines
698 B
Diff
28 lines
698 B
Diff
From: Matthias Bach <marix@marix.org>
|
|
Date: Wed, 23 Sep 2020 20:36:08 +0200
|
|
Subject: Build only the dynamic library
|
|
Upstream: never
|
|
|
|
openSUSE policy asks to only build the dynamic library unless there is a
|
|
compelling reason to also package a static one.
|
|
---
|
|
lib/meson.build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/meson.build b/lib/meson.build
|
|
index e810509..e8754e6 100644
|
|
--- a/lib/meson.build
|
|
+++ b/lib/meson.build
|
|
@@ -25,7 +25,7 @@ gamemode_headers_includes = [
|
|
]
|
|
|
|
# Small library to automatically use gamemode
|
|
-libgamemodeauto = both_libraries(
|
|
+libgamemodeauto = shared_library(
|
|
'gamemodeauto',
|
|
sources: [
|
|
'client_loader.c',
|
|
--
|
|
2.26.2
|
|
|