From: Niko Catania <> Date: Wed, 25 Mar 2009 03:57:28 +0000 (-0700) Subject: Automated import from //branches/donutburger/...@141819,141819 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bdce789efe2eb0c4a68560826b88b722c5eac54a;p=android-x86%2Fexternal-opencore.git Automated import from //branches/donutburger/...@141819,141819 --- diff --git a/Config.mk b/Config.mk index a5d60364..2750c991 100644 --- a/Config.mk +++ b/Config.mk @@ -19,8 +19,12 @@ ifndef EXTERNAL_OPENCORE_CONFIG_ONCE # To enable the windows codecs under vendor/pv, define VALUE_ADD to true. # You need HAS_OSCL_LIB_SUPPORT as well for VALUE_ADD modules. - VALUE_ADD := true - ifeq ($(VALUE_ADD), true) + # Some partners do not get vendor/pv in their distribution. If not present + # VALUE_ADD will be set to false. + ifeq ($(findstring pvplayer.conf, $(wildcard $(TOPDIR)vendor/pv/pvplayer.conf)), ) + VALUE_ADD := false + else + VALUE_ADD := true PV_CFLAGS += -DPV_USE_VALUE_ADD=1 endif