mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 12:21:30 +00:00
1c7202ea06
Original commit message from CVS: 2008-03-17 Andy Wingo <wingo@pobox.com> * ext/ffmpeg/Makefile.am (libgstffmpeg_la_LIBADD): Re-add -lz explicitly here. * configure.ac: Remove -lz from FFMPEG_LIBS, because FFMPEG_LIBS are used in the Makefile.am as a DEPENDENCIES target, and -lz is not a target. Also in a blahriffic turn of events, MMX and Altivec code on MacOS 10.5 produces non-PIC code. Turn them off on macos.
30 lines
731 B
Makefile
30 lines
731 B
Makefile
plugin_LTLIBRARIES = libgstffmpeg.la
|
|
|
|
libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
|
gstffmpegprotocol.c \
|
|
gstffmpegcodecmap.c \
|
|
gstffmpegenc.c \
|
|
gstffmpegdec.c \
|
|
gstffmpegcfg.c \
|
|
gstffmpegdemux.c \
|
|
gstffmpegmux.c \
|
|
gstffmpegdeinterlace.c \
|
|
gstffmpegaudioresample.c
|
|
# \
|
|
# gstffmpegscale.c
|
|
|
|
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(FFMPEG_CFLAGS)
|
|
libgstffmpeg_la_LIBADD = $(FFMPEG_LIBS) $(GST_BASE_LIBS) $(LIBM) -lz
|
|
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DARWIN_LDFLAGS)
|
|
|
|
if HAVE_FFMPEG_UNINSTALLED
|
|
libgstffmpeg_la_DEPENDENCIES = $(FFMPEG_LIBS)
|
|
endif
|
|
|
|
|
|
noinst_HEADERS = \
|
|
gstffmpeg.h \
|
|
gstffmpegcodecmap.h \
|
|
gstffmpegenc.h \
|
|
gstffmpegcfg.h
|