0001-meson-Make-sure-gcr-oids.h-is-built.patch 952 B

123456789101112131415161718192021222324252627282930313233343536
  1. From 9fca6ae0aa7355c27d0922c561b9fbe18dde5b3d Mon Sep 17 00:00:00 2001
  2. From: Niels De Graef <nielsdegraef@gmail.com>
  3. Date: Fri, 19 Jun 2020 22:37:31 +0200
  4. Subject: [PATCH 1/1] meson: Make sure gcr-oids.h is built
  5. Fixes https://gitlab.gnome.org/GNOME/gcr/-/issues/48
  6. ---
  7. gcr/meson.build | 5 ++++-
  8. 1 file changed, 4 insertions(+), 1 deletion(-)
  9. --- end of original header ---
  10. Upstream-Status: Backport [https://github.com/GNOME/gcr.git]
  11. Signed-off-by: Joe Slater <joe.slater@windriver.com>
  12. ---
  13. diff --git a/gcr/meson.build b/gcr/meson.build
  14. index 199452f..06c3a63 100644
  15. --- a/gcr/meson.build
  16. +++ b/gcr/meson.build
  17. @@ -178,7 +178,10 @@ endif
  18. gcr_base_dep = declare_dependency(
  19. link_with: gcr_base_lib,
  20. include_directories: include_directories('..'),
  21. - sources: gcr_enums_gen[1], # Make sure gcr-enum-types-base.h can be included
  22. + sources: [
  23. + gcr_enums_gen[1],
  24. + gcr_oids[1],
  25. + ],
  26. )
  27. if get_option('introspection')
  28. --
  29. 2.7.4