diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2007-01-28 17:35:01 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2007-01-28 17:35:01 +0000 |
commit | 9add5e858c10b369eb44fe7ab618efb37eb3c585 (patch) | |
tree | fba7951f535dec4cb3edb6877eb2bbacc0d5f5b1 /src | |
parent | 15fe686025e855b0d7fd0c3a9b72730088b7191e (diff) | |
download | xine-lib-9add5e858c10b369eb44fe7ab618efb37eb3c585.tar.gz xine-lib-9add5e858c10b369eb44fe7ab618efb37eb3c585.tar.bz2 |
some additional fixes in case "-Wl,-z,defs" gets enabled again.
btw, i don't dislike checking undefined symbols at buildtime, i think it
is a good idea to catch common errors. but 5.5MB of useless bloat on
vidix drivers is not worth it.
CVS patchset: 8572
CVS date: 2007/01/28 17:35:01
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index ecb6add29..45b5dac8c 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -118,7 +118,7 @@ xineplug_vo_out_opengl_la_CFLAGS = $(VISIBILITY_FLAG) $(X_CFLAGS) $(MLIB_CFLAGS) xineplug_vo_out_opengl_la_LDFLAGS = -avoid-version -module xineplug_vo_out_syncfb_la_SOURCES = video_out_syncfb.c -xineplug_vo_out_syncfb_la_LIBADD = $(X_LIBS) $(XINE_LIB) $(THREAD_LIBS) +xineplug_vo_out_syncfb_la_LIBADD = $(X_LIBS) -lXext $(X_PRE_LIBS) -lX11 $(XINE_LIB) $(THREAD_LIBS) xineplug_vo_out_syncfb_la_CFLAGS = $(VISIBILITY_FLAG) xineplug_vo_out_syncfb_la_LDFLAGS = -avoid-version -module @@ -133,7 +133,7 @@ xineplug_vo_out_pgx32_la_CFLAGS = $(VISIBILITY_FLAG) xineplug_vo_out_pgx32_la_LDFLAGS = -avoid-version -module xineplug_vo_out_vidix_la_SOURCES = video_out_vidix.c $(X11OSD) -xineplug_vo_out_vidix_la_LIBADD = $(XINE_LIB) $(X_LIBS) -lXext \ +xineplug_vo_out_vidix_la_LIBADD = $(XINE_LIB) $(X_LIBS) -lXext $(X_PRE_LIBS) -lX11 \ $(top_builddir)/src/video_out/vidix/libvidix.la $(THREAD_LIBS) xineplug_vo_out_vidix_la_CFLAGS = $(VISIBILITY_FLAG) $(VIDIX_CFLAGS) $(X_CFLAGS) -fno-strict-aliasing xineplug_vo_out_vidix_la_LDFLAGS = -avoid-version -module |