mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Check for libmath in configure.ac
This commit is contained in:
parent
b51a20c433
commit
0115efd933
1 changed files with 3 additions and 0 deletions
|
@ -90,6 +90,9 @@ AC_CHECK_FUNC([fcntl],, AC_MSG_ERROR("Could not find fcntl"))
|
|||
AC_CHECK_FUNC([setlocale],,AC_MSG_ERROR("Could not find setlocale"))
|
||||
AC_CHECK_FUNC([atexit],, AC_MSG_ERROR("Could not find atexit in c library"))
|
||||
|
||||
AC_CHECK_HEADER([math.h],, AC_MSG_ERROR("Could not find math.h header file"))
|
||||
AC_CHECK_LIB([m],[asin],, AC_MSG_ERROR("Could not find asin in math library"))
|
||||
|
||||
dnl ---------------------------------------------------------------------
|
||||
dnl Check dependencies
|
||||
dnl ---------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue