diff options
author | František Dvořák <valtri@civ.zcu.cz> | 2010-10-23 13:18:24 +0200 |
---|---|---|
committer | František Dvořák <valtri@civ.zcu.cz> | 2010-10-23 13:18:24 +0200 |
commit | 2af0f16f1fdadf1e85493f8506d441df09199fa6 (patch) | |
tree | 8e17d074f1aa138a6ef173d0f33cfd81fd111cb6 /src/post/deinterlace | |
parent | 4099627e7ce56690bcfda1dbfc322a8572144f37 (diff) | |
download | xine-lib-2af0f16f1fdadf1e85493f8506d441df09199fa6.tar.gz xine-lib-2af0f16f1fdadf1e85493f8506d441df09199fa6.tar.bz2 |
mingw32-w64 port: '-no-undefined' part
- use -no-undefined flag only for building shared libraries (libxine, plugins)
- plugins LDFLAGS unification
- move -no-undefined into LDFLAGS_NOUNDEFINED
- attributes.m4 fix
Diffstat (limited to 'src/post/deinterlace')
-rw-r--r-- | src/post/deinterlace/Makefile.am | 2 | ||||
-rw-r--r-- | src/post/deinterlace/plugins/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/post/deinterlace/Makefile.am b/src/post/deinterlace/Makefile.am index bf5b281a8..079ed5baf 100644 --- a/src/post/deinterlace/Makefile.am +++ b/src/post/deinterlace/Makefile.am @@ -13,7 +13,7 @@ xineplug_post_tvtime_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) $(PTHREAD_LIBS) \ $(top_builddir)/src/post/deinterlace/plugins/libdeinterlaceplugins.la xineplug_post_tvtime_la_CFLAGS = $(VISIBILITY_FLAG) -xineplug_post_tvtime_la_LDFLAGS = -avoid-version -module \ +xineplug_post_tvtime_la_LDFLAGS = $(xineplug_ldflags) \ @IMPURE_TEXT_LDFLAGS@ noinst_HEADERS = deinterlace.h pulldown.h speedtools.h speedy.h tvtime.h diff --git a/src/post/deinterlace/plugins/Makefile.am b/src/post/deinterlace/plugins/Makefile.am index 5f0997eb8..5e50c25f4 100644 --- a/src/post/deinterlace/plugins/Makefile.am +++ b/src/post/deinterlace/plugins/Makefile.am @@ -49,6 +49,6 @@ libdeinterlaceplugins_la_SOURCES = \ kdetv_greedyh.c \ kdetv_tomsmocomp.c libdeinterlaceplugins_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) -libdeinterlaceplugins_la_LDFLAGS = -avoid-version -module +libdeinterlaceplugins_la_LDFLAGS = $(xineplug_ldflags) noinst_HEADERS = plugins.h greedyhmacros.h |