mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 20:10:37 +00:00
NSSound implementation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14216 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
72f3efecea
commit
b874ffa8f7
15 changed files with 2571 additions and 6 deletions
13
configure.ac
13
configure.ac
|
@ -209,6 +209,19 @@ ADDITIONAL_INCLUDE_DIRS="$GRAPHIC_CFLAGS"
|
|||
ADDITIONAL_LIB_DIRS="$GRAPHIC_LFLAGS"
|
||||
ADDITIONAL_DEPENDS="$GRAPHIC_LIBS"
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# NSSound
|
||||
#--------------------------------------------------------------------
|
||||
AC_CHECK_HEADERS(audiofile.h)
|
||||
audio_ok=no
|
||||
BUILD_GSND=
|
||||
AC_CHECK_LIB(audiofile, main, audio_ok=yes, audio_ok=no)
|
||||
if test $audio_ok = yes; then
|
||||
ADDITIONAL_DEPENDS="$ADDITIONAL_DEPENDS -laudiofile"
|
||||
BUILD_GSND=gsnd
|
||||
fi
|
||||
AC_SUBST(BUILD_GSND)
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# Record the version
|
||||
#--------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue