1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
dnl libmpcdec
AC_ARG_WITH(musepack, AS_HELP_STRING([--without-musepack],
[Compile without musepack (mpc) support]))
if test "x$with_musepack" != "xno"
then
dnl taken from gstreamer
AC_CHECK_HEADER([mpcdec/mpcdec.h], [
have_musepack="yes"
AC_DEFINE(MPC_IS_OLD_API, 1, [Define if the old MusePack API is used])
MUSEPACK_LIBS="-lmpcdec"
AC_SUBST(MUSEPACK_LIBS)
], [AC_CHECK_HEADER([mpc/mpcdec.h], [
have_musepack="yes"
MUSEPACK_LIBS="-lmpcdec"
AC_SUBST(MUSEPACK_LIBS)
], [HAVE_MUSEPACK="no"])
])
if test "x$have_musepack" = "xyes"
then
MUSEPACK_LIBS="-lmpcdec"
AC_SUBST([MUSEPACK_LIBS])
dnl taglib
AC_CHECK_PROG([TAGLIB_CONFIG], [taglib-config], [yes])
if test "x$TAGLIB_CONFIG" = "xyes"
then
AC_MSG_CHECKING([taglib version])
taglib_ver=`taglib-config --version`
taglib_ver_major=`echo "$taglib_ver" | awk -F. '{print $1}'`
taglib_ver_minor=`echo "$taglib_ver" | awk -F. '{print $2}'`
taglib_ver_extra=`echo "$taglib_ver" | awk -F. '{print $3}'`
if test -z "$taglib_ver_extra"
then
taglib_ver_extra="0"
fi
if test \( "$taglib_ver_major" = "1" -a "$taglib_ver_minor" -ge 4 \) \
-o \( "$taglib_ver_major" = "1" -a "$taglib_ver_minor" = "3" \
-a "$taglib_ver_extra" -ge 1 \)
then
AC_MSG_RESULT([$taglib_ver, OK])
TAGLIB_CFLAGS="`taglib-config --cflags`"
dnl TAGLIB_LIBS="`taglib-config --libs`"
TAGLIB_LIBS="-ltag_c"
AC_SUBST([TAGLIB_CFLAGS])
AC_SUBST([TAGLIB_LIBS])
dnl check for tag_c.h
old_cflags="$CFLAGS"
old_cppflags="$CPPFLAGS"
CFLAGS="$CFLAGS $TAGLIB_CFLAGS"
CPPFLAGS="$CPPFLAGS $TAGLIB_CFLAGS"
AC_CHECK_HEADER([tag_c.h], [
want_musepack="yes"
DECODER_PLUGINS="$DECODER_PLUGINS musepack"
])
CFLAGS="$old_cflags"
CPPFLAGS="$old_cppflags"
else
AC_MSG_RESULT([$taglib_ver, but minimum is 1.3.1 - required for musepack])
fi
fi
fi
fi
AM_CONDITIONAL([BUILD_musepack], [test "$want_musepack"])
AC_CONFIG_FILES([decoder_plugins/musepack/Makefile])
|