Fix setting ADDITIONAL_INCLUDE_...

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17332 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2003-07-24 15:15:48 +00:00
parent d87e9ca295
commit f8aa369261
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2003-07-24 Adam Fedor <fedor@gnu.org>
* configure.ac: Fix setting ADDITIONAL_INCLUDE_... in
audiofile section.
2003-07-23 Adam Fedor <fedor@gnu.org>
* Version 0.8.8

4
configure vendored
View file

@ -3400,8 +3400,8 @@ fi
done
ADDITIONAL_DEPENDS="$ADDITIONAL_DEPENDS -laudiofile"
ADDITIONAL_INCLUDE_DIRS="$GRAPHIC_CFLAGS ${with_audiofile_include}"
ADDITIONAL_LIB_DIRS="$GRAPHIC_LFLAGS ${with_audiofile_library}"
ADDITIONAL_INCLUDE_DIRS="$ADDITIONAL_INCLUDE_DIRS ${with_audiofile_include}"
ADDITIONAL_LIB_DIRS="$ADDITIONAL_LIB_DIRS ${with_audiofile_library}"
BUILD_GSND=gsnd
fi

View file

@ -240,8 +240,8 @@ AC_CHECK_LIB(audiofile, afGetVirtualFrameSize, audio_ok=yes, audio_ok=no)
if test $audio_ok = yes -a $enable_gsnd = yes; then
AC_CHECK_HEADERS(audiofile.h)
ADDITIONAL_DEPENDS="$ADDITIONAL_DEPENDS -laudiofile"
ADDITIONAL_INCLUDE_DIRS="$GRAPHIC_CFLAGS ${with_audiofile_include}"
ADDITIONAL_LIB_DIRS="$GRAPHIC_LFLAGS ${with_audiofile_library}"
ADDITIONAL_INCLUDE_DIRS="$ADDITIONAL_INCLUDE_DIRS ${with_audiofile_include}"
ADDITIONAL_LIB_DIRS="$ADDITIONAL_LIB_DIRS ${with_audiofile_library}"
BUILD_GSND=gsnd
fi
AC_SUBST(BUILD_GSND)