mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
configure.ac: don't compile faad plugin if a RC of 2.0 is found
Original commit message from CVS: * configure.ac: don't compile faad plugin if a RC of 2.0 is found * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_ext_content_desc): try to make Solaris compiler happier
This commit is contained in:
parent
c664ff5cac
commit
1db79514b4
2 changed files with 24 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2005-01-06 Stephane LOEUILLET <stephane.loeuillet@tiscali.fr>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
don't compile faad plugin if a RC of 2.0 is found
|
||||||
|
|
||||||
|
* gst/asfdemux/gstasfdemux.c:
|
||||||
|
(gst_asf_demux_process_ext_content_desc):
|
||||||
|
try to make Solaris compiler happier
|
||||||
|
|
||||||
2005-01-06 Paul Jack <pjack@sfaf.org>
|
2005-01-06 Paul Jack <pjack@sfaf.org>
|
||||||
|
|
||||||
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
17
configure.ac
17
configure.ac
|
@ -1015,12 +1015,25 @@ GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
|
||||||
GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
|
GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
|
||||||
if test $HAVE_FAAD = "yes"; then
|
if test $HAVE_FAAD = "yes"; then
|
||||||
AC_MSG_CHECKING([Checking for FAAD >= 2])
|
AC_MSG_CHECKING([Checking for FAAD >= 2])
|
||||||
AC_TRY_COMPILE([
|
AC_TRY_RUN([
|
||||||
|
|
||||||
#include <faad.h>
|
#include <faad.h>
|
||||||
#if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
|
#if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
|
||||||
#error Not faad2
|
#error Not faad2
|
||||||
|
#else
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
char version[9] = FAAD2_VERSION;
|
||||||
|
// a release candidate of 2.0 is not enought for us
|
||||||
|
if ( strstr( version, "2.0 RC" ) ) { return 1; }
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
], [ return 0; ],
|
],
|
||||||
[ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
|
[ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
|
||||||
[ HAVE_FAAD="no" && AC_MSG_RESULT(no)])
|
[ HAVE_FAAD="no" && AC_MSG_RESULT(no)])
|
||||||
fi;
|
fi;
|
||||||
|
|
Loading…
Reference in a new issue