File: fix-FTBFS.patch

package info (click to toggle)
retro-gtk 1.0.2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,320 kB
  • sloc: ansic: 12,860; xml: 807; sh: 51; makefile: 9
file content (24 lines) | stat: -rw-r--r-- 839 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Author: Fabio Fantoni <fantonifabio@tiscali.it>
Description: meson: remove unknown arguments that cause fail to build

The build was failing with:
retro-gtk/meson.build:188:4:
ERROR: Got unknown keyword arguments "export_packages", "namespace"

Checking https://mesonbuild.com/Pkgconfig-module.html the arguments
"export_packages" and "namespace" are not present in pkg.generate, so
I removed them to make the build complete

Forwarded: not yet
---
--- a/retro-gtk/meson.build
+++ b/retro-gtk/meson.build
@@ -189,8 +189,6 @@
     description: 'A simple GObject game controller library',
       libraries: retro_gtk_lib,
            name: 'retro-gtk',
-      namespace: 'Retro',
-export_packages: 'retro-gtk',
        filebase: 'retro-gtk-' + retro_gtk_api_version,
         version: meson.project_version(),
         subdirs: 'retro-gtk',