Changeset 1350 for portaudio/branches/v19-devel/configure.in
- Timestamp:
- 02/21/08 11:08:28 (10 months ago)
- Files:
-
- 1 modified
-
portaudio/branches/v19-devel/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/configure.in
r1336 r1350 90 90 AC_CHECK_LIB(asound, snd_pcm_open, have_alsa=yes, have_alsa=no) 91 91 AC_CHECK_LIB(hpi, HPI_SubSysCreate, have_asihpi=yes, have_asihpi=no, -lm) 92 AC_CHECK_LIB(ossaudio, _oss_ioctl, have_libossaudio=yes, have_libossaudio=no) 92 93 93 94 dnl Determine the host description for the subsequent test. … … 314 315 if [[ $with_oss != "no" ]] ; then 315 316 OTHER_OBJS="$OTHER_OBJS src/hostapi/oss/pa_unix_oss.o" 317 if [[ $have_libossaudio = "yes" ]] ; then 318 DLL_LIBS="$DLL_LIBS -lossaudio" 319 LIBS="$LIBS -lossaudio" 320 fi 316 321 AC_DEFINE(PA_USE_OSS) 317 322 fi
