diff options
author | Vincent Torri <vtorri@univ-evry.fr> | 2007-01-03 19:54:33 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-01-03 19:54:33 +0000 |
commit | e163953b0e1c80aab8622cc0ec5ed567da8097c1 (patch) | |
tree | 44aab9ef7ea0673e97cb433f4853b910da9b9025 /sys/directdraw/Makefile.am | |
parent | 9b1bffb45607c0cdfc80d1c856d331789789cd34 (diff) | |
download | gst-plugins-bad-e163953b0e1c80aab8622cc0ec5ed567da8097c1.tar.gz gst-plugins-bad-e163953b0e1c80aab8622cc0ec5ed567da8097c1.tar.bz2 gst-plugins-bad-e163953b0e1c80aab8622cc0ec5ed567da8097c1.zip |
Add directdrawsink to build and dist it, so it gets built when compiling with MingW on win32 and the required headers...
Original commit message from CVS:
Patch by: Vincent Torri <vtorri at univ-evry fr>
* configure.ac:
* sys/Makefile.am:
* sys/directdraw/Makefile.am:
Add directdrawsink to build and dist it, so it gets built when
compiling with MingW on win32 and the required headers and libraries
are available (fixes: #392313).
* sys/directdraw/gstdirectdrawsink.c:
(gst_directdrawsink_center_rect), (gst_directdrawsink_show_frame),
(gst_directdrawsink_setup_ddraw),
(gst_directdrawsink_surface_create):
Comment out some unused things and fix some printf format issues in
order to avoid warnings when buildling with MingW (#392313).
Diffstat (limited to 'sys/directdraw/Makefile.am')
-rw-r--r-- | sys/directdraw/Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/directdraw/Makefile.am b/sys/directdraw/Makefile.am new file mode 100644 index 00000000..999f026e --- /dev/null +++ b/sys/directdraw/Makefile.am @@ -0,0 +1,9 @@ +plugin_LTLIBRARIES = libgstdirectdrawsink.la
+
+libgstdirectdrawsink_la_SOURCES = gstdirectdrawsink.c gstdirectdrawplugin.c
+libgstdirectdrawsink_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
+ $(GST_PLUGINS_BASE_CFLAGS)
+libgstdirectdrawsink_la_LIBADD = $(DIRECTDRAW_LIBS) \
+ $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
+ -lgstinterfaces-$(GST_MAJORMINOR)
+libgstdirectdrawsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|