Skip to content
Snippets Groups Projects
Commit cda09330 authored by Stan Seibert's avatar Stan Seibert
Browse files

Protect AIX test with "aix" in canonical host. Solaris issues a false

positive otherwise.  Closes bug 418.


git-svn-id: http://svn.xiph.org/trunk/ao@5291 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent c654e1de
No related branches found
No related tags found
No related merge requests found
......@@ -255,8 +255,12 @@ AM_CONDITIONAL(HAVE_SUN_AUDIO,test "${ac_cv_header_sys_audioio_h}" = yes)
dnl Check for AIX audio
AC_CHECK_HEADERS(sys/audio.h)
AM_CONDITIONAL(HAVE_AIX_AUDIO,test "${ac_cv_header_sys_audio_h}" = yes)
case $host in
*-aix*)
AC_CHECK_HEADERS(sys/audio.h)
;;
esac
AM_CONDITIONAL(HAVE_AIX_AUDIO,test "x${ac_cv_header_sys_audio_h}" = xyes)
dnl Check for aRts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment