summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2021-03-27 17:39:47 (EDT)
committer P. J. McDermott <pj@pehjota.net>2021-03-27 17:39:47 (EDT)
commit7e4c259bc4f5e1467bcce3d592849aba3a9db2e6 (patch)
treed1dad0d84a3c7d2a6467bb776981fe29785049df
parent461e5f5367c526332a93b9fa364f96b88dd00253 (diff)
downloaddodge-balls-7e4c259bc4f5e1467bcce3d592849aba3a9db2e6.zip
dodge-balls-7e4c259bc4f5e1467bcce3d592849aba3a9db2e6.tar.gz
dodge-balls-7e4c259bc4f5e1467bcce3d592849aba3a9db2e6.tar.bz2
build: Check for ceil() and floor()
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 9d0cb98..379847e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,9 +50,15 @@ fi
AC_SEARCH_LIBS([atan2], [m], [], [
AC_MSG_ERROR([required functions are missing])
])
+AC_SEARCH_LIBS([ceil], [m], [], [
+ AC_MSG_ERROR([required functions are missing])
+])
AC_SEARCH_LIBS([cos], [m], [], [
AC_MSG_ERROR([required functions are missing])
])
+AC_SEARCH_LIBS([floor], [m], [], [
+ AC_MSG_ERROR([required functions are missing])
+])
AC_SEARCH_LIBS([fmod], [m], [], [
AC_MSG_ERROR([required functions are missing])
])