mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
configure.ac: Fix faad detection to support also fadd with new symbol prefix.
Original commit message from CVS: * configure.ac: Fix faad detection to support also fadd with new symbol prefix. ChangeLog surgery.
This commit is contained in:
parent
b74d9a063f
commit
810e30e924
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-02-11 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* configure.ac:
|
||||
Fix faad detection to support also fadd with new symbol prefix.
|
||||
ChangeLog surgery.
|
||||
|
||||
2007-02-08 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
Patch by: Wouter Paesen <wouter@blue-gate.be>
|
||||
|
@ -17,7 +23,7 @@
|
|||
(gst_timidity_change_state), (gst_timidity_typefind),
|
||||
(plugin_init):
|
||||
* ext/timidity/gsttimidity.h:
|
||||
Add timitity midi render plugin (#403992)
|
||||
Add timidity midi render plugin (#403992)
|
||||
|
||||
2007-02-07 Edward Hervey <edward@fluendo.com>
|
||||
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit de43a8f3c629983e0bea0b8eb617e52ed35a6cda
|
||||
Subproject commit 66d97715fc83888fd1b5469c569f0ef5bbea628b
|
|
@ -539,6 +539,10 @@ GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
|
|||
HAVE_FAAD="yes"
|
||||
GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h,
|
||||
FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
|
||||
if test $HAVE_FAAD = "no"; then
|
||||
GST_CHECK_LIBHEADER(FAAD, faad, NeAACDecOpen, -lm, neaacdec.h,
|
||||
FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
|
||||
fi
|
||||
if test $HAVE_FAAD = "yes"; then
|
||||
AC_MSG_CHECKING([Checking for FAAD >= 2])
|
||||
AC_TRY_RUN([
|
||||
|
|
Loading…
Reference in a new issue