fixes #151232
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 30 Aug 2004 10:03:18 +0000 (10:03 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 30 Aug 2004 10:03:18 +0000 (10:03 +0000)
Original commit message from CVS:
fixes #151232

ChangeLog
configure.ac

index 9927e73..d4004ee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * configure.ac:
+         check to define LAMEPRESET.  Fixes #151232.
+
 2004-08-29  Ronald S. Bultje  <Ronald S. Bultje <rbultje@ronald.bitfreak.net>>
 
        * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
index 0bda1cc..1a5ff31 100644 (file)
@@ -1197,7 +1197,14 @@ GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
 ])
 dnl is lame presets available
 LAME_CFLAGS=""
-GST_CHECK_LIBHEADER(GSTLAME_PRESET, mp3lame, lame_set_preset, -lm, lame/lame.h, LAME_CFLAGS="-DGSTLAME_PRESET", LAME_CFLAGS="")
+AC_TRY_RUN([
+#include <lame/lame.h>
+int main (int argc, char *argv[])
+{
+  printf("%d\n", MEDIUM);
+  return 0;
+}
+],[LAME_CFLAGS="-DGSTLAME_PRESET"],[LAME_CFLAGS=""])
 AC_SUBST(LAME_CFLAGS)
 AC_SUBST(LAME_LIBS)