From 876f952468a60095b73970eb5879d8529a502789 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 15 Dec 2006 14:59:31 +0000 Subject: [PATCH] configure.ac: fix quoting so it works for fedora autotools too Original commit message from CVS: * configure.ac: fix quoting so it works for fedora autotools too --- ChangeLog | 5 +++++ configure.ac | 18 +++++++++--------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index dd27e6eb04..17dd4442da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-12-15 Thomas Vander Stichele + + * configure.ac: + fix quoting so it works for fedora autotools too + 2006-12-15 Tim-Philipp Müller * docs/Makefile.am: diff --git a/configure.ac b/configure.ac index 4ea78f05ce..4b8eb10059 100644 --- a/configure.ac +++ b/configure.ac @@ -186,15 +186,15 @@ if test "x$with_system_ffmpeg" = "xyes"; then CPPFLAGS="$saved_CPPFLAGS" AC_DEFINE([FFMPEG_SOURCE], ["system install"], [Describes where the FFmpeg libraries come from.]) else - FFMPEG_CFLAGS='-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \ - -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \ - -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec' - FFMPEG_LIBS='$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la' - POSTPROC_CFLAGS='-I $(top_srcdir)/gst-libs/ext/ffmpeg/libpostproc \ - -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \ - -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \ - -I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec' - POSTPROC_LIBS='$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la' + FFMPEG_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \ + -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \ + -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec" + FFMPEG_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la" + POSTPROC_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libpostproc \ + -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \ + -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \ + -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec" + POSTPROC_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la" FFMPEG_SUBDIRS=gst-libs AC_DEFINE(HAVE_AVI_H) AC_DEFINE([FFMPEG_SOURCE], ["local snapshot"], [Describes where the FFmpeg libraries come from.])