diff options
author | anssih <anssih@svn> | 2010-06-07 15:04:39 +0000 |
---|---|---|
committer | anssih <anssih@svn> | 2010-06-07 15:04:39 +0000 |
commit | 7110d4959a7046b888d6a4ae86f52aed08c6be77 (patch) | |
tree | 5939b62ac25bedec7ec385a3df98b21c48e056fc /Makefile.in | |
parent | 4dd86de90ef6ce9669fc1ebf13d9a2d2fde13ebe (diff) |
fixed: do not build internal libdts/liba52 if disabled (ticket #9277)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30911 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 886f06dd3c..2a234b6513 100644 --- a/Makefile.in +++ b/Makefile.in @@ -68,7 +68,6 @@ DVDPCODECS_DIRS+=lib/libass/xbmc endif PAPCODECS_DIRS= \ - xbmc/cores/paplayer/AC3Codec \ xbmc/cores/paplayer/ADPCMCodec \ xbmc/cores/paplayer/NSFCodec \ xbmc/cores/paplayer/timidity \ @@ -78,6 +77,11 @@ PAPCODECS_DIRS= \ xbmc/cores/paplayer/SPCCodec/SNES/SNESAPU \ xbmc/cores/paplayer/vgmstream \ +ifeq (@USE_INTERNAL_LIBA52@,1) +PAPCODECS_DIRS+= \ + xbmc/cores/paplayer/AC3Codec +endif + ifeq (@USE_ASAP_CODEC@,1) PAPCODEC_DIRS+= \ xbmc/cores/paplayer/asap @@ -342,7 +346,9 @@ libhdhomerun: dllloader libid3tag: dllloader $(MAKE) -C xbmc/lib/libid3tag papcodecs: dllloader dvdpcodecs +ifeq (@USE_INTERNAL_LIBA52@,1) $(MAKE) -C xbmc/cores/paplayer/AC3Codec +endif $(MAKE) -C xbmc/cores/paplayer/ADPCMCodec ifeq ($(findstring osx,$(ARCH)), osx) $(MAKE) -C xbmc/cores/paplayer/FLACCodec |