configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) New commits: diff-tree 3101705919f2a1272a8222ac0cce54f24b34193f (from b5d3509c3db17551aa138c21ee9c133d9d4b183e) Author: Benjamin Otte <otte@gnome.org> Date: Tue Mar 20 19:56:49 2007 +0100 Output some info on what packages might be missing diff --git a/configure.ac b/configure.ac index d4a48c1..e640a78 100644 --- a/configure.ac +++ b/configure.ac @@ -151,7 +151,7 @@ if test "$enable_mad" = "yes"; then if test "x$HAVE_MAD" = xyes; then AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled]) else - AC_MSG_ERROR([Couldn't find mad.]) + AC_MSG_ERROR([Couldn't find mad. You might need to install the libmad0-dev package.]) fi else AC_MSG_WARN([*** mad audio support was not enabled. ***]) @@ -175,7 +175,7 @@ if test "$enable_ffmpeg" = "yes"; then if test "x$HAVE_FFMPEG" = xyes; then AC_DEFINE(HAVE_FFMPEG, 1, [Define if ffmpeg is enabled]) else - AC_MSG_ERROR([Couldn't find ffmpeg.]) + AC_MSG_ERROR([Couldn't find ffmpeg. You might need to install the libavcodec-dev package.]) fi else AC_MSG_WARN([*** ffmpeg support was not enabled. ***])
configure.ac | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) New commits: diff-tree 20fce106dfb4e4f314fa9ed2eb639448a0b5d854 (from f4f086e6ac5609cd476399e71f31a0408c771bb9) Author: Benjamin Otte <otte@gnome.org> Date: Thu Mar 22 23:31:47 2007 +0100 back to cvs diff --git a/configure.ac b/configure.ac index 7b68ddf..70976c9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.58]) -AC_INIT(swfdec,0.4.3) +AC_INIT(swfdec,0.4.3.1) [nano=$(echo $PACKAGE_VERSION | sed 's/[0-9]\.[0-9]\.[0-9][0-9]*\.*//')] if test x"$nano" = x1 ; then
configure.ac | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) New commits: diff-tree 579955e4dcc87dd9c91428ee1967e01bc9cfa69b (from 493905baa1c07054276adb078f086e7ca4acc26b) Author: Benjamin Otte <otte@gnome.org> Date: Wed Mar 28 21:51:35 2007 +0200 print better error message when required cairo isn't available diff --git a/configure.ac b/configure.ac index 65be1fc..5309072 100644 --- a/configure.ac +++ b/configure.ac @@ -154,11 +154,12 @@ if test "$HAVE_LIBOIL" = "no"; then AC_MSG_ERROR([cannot find liboil-0.3, which is required for build]) fi -PKG_CHECK_MODULES(CAIRO, cairo >= 1.2.0, HAVE_CAIRO=yes, HAVE_CAIRO=no) +CAIRO_REQUIRES=1.2 +PKG_CHECK_MODULES(CAIRO, cairo >= $CAIRO_REQUIRES, HAVE_CAIRO=yes, HAVE_CAIRO=no) AC_SUBST(CAIRO_LIBS) AC_SUBST(CAIRO_CFLAGS) if test "$HAVE_CAIRO" = "no"; then - AC_MSG_ERROR([cannot find cairo, which is required for build]) + AC_MSG_ERROR([cannot find cairo >= $CAIRO_REQUIRES, which is required for build]) fi AC_ARG_ENABLE(mad,
configure.ac | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) New commits: diff-tree 77671cfd4d1ec996179c44389544a0629f811904 (from d390be301adad2dd232c56b617f1010e90aab841) Author: Benjamin Otte <otte@gnome.org> Date: Sun Apr 8 15:19:54 2007 +0200 tell help string that GStreamer is enabled now diff --git a/configure.ac b/configure.ac index a4d8a68..d26278d 100644 --- a/configure.ac +++ b/configure.ac @@ -206,7 +206,7 @@ fi AM_CONDITIONAL(HAVE_FFMPEG, [test "x$HAVE_FFMPEG" = xyes]) AC_ARG_ENABLE(gstreamer, AS_HELP_STRING([--enable-gstreamer], - [enable GStreamer support (default=no)])], + [enable GStreamer support (default=yes)])], enable_gstreamer=$enableval, enable_gstreamer="yes")
Seemingly Similar Threads
- Branch 'as' - configure.ac
- 2 commits - configure.ac
- configure.ac libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_gst.c
- Branch 'as' - 9 commits - configure.ac doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_stack.c
- [PATCH] Fix logic in ffmpeg detection