Lines Matching full:conf
1 conf = configuration_data() variable
26 conf.set('HAVE_@0@'.format(header.underscorify().to_upper()), 1)
32 if not conf.has('HAVE_@0@'.format(header.underscorify().to_upper()))
36 conf.set10('STDC_HEADERS', have_stdc)
40 conf.set('HAVE_DECL_@0@'.format(symbol.to_upper()), 1)
46 conf.set('HAVE_DECL_@0@'.format(symbol.to_upper()), 1)
61 if conf.has('HAVE_STRINGS_H')
67 conf.set('HAVE_@0@'.format(function.to_upper()), 1)
70 conf.set10('HAVE_DOPRNT', cc.has_function('_doprnt'))
74 conf.set('HAVE_@0@'.format(f.to_upper()), 1)
79 conf.set('SIZEOF_SIZE_T', size)
86 conf.set('SIZEOF_SSIZE_T', size)
90 conf.set('SIZEOF_@0@'.format(type.underscorify().to_upper()), size)
94 conf.set('HAVE_ATOMIC_BUILTINS', 1)
98 conf.set('HAVE___THREAD', 1)
101 if conf.has('HAVE___THREAD')
102 conf.set('SPEC___THREAD', '__thread')
104 conf.set('SPEC___THREAD', '__declspec(thread)')
107 conf.set_quoted('VERSION', meson.project_version())
109 config_h = configure_file(configuration: conf, output: 'config.h')