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/dxr3 | |
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/dxr3')
-rw-r--r-- | src/dxr3/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dxr3/Makefile.am b/src/dxr3/Makefile.am index 1027d0e44..fadb8b736 100644 --- a/src/dxr3/Makefile.am +++ b/src/dxr3/Makefile.am @@ -25,7 +25,7 @@ xineplug_LTLIBRARIES = $(dxr3_modules) xineplug_decode_dxr3_video_la_SOURCES = dxr3_decode_video.c xineplug_decode_dxr3_video_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) xineplug_decode_dxr3_video_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) -xineplug_decode_dxr3_video_la_LDFLAGS = -avoid-version -module +xineplug_decode_dxr3_video_la_LDFLAGS = $(xineplug_ldflags) if HAVE_DVDNAV AM_CPPFLAGS = $(DVDNAV_CFLAGS) @@ -37,7 +37,7 @@ xineplug_decode_dxr3_spu_la_SOURCES = dxr3_decode_spu.c nav_read.c xineplug_decode_dxr3_spu_la_LIBADD = $(XINE_LIB) $(LTLIBINTL) endif xineplug_decode_dxr3_spu_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) -xineplug_decode_dxr3_spu_la_LDFLAGS = -avoid-version -module +xineplug_decode_dxr3_spu_la_LDFLAGS = $(xineplug_ldflags) xineplug_vo_out_dxr3_la_SOURCES = \ dxr3_mpeg_encoders.c \ @@ -47,7 +47,7 @@ xineplug_vo_out_dxr3_la_SOURCES = \ xineplug_vo_out_dxr3_la_LIBADD = $(XINE_LIB) $(link_fame) $(link_rte) $(link_x_libs) $(LTLIBINTL) $(DYNAMIC_LD_LIBS) -lm xineplug_vo_out_dxr3_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) -xineplug_vo_out_dxr3_la_LDFLAGS = -avoid-version -module +xineplug_vo_out_dxr3_la_LDFLAGS = $(xineplug_ldflags) noinst_HEADERS = \ em8300.h \ |