summaryrefslogtreecommitdiff
path: root/plugins/dfxvideo
diff options
context:
space:
mode:
authorStelios Tsampas <loathingkernel@gmail.com>2017-10-09 22:29:39 +0300
committerStelios Tsampas <loathingkernel@gmail.com>2018-01-11 15:36:48 +0200
commitb7e47230b4f50e964ff236075403357a9fd0fff4 (patch)
tree366b378671588406e16d7d138e02eff1c6c1bf3c /plugins/dfxvideo
parent75fff89edf17caaf7b20c63d9f7049999a4da1d8 (diff)
downloadpcsxr-b7e47230b4f50e964ff236075403357a9fd0fff4.tar.gz
* Add gnu99 compiler directive, make build compatible with earlier automake versions
Diffstat (limited to 'plugins/dfxvideo')
-rwxr-xr-xplugins/dfxvideo/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/dfxvideo/Makefile.am b/plugins/dfxvideo/Makefile.am
index b1dc9c3d..15b44b59 100755
--- a/plugins/dfxvideo/Makefile.am
+++ b/plugins/dfxvideo/Makefile.am
@@ -30,7 +30,8 @@ cfgDFXVideo_SOURCES = gpucfg-0.1df/main.c GtkResources.c GtkResources.h
cfgDFXVideo_LDADD = $(GTK3_LIBS) -lXext
# gresource.xml is dynamically generated in CMake. Mirror that here in a static way.
-define gresource_xml =
+#define gresource_xml =
+define gresource_xml
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/org/pcsxr/dfxvideo">
@@ -38,9 +39,12 @@ define gresource_xml =
</gresource>
</gresources>
endef
+# FIXME
+export gresource_xml
dfxvideo.gresource.xml:
- $(file >$@,$(gresource_xml))
+# $(file >$@,$(gresource_xml))
+ @echo "$$gresource_xml" >$@
dfxvideo_gresource: dfxvideo.gresource.xml
$(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/gpucfg-0.1df --generate-dependencies $(srcdir)/$<)
GtkResources.c: dfxvideo.gresource.xml $(dfxvideo_gresource)