click: Fix detection of Waf configuration variable

This commit is contained in:
Tom Henderson
2016-02-08 22:43:32 -08:00
parent c4f2656d8c
commit 9be85824a6
2 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
#
# See test.py for more information.
cpp_examples = [
("nsclick-simple-lan", "ENABLE_CLICK == True", "False"),
("nsclick-simple-lan", "NSCLICK == True", "False"),
]
# A list of Python examples to run in order to ensure that they remain

View File

@@ -54,7 +54,7 @@ interesting_config_items = [
"ENABLE_TESTS",
"EXAMPLE_DIRECTORIES",
"ENABLE_PYTHON_BINDINGS",
"ENABLE_CLICK",
"NSCLICK",
"ENABLE_BRITE",
"ENABLE_OPENFLOW",
"APPNAME",
@@ -69,7 +69,7 @@ ENABLE_REAL_TIME = False
ENABLE_THREADING = False
ENABLE_EXAMPLES = True
ENABLE_TESTS = True
ENABLE_CLICK = False
NSCLICK = False
ENABLE_BRITE = False
ENABLE_OPENFLOW = False
EXAMPLE_DIRECTORIES = []