summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-01-28 17:00:41 +0000
committerTim-Philipp Müller <tim@centricular.com>2017-05-13 11:14:45 +0100
commit221a3e5e275a5d936fb8ecba2c18bbe8e26f1432 (patch)
tree1a6c23233c61e2c62570b33cbeb63f2da221616b
parentc3f6baa09092b68f13aaabd191bbf13a46c66d2b (diff)
downloadglib-221a3e5e275a5d936fb8ecba2c18bbe8e26f1432.tar.gz
gio: tests: rename generated giotypefunc.c to giotypefuncs.inc
This is needed for the Meson port, a file name .c that's included and shouldn't be compiled into an object is difficult to manage otherwise.
-rw-r--r--gio/tests/.gitignore2
-rw-r--r--gio/tests/Makefile.am6
-rw-r--r--gio/tests/defaultvalue.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/gio/tests/.gitignore b/gio/tests/.gitignore
index 31147909c..a6942d241 100644
--- a/gio/tests/.gitignore
+++ b/gio/tests/.gitignore
@@ -80,7 +80,7 @@ gdbus-unix-addresses
glistmodel
gio-du
giomodule
-giotypefuncs.c
+giotypefuncs.inc
gnotification
gsubprocess
gsubprocess-testprog
diff --git a/gio/tests/Makefile.am b/gio/tests/Makefile.am
index 8ba7626f4..acc1da4f4 100644
--- a/gio/tests/Makefile.am
+++ b/gio/tests/Makefile.am
@@ -566,9 +566,9 @@ EXTRA_DIST += test.gresource.xml test1.txt test2.gresource.xml test2.txt test3.g
CLEANFILES += test-generated.txt test_resources.c test_resources2.[ch] plugin_resources.c test.gresource
endif # !CROSS_COMPILING
-BUILT_SOURCES += giotypefuncs.c
+BUILT_SOURCES += giotypefuncs.inc
-giotypefuncs.c: Makefile
+giotypefuncs.inc: Makefile
$(AM_V_GEN) echo '#include <gio/gio.h>' > xgen-giosrc.c && \
echo "G_GNUC_BEGIN_IGNORE_DEPRECATIONS" > xgen-gio && \
${CPP} $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) xgen-giosrc.c | \
@@ -578,7 +578,7 @@ giotypefuncs.c: Makefile
$(SED) -e 's/^/*tp++ = /' -e 's/$$/ ();/' >> xgen-gio && \
cp xgen-gio $@ # && rm -f xgen-gio xgen-giosrc.c
-CLEANFILES += xgen-giosrc.c xgen-gio giotypefuncs.c
+CLEANFILES += xgen-giosrc.c xgen-gio giotypefuncs.inc
if ENABLE_INSTALLED_TESTS
if OS_UNIX
diff --git a/gio/tests/defaultvalue.c b/gio/tests/defaultvalue.c
index 965402b3d..a1c76c70a 100644
--- a/gio/tests/defaultvalue.c
+++ b/gio/tests/defaultvalue.c
@@ -174,7 +174,7 @@ list_all_types (void)
GType *tp;
all_registered_types = g_new0 (GType, 1000);
tp = all_registered_types;
-#include "giotypefuncs.c"
+#include "giotypefuncs.inc"
*tp = 0;
}