Searched refs:has_function (Results 1 – 25 of 25) sorted by relevance
7 if cc.has_function('avc1394_send_command', dependencies: avc1394_dep)8 if cc.has_function('rom1394_free_directory', dependencies: avc1394_dep)
6 # FIXME: should add a 'required' arg to cc.has_function() in Meson and use it here7 if xshm_dep.found() and cc.has_function('XShmAttach', dependencies: xshm_dep)
249 if cc.has_function(f)255 if cc.has_function('localtime_r', prefix : '#include<time.h>')334 if cc.has_function('getpid')336 elif host_system == 'windows' and cc.has_function('_getpid')340 if cc.has_function('strdup')342 elif host_system == 'windows' and cc.has_function('_strdup')351 if cc.has_function('strsignal')413 elif cc.has_function('backtrace')427 if cc.has_function('backtrace', prefix : '#include <execinfo.h>')431 …if execinfo_dep.found() and cc.has_function('backtrace', prefix : '#include <execinfo.h>', depende…[all …]
46 cc.has_function(func, prefix: include_default, args: args_default))49 cc.has_function('setxattr', prefix: '#include <sys/xattr.h>'))51 cc.has_function('iconv', prefix: '#include <iconv.h>'))
8 build_ipcpipeline_example = cc.has_function(f)
12 cdata.set('HAVE_LIBGME_ACCURACY', cc.has_function('gme_enable_accuracy', dependencies: gme_dep))
76 elif cc.has_function('atomic_cas_uint')186 if not cc.has_function('dlsym')192 if not cc.has_function('clock_gettime', prefix : '#define _GNU_SOURCE\n#include <time.h>')225 config.set10('HAVE_OPEN_MEMSTREAM', cc.has_function('open_memstream'))
136 if cairo_dep.found() and cpp.has_function('cairo_ft_font_face_create_for_ft_face',303 found = cpp.has_function(name, dependencies: check_deps)318 found = cpp.has_function(name, dependencies: check_deps + extra_deps)
134 if cairo_dep.found() and cpp.has_function('cairo_ft_font_face_create_for_ft_face',312 found = cpp.has_function(name, dependencies: check_deps)327 found = cpp.has_function(name, dependencies: check_deps + extra_deps)
97 default_conf.set10('HAVE_MKFIFO', cc.has_function('mkfifo'))
293 if cc.has_function(f)303 if cc.has_function('dgettext')374 if cc.has_function(f, dependencies : thread_dep)393 if cc.has_function('iconv_open')
1080 if cc.has_function(b)1101 if cc.has_function('reallocarray')1424 if cc.has_function('sched_getaffinity')1456 if cc.has_function(f, prefix: prefix)1466 if cc.has_function('thrd_create', prefix: '#include <threads.h>')1491 if cc.has_function('posix_memalign')1553 if not cc.has_function('dlopen')1556 if cc.has_function('dladdr', dependencies : dep_dl)1562 if cc.has_function('dl_iterate_phdr')1569 if host_machine.system() == 'windows' or cc.has_function('clock_gettime')[all …]
160 if cc.has_function('mincore')
163 if cc.has_function('pthread_setaffinity_np', dependencies : thread_dep)
677 …if need_platform_glx != 'no' and glx_dep.found() and cc.has_function ('glXMakeCurrent', dependenci…912 if egl_dep.found() and cc.has_function ('fbGetDisplay', dependencies : egl_dep)913 if cc.has_function ('glTexDirectVIV', dependencies : gles2_dep)
760 def has_function(self, funcname, includes=None, include_dirs=None, member in CCompiler
354 if not cc.has_function('mmap')
84 if cc.has_function('mkfifo')
175 if cc.has_function(f.get(1), prefix : f.get(2), dependencies : libm)
28228 meson: add libm to has_function checks
192 if cc.has_function(f.get(1), prefix : f.get(2), dependencies : libm)
46558 meson: Add headers and libm to has_function checks
184 if cc.has_function(f.get(1), prefix: prefix)
528 ….. method:: CCompiler.has_function(funcname [, includes=None, include_dirs=None, libraries=None, l…
1994 Fix C compiler warning caused by distutils.ccompiler.CCompiler.has_function.