aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-08-13 19:30:28 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2016-08-13 19:30:28 +0300
commit7f4ecfc7429d3147ed159efdf8b350d4dc9c5665 (patch)
treee23e2bf4524b4c80864a5e9f01edd0a1364bee9c
parent2ea1fb849c6f8fbe1b8d6c319d721183988bd2ce (diff)
downloadmeson-7f4ecfc7429d3147ed159efdf8b350d4dc9c5665.zip
meson-7f4ecfc7429d3147ed159efdf8b350d4dc9c5665.tar.gz
meson-7f4ecfc7429d3147ed159efdf8b350d4dc9c5665.tar.bz2
A few more checks for ac converter tool.
-rwxr-xr-xtools/ac_converter.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/ac_converter.py b/tools/ac_converter.py
index 2f1b4c3..155c0eb 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'),