diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-08-30 10:03:18 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-08-30 10:03:18 +0000 |
commit | 22e8e61f2a54d8b7a15f093c563263bbab1ac496 (patch) | |
tree | adfba39e94b182b961ca1d9a29765ebb53e05063 | |
parent | beda3915798a9efbef0f0613479de7f8abe2718b (diff) | |
download | gst-plugins-bad-22e8e61f2a54d8b7a15f093c563263bbab1ac496.tar.gz gst-plugins-bad-22e8e61f2a54d8b7a15f093c563263bbab1ac496.tar.bz2 gst-plugins-bad-22e8e61f2a54d8b7a15f093c563263bbab1ac496.zip |
fixes #151232
Original commit message from CVS:
fixes #151232
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 9 |
2 files changed, 13 insertions, 1 deletions
@@ -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): diff --git a/configure.ac b/configure.ac index 0bda1cce..1a5ff31a 100644 --- a/configure.ac +++ b/configure.ac @@ -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) |