A small FreeBSD update.
This commit is contained in:
parent
1f6300703e
commit
9afec17205
1 changed files with 6 additions and 4 deletions
10
configure.ac
10
configure.ac
|
@ -150,23 +150,25 @@ if test "$have_timezone" = yes; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl add correct audio libs and configure for audio support
|
dnl add correct audio libs and configure for audio support
|
||||||
audio_LIBS="-lplibsl -lplibsm"
|
LIBS="-lplibsl -lplibsm"
|
||||||
|
|
||||||
dnl search for FreeBSD library
|
dnl search for FreeBSD library
|
||||||
AC_SEARCH_LIBS(hid_init, usbhid)
|
AC_SEARCH_LIBS(hid_init, usbhid)
|
||||||
|
|
||||||
case "${host}" in
|
case "${host}" in
|
||||||
*-*-cygwin* | *-*-mingw32*)
|
*-*-cygwin* | *-*-mingw32*)
|
||||||
audio_LIBS="$audio_LIBS -lwinmm"
|
LIBS="$LIBS -lwinmm"
|
||||||
;;
|
;;
|
||||||
*-apple-darwin*)
|
*-apple-darwin*)
|
||||||
audio_LIBS="$audio_LIBS -framework IOKit -framework CoreFoundation"
|
LIBS="$LIBS -framework IOKit -framework CoreFoundation"
|
||||||
;;
|
;;
|
||||||
*-*-irix* )
|
*-*-irix* )
|
||||||
audio_LIBS="$audio_LIBS -laudio"
|
LIBS="$LIBS -laudio"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
audio_LIBS="$LIBS"
|
||||||
|
LIBS=""
|
||||||
AC_SUBST(audio_LIBS)
|
AC_SUBST(audio_LIBS)
|
||||||
|
|
||||||
dnl ENABLE_AUDIO_SUPPORT could be depricated at any time in favor of
|
dnl ENABLE_AUDIO_SUPPORT could be depricated at any time in favor of
|
||||||
|
|
Loading…
Add table
Reference in a new issue