mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 01:28:34 +00:00
sys/: Move interface libs from LDFLAGS to LIBADD, fix relocation errors after installation (see #127664).
Original commit message from CVS: 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net> * sys/ximage/Makefile.am: * sys/xvideo/Makefile.am: * sys/xvimage/Makefile.am: Move interface libs from LDFLAGS to LIBADD, fix relocation errors after installation (see #127664).
This commit is contained in:
parent
4c9ab8aa89
commit
2465df5cdb
3 changed files with 14 additions and 8 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* sys/ximage/Makefile.am:
|
||||
* sys/xvideo/Makefile.am:
|
||||
* sys/xvimage/Makefile.am:
|
||||
Move interface libs from LDFLAGS to LIBADD, fix relocation errors
|
||||
after installation (see #127664).
|
||||
|
||||
2004-01-02 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
|
||||
|
|
|
@ -3,10 +3,9 @@ plugin_LTLIBRARIES = libgstximagesink.la
|
|||
|
||||
libgstximagesink_la_SOURCES = ximagesink.c
|
||||
libgstximagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
||||
libgstximagesink_la_LIBADD = $(X_LIBS) $(XSHM_LIBS)
|
||||
libgstximagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) \
|
||||
$(top_builddir)/gst-libs/gst/navigation/libgstnavigation.la \
|
||||
$(top_builddir)/gst-libs/gst/xoverlay/libgstxoverlay.la
|
||||
libgstximagesink_la_LIBADD = $(X_LIBS) $(XSHM_LIBS) \
|
||||
$(top_builddir)/gst-libs/gst/libgstinterfaces-$(GST_MAJORMINOR).la
|
||||
libgstximagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = ximagesink.h
|
||||
|
||||
|
|
|
@ -3,10 +3,9 @@ plugin_LTLIBRARIES = libgstxvimagesink.la
|
|||
|
||||
libgstxvimagesink_la_SOURCES = xvimagesink.c
|
||||
libgstxvimagesink_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
||||
libgstxvimagesink_la_LIBADD = $(X_LIBS) $(XVIDEO_LIBS) $(XSHM_LIBS)
|
||||
libgstxvimagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) \
|
||||
$(top_builddir)/gst-libs/gst/navigation/libgstnavigation.la \
|
||||
$(top_builddir)/gst-libs/gst/xoverlay/libgstxoverlay.la
|
||||
libgstxvimagesink_la_LIBADD = $(X_LIBS) $(XVIDEO_LIBS) $(XSHM_LIBS) \
|
||||
$(top_builddir)/gst-libs/gst/libgstinterfaces-$(GST_MAJORMINOR).la
|
||||
libgstxvimagesink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = xvimagesink.h
|
||||
|
||||
|
|
Loading…
Reference in a new issue