diff options
author | P. J. McDermott <pj@pehjota.net> | 2021-03-27 16:52:29 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2021-03-27 16:52:29 (EDT) |
commit | b46d474f2a81e11a3e97cb9685c676e29967b32f (patch) | |
tree | c2fd014766c72c392b6a44690d2b1ab6eeece137 | |
parent | 70ecfa6658fa50d9e9acb292e076c97a03154e50 (diff) | |
download | dodge-balls-b46d474f2a81e11a3e97cb9685c676e29967b32f.zip dodge-balls-b46d474f2a81e11a3e97cb9685c676e29967b32f.tar.gz dodge-balls-b46d474f2a81e11a3e97cb9685c676e29967b32f.tar.bz2 |
build: Check for atan2()
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9928b50..1c86c10 100644 --- a/configure.ac +++ b/configure.ac @@ -47,6 +47,9 @@ AC_CHECK_FUNCS( if ${funcs_missing}; then AC_MSG_ERROR([required functions are missing]) fi +AC_SEARCH_LIBS([atan2], [m], [], [ + AC_MSG_ERROR([required functions are missing]) +]) AC_SEARCH_LIBS([cos], [m], [], [ AC_MSG_ERROR([required functions are missing]) ]) |