Commit 1652691e authored by Martin Storsjo's avatar Martin Storsjo

Use AC_SEARCH_LIBS to search for a library containing math functions

Even though the previous mechanism worked, this should be more
correct.
parent b8f6c140
......@@ -21,7 +21,7 @@ AC_PROG_CC
AC_PROG_CXX
LT_INIT
AC_CHECK_LIB([m], [sin])
AC_SEARCH_LIBS([sin], [m])
dnl soname version to use
dnl goes by ‘current[:revision[:age]]’ with the soname ending up as
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment