# File lib/autobuild/loaders/config.rb, line 33
    def self.check_backward_compatibility(config)
        if config.has_key?('autobuild-config')
            puts 'WARNING: the \'autobuild-config\' block is now named \'autobuild\''
        end
        config.each_recursive { |k, v|
            case k
            when 'common-config'
                puts %{WARNING: the 'common-config' blocks are now named 'common'}
            when 'genflags'
                puts %{WARNING: the 'genflags' has been renamed into 'genomflags'}
            end
        }
        if config["autobuild"] && config["autobuild"]["clean-log"]
            puts 'WARNING: the \'clean-log\' option is now named \'clean_log\''
        end
    end