mirror of
https://github.com/lbonn/rofi
synced 2024-11-23 12:23:02 +00:00
Use AC_SEARCH_LIBS instead of AC_CHECK_LIB
This commit is contained in:
parent
0115efd933
commit
8461a9a63d
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ 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"))
|
||||
AC_SEARCH_LIBS([asin],[m],, AC_MSG_ERROR("Could not find asin in math library"))
|
||||
|
||||
dnl ---------------------------------------------------------------------
|
||||
dnl Check dependencies
|
||||
|
|
Loading…
Reference in a new issue