Add -lrt to the test for ALSA

Originally committed to SVN as r5827.
This commit is contained in:
Thomas Goyne 2011-11-07 15:50:52 +00:00
parent 2f394a7792
commit 14d734298e
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ fi
if test "$with_alsa" != "no"; then
aegisub_save_LDFLAGS="$LDFLAGS"
LDFLAGS="$ALSA_LDFLAGS"
AC_CHECK_LIB([asound], [snd_pcm_open], [ALSA_LDFLAGS="-lasound"; with_alsa="yes"], [with_alsa="no"])
AC_CHECK_LIB([asound], [snd_pcm_open], [ALSA_LDFLAGS="-lasound -lrt"; with_alsa="yes"], [with_alsa="no"])
LDFLAGS="$aegisub_save_LDFLAGS"
fi