diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-08-13 19:30:28 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-08-13 19:30:28 +0300 |
commit | 7f4ecfc7429d3147ed159efdf8b350d4dc9c5665 (patch) | |
tree | e23e2bf4524b4c80864a5e9f01edd0a1364bee9c /tools | |
parent | 2ea1fb849c6f8fbe1b8d6c319d721183988bd2ce (diff) | |
download | meson-7f4ecfc7429d3147ed159efdf8b350d4dc9c5665.tar.gz |
A few more checks for ac converter tool.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/ac_converter.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/ac_converter.py b/tools/ac_converter.py index 2f1b4c3e7..155c0eb7c 100755 --- a/tools/ac_converter.py +++ b/tools/ac_converter.py @@ -162,6 +162,11 @@ function_data = \ 'HAVE_GETPWUID_R': ('getpwuid_r', 'pwd.h'), 'HAVE_GETUID': ('getuid', 'unistd.h'), 'HAVE_LRINTF': ('lrintf', 'math.h'), + 'HAVE_DECL_ISNAN': ('isnan', 'math.h'), + 'HAVE_DECL_ISINF': ('isinf', 'math.h'), + 'HAVE_ROUND': ('round', 'math.h'), + 'HAVE_NEARBYINT': ('nearbyint', 'math.h'), + 'HAVE_RINT': ('rint', 'math.h'), 'HAVE_MKFIFO': ('mkfifo', 'sys/stat.h'), 'HAVE_MLOCK': ('mlock', 'sys/mman.h'), 'HAVE_NANOSLEEP': ('nanosleep', 'time.h'), |