From 904ad3fbdc5e1615fdb052ba8562fc9b1329cd81 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Sun, 23 Mar 2014 17:12:58 +0100 Subject: [PATCH] Disabled config dependency check to avoid regression --- src/config.l | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/config.l b/src/config.l index d20ed0beb3d..133bc111fc1 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 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()