Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2008-05-08 22:38:21 +0400
committerKent Mein <mein@cs.umn.edu>2008-05-08 22:38:21 +0400
commit106974a9d2d5caa5188322507980e3d57d2e3517 (patch)
treecbf8739ed8665e6217d772c456a9004fd73bbe53 /source/nan_definitions.mk
parent8fdc367e0d0f7edc341af7a1de4302bf46a051fd (diff)
Fixing up the webplugin defines for the Makefiles.
Now you can do one of the following to disable it: export NAN_NO_PLUGIN=true export WITH_BF_WEBPLUGIN=false or export WITH_BF_WEBPLUGIN=true to enable building it. (Its set to false by default) Kent
Diffstat (limited to 'source/nan_definitions.mk')
-rw-r--r--source/nan_definitions.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/nan_definitions.mk b/source/nan_definitions.mk
index 43345817f2e..e19d10dba64 100644
--- a/source/nan_definitions.mk
+++ b/source/nan_definitions.mk
@@ -64,7 +64,11 @@ all debug::
export WITH_BF_STATICOPENGL ?= false
export WITH_BF_BLENDERGAMEENGINE ?= true
export WITH_BF_BLENDERPLAYER ?= true
- export WITH_BF_WEBPLUGIN ?= false
+ ifeq ($(NAN_NO_PLUGIN), true)
+ export WITH_BF_WEBPLUGIN = false
+ else
+ export WITH_BF_WEBPLUGIN ?= false
+ endif
export NAN_MOTO ?= $(LCGDIR)/moto
ifeq ($(FREE_WINDOWS), true)