diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-23 01:56:08 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-23 01:56:08 +0000 |
commit | 75ecf1490093f391275f86b277bf3bc7eed84b8a (patch) | |
tree | 1d4d4ed58d1c87c945ecd5d1dcca365f7c04fd47 | |
parent | f67f485b365b744d2ae669fd51aff6b7aa7472a6 (diff) | |
download | ffmpeg-75ecf1490093f391275f86b277bf3bc7eed84b8a.tar.gz |
Check if -lrt is required for nanosleep, as is the case on Solaris.
inspired by a patch from Fabian Groffen, grobian gentoo org
Originally committed as revision 17537 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1900,6 +1900,9 @@ elif check_func dlopen -ldl; then ldl=-ldl fi +# Solaris has nanosleep in -lrt, OpenSolaris no longer needs that +check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; } + check_func fork check_func gethrtime check_func getrusage |