Re: No sound - Solaris x86
Bj|rn Englund <[email protected]>
| Newsgroups | gmane.comp.video.ogle.user |
|---|---|
| Message-ID | <[email protected]> |
Wed Nov 05 2003, Jake Goerzen wrote:
> Hello,
>
> I've been able compile and run ogle 0.9.1 and 0.9.2 on Solaris x86, but during
> ./configure it does not find a sound device. During play it has no sound of
> course. Has anyone succesfully built and ran ogle on Solaris x86?
>
Hi what audio system are you using, OSS or sunaudio?
Could you try editing the configure script so it includes sunaudio
or find out why it doesn't find it?
This is the part in configure.in that handles it:
dnl check for sunaudio
AC_ARG_ENABLE([sunaudio],
[ --disable-sunaudio make a version not using Sun audio])
if test "x$enable_sunaudio" != xno; then
case "$host" in
*-sun-solaris*)
dnl check for headers.. only define LIBOGLEAO_SOLARIS if headers are found.
AC_DEFINE([LIBOGLEAO_SOLARIS],,[libogleao solaris audio support])
BUILD_AUDIO_SOLARIS=1
DEFAULT_AUDIO_DRIVER="solaris"
DEFAULT_AUDIO_DEVICE="/dev/audio"
esac
fi
/Bj|rn