Lines Matching defs:snappy
2062 snappy = not_found
2063 if not get_option('snappy').auto() or have_system
2064 snappy = cc.find_library('snappy', has_headers: ['snappy-c.h'],
2065 required: get_option('snappy'))
2067 if snappy.found() and not cc.links('''
2068 #include <snappy-c.h>
2069 int main(void) { snappy_max_compressed_length(4096); return 0; }''', dependencies: snappy)
2070 snappy = not_found
2071 if get_option('snappy').enabled()
2563 config_host_data.set('CONFIG_SNAPPY', snappy.found())
4997 summary_info += {'snappy support': snappy}