Original commit message from CVS:
* configure.ac:
Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for a
define in the lame headers. This has the advantage that
it should still work when we're cross-compiling (#452025).
+2007-09-08 Tim-Philipp Müller <tim at centricular dot net>
+
+ * configure.ac:
+ Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for a
+ define in the lame headers. This has the advantage that
+ it should still work when we're cross-compiling (#452025).
+
2007-08-24 Jan Schmidt <thaytan@mad.scientist.com>
* gst/dvdlpcmdec/gstdvdlpcmdec.c:
-Subproject commit cd25ca736bc2446800de2180ad71fc1da858d324
+Subproject commit 76752780462a3c4da712d56d54c45402144b3d0f
LAME_LIBS="-lmp3lame -lm"
dnl is lame presets available
LAME_CFLAGS=""
- AC_TRY_RUN([
-#include <lame/lame.h>
-int main (int argc, char *argv[])
-{
- printf("%d\n", MEDIUM);
- return 0;
-}
- ],
+ AC_TRY_COMPILE([#include <lame/lame.h>], [ int preset = MEDIUM ],
[LAME_CFLAGS="-DGSTLAME_PRESET"],
[LAME_CFLAGS=""]
)