diff options
author | P. J. McDermott <pj@pehjota.net> | 2021-03-27 17:15:41 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2021-03-27 17:15:41 (EDT) |
commit | ad5bb828321f7a4f0fe15a4505f1c85a7e1acc04 (patch) | |
tree | c8e9494a11a4aa81c978d57f1519df926e791132 | |
parent | 34d686e43ad4fc5ebe080df2019ad88bdaf750db (diff) | |
download | dodge-balls-ad5bb828321f7a4f0fe15a4505f1c85a7e1acc04.zip dodge-balls-ad5bb828321f7a4f0fe15a4505f1c85a7e1acc04.tar.gz dodge-balls-ad5bb828321f7a4f0fe15a4505f1c85a7e1acc04.tar.bz2 |
build: Check for fmod
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1c86c10..9d0cb98 100644 --- a/configure.ac +++ b/configure.ac @@ -53,6 +53,9 @@ AC_SEARCH_LIBS([atan2], [m], [], [ AC_SEARCH_LIBS([cos], [m], [], [ AC_MSG_ERROR([required functions are missing]) ]) +AC_SEARCH_LIBS([fmod], [m], [], [ + AC_MSG_ERROR([required functions are missing]) +]) AC_SEARCH_LIBS([sin], [m], [], [ AC_MSG_ERROR([required functions are missing]) ]) |