diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-13 01:53:01 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-12-13 01:53:01 +0000 |
commit | 6492ba6e20b59246b19c80584ff1865aab200f32 (patch) | |
tree | 515c189696f6ac0679b3c8e1b8b2a2a5a78dba39 | |
parent | cf3a06faebeb652c08181124c237c4bc6d686847 (diff) | |
download | xine-lib-6492ba6e20b59246b19c80584ff1865aab200f32.tar.gz xine-lib-6492ba6e20b59246b19c80584ff1865aab200f32.tar.bz2 |
Fix vidix Makefile.in generation (broken in the preceding commit).
-module is needed to avoid "not a standard libtool library name" errors.
-rw-r--r-- | contrib/vidix/drivers/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/vidix/drivers/Makefile.am b/contrib/vidix/drivers/Makefile.am index 2a7c0445c..17ab3aec9 100644 --- a/contrib/vidix/drivers/Makefile.am +++ b/contrib/vidix/drivers/Makefile.am @@ -3,6 +3,7 @@ include $(top_srcdir)/misc/Makefile.common AM_CFLAGS = $(DEFAULT_OCFLAGS) AM_CPPFLAGS = -I$(top_srcdir)/contrib/vidix \ -I$(top_srcdir)/contrib/libdha -I$(top_builddir)/contrib/libdha +AM_LDFLAGS = -avoid-version -module EXTRA_DIST = genfb_vid.c |