diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-24 20:41:43 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-24 20:41:43 +0100 |
commit | 58e0ac62331612c9893b7b9054ac5ecaba677700 (patch) | |
tree | 42866f20f615b77a2b0119283ce5e248b93d36b6 /src/libxineadec | |
parent | 740cb399dcf72420ac0c8a6048dca8fac09daf3d (diff) | |
download | xine-lib-58e0ac62331612c9893b7b9054ac5ecaba677700.tar.gz xine-lib-58e0ac62331612c9893b7b9054ac5ecaba677700.tar.bz2 |
Add option to disable Nosefart/NSF plugin building.
This way you can get a safer build for binary redistribution.
Diffstat (limited to 'src/libxineadec')
-rw-r--r-- | src/libxineadec/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am index b2ffcf078..d502b7955 100644 --- a/src/libxineadec/Makefile.am +++ b/src/libxineadec/Makefile.am @@ -2,7 +2,12 @@ include $(top_srcdir)/misc/Makefile.common EXTRA_DIST = fooaudio.c -SUBDIRS = gsm610 nosefart +if BUILD_NOSEFART +nosefart_subdir = nosefart +nosefart_module = xineplug_decode_nsf.la +endif + +SUBDIRS = gsm610 $(nosefart_subdir) AM_LDFLAGS = $(xineplug_ldflags) @@ -16,7 +21,7 @@ endif xineplug_LTLIBRARIES = \ xineplug_decode_gsm610.la \ - xineplug_decode_nsf.la \ + $(nosefart_module) \ xineplug_decode_lpcm.la \ $(vorbis_module) \ $(speex_module) |