conf.set('HAVE_TLS', get_option('use-tls') ? 1 : false)
conf.set('PG_BELL', get_option('pg-bell') ? 1 : false)
+conf.set('USE_COLORS_BY_DEFAULT', get_option('colors-default') ? 1 : false)
############################################################
option('pg-bell',
type : 'boolean', value : true,
description : 'should pg ring the bell on invalid keys?')
+option('colors-default', type: 'boolean', value: 'true',
+ description: 'Enables colorized output from utils by default')
option('fs-search-path',
type : 'string',