Eliminate gq-marshal compile warning
authorColin Clark <colin.clark@cclark.uk>
Thu, 6 Jul 2023 09:01:16 +0000 (10:01 +0100)
committerColin Clark <colin.clark@cclark.uk>
Thu, 6 Jul 2023 09:01:16 +0000 (10:01 +0100)
glib-genmarshal produces code that results in:

warning: ISO C forbids conversion of object pointer to function pointer
type [-Wpedantic]

Insert a pragma at the start of the code to inhibit this.

scripts/gq-marshal-pragma.sh [new file with mode: 0755]
scripts/meson.build
src/meson.build

diff --git a/scripts/gq-marshal-pragma.sh b/scripts/gq-marshal-pragma.sh
new file mode 100755 (executable)
index 0000000..3daa648
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/sh
+#**********************************************************************
+# Copyright (C) 2023 - The Geeqie Team
+#
+# Author: Colin Clark
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#**********************************************************************
+
+## @file
+## @brief Include pragma command at head of gq-marshal.c.
+##
+## $1 input - gq-marshal.c
+## $2 output - gq-marshal-pragma.c
+##
+## The code produced by glib-genmarshal results in compile warnings.
+## This scripts adds a pragma at the head of the file to prevent this.
+##
+
+printf "#pragma GCC diagnostic ignored \"-Wpedantic\"\n" > "$2"
+cat "$1" >> "$2"
index 28f2bf7..1ed02aa 100644 (file)
@@ -21,6 +21,7 @@ script_sources += files('authors.sh',
 'generate-linuxdeploy-for-arm.sh',
 'generate-man-page.sh',
 'get-test-images.sh',
+'gq-marshal-pragma.sh',
 'image-test.sh',
 'keyword_merge.sh',
 'new-release.sh',
index c430d6e..69d80a9 100644 (file)
@@ -242,9 +242,18 @@ subdir('pan-view')
 subdir('ui')
 subdir('view-file')
 
-gqmarshal = gnome.genmarshal('gq-marshal', prefix : 'gq_marshal', sources : 'gq-marshal.list')
-project_sources += gqmarshal[0]
-project_sources += gqmarshal[1]
+gq_marshal = gnome.genmarshal('gq-marshal', prefix : 'gq_marshal', sources : 'gq-marshal.list')
+
+project_sources += gq_marshal[1]
+
+gq_marshal_pragma_sh = find_program('gq-marshal-pragma.sh', dirs : scriptsdir)
+
+gq_marshal_pragma = custom_target('gq-marshal-pragma',
+                    input : gq_marshal[0],
+                    output : 'gq-marshal-pragma.c',
+                    command : [gq_marshal_pragma_sh, '@INPUT@', '@OUTPUT@'])
+
+project_sources += gq_marshal_pragma
 
 icon_pairs = [
 'icon_spinner', files('ui_spinner.png'),