summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-03-23 16:12:58 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-03-23 16:12:58 (GMT)
commit904ad3fbdc5e1615fdb052ba8562fc9b1329cd81 (patch)
treef63af76f43e709dc1b4ed2397c0ffe2156641c3f /src
parent2bd3c0ef726bb67b81f4c73e584bb138c4cc0158 (diff)
downloadDoxygen-904ad3fbdc5e1615fdb052ba8562fc9b1329cd81.zip
Doxygen-904ad3fbdc5e1615fdb052ba8562fc9b1329cd81.tar.gz
Doxygen-904ad3fbdc5e1615fdb052ba8562fc9b1329cd81.tar.bz2
Disabled config dependency check to avoid regression
Diffstat (limited to 'src')
-rw-r--r--src/config.l4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.l b/src/config.l
index d20ed0b..133bc11 100644
--- a/src/config.l
+++ b/src/config.l
@@ -1591,6 +1591,8 @@ void Config::check()
checkFileName("GENERATE_TAGFILE");
+#if 0 // TODO: this breaks test 25; SOURCEBROWSER = NO and SOURCE_TOOLTIPS = YES.
+ // So this and other regressions should be analysed and fixed before this can be enabled
// disable any boolean options that depend on disabled options
QListIterator<ConfigOption> it = iterator();
ConfigOption *option;
@@ -1605,11 +1607,13 @@ void Config::check()
{
if (option->kind()==ConfigOption::O_Bool)
{
+ printf("disabling option %s\n",option->name().data());
Config_getBool(option->name())=FALSE; // also disable this option
}
}
}
}
+#endif
}
void Config::init()