diff options
author | Benjamin Otte <otte@gnome.org> | 2005-07-07 19:23:24 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2005-07-07 19:23:24 +0000 |
commit | 09540cea75eec21b36fb32c6aa3c42d9aca4612d (patch) | |
tree | c3b13ab670468bbf94c539ade740c3ae1992a8e6 | |
parent | 46087f891fe9b5a39d08b7af2d8fea2068375474 (diff) | |
download | gst-plugins-bad-09540cea75eec21b36fb32c6aa3c42d9aca4612d.tar.gz gst-plugins-bad-09540cea75eec21b36fb32c6aa3c42d9aca4612d.tar.bz2 gst-plugins-bad-09540cea75eec21b36fb32c6aa3c42d9aca4612d.zip |
configure.ac: fix xvid detection, so that we work with the new 4.1 API. This is supposed to work, because (I quote xv...
Original commit message from CVS:
* configure.ac:
fix xvid detection, so that we work with the new 4.1 API. This is
supposed to work, because (I quote xvid.h) "$minor is incremented
when the api is changed, but remains backwards compatible".
-rw-r--r-- | ChangeLog | 7 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2005-07-07 Benjamin Otte <otte@gnome.org> + + * configure.ac: + fix xvid detection, so that we work with the new 4.1 API. This is + supposed to work, because (I quote xvid.h) "$minor is incremented + when the api is changed, but remains backwards compatible". + 2005-07-06 Arwed v. Merkatz <v.merkatz@gmx.net> * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop): diff --git a/common b/common -Subproject 4ca96aedcf2be0b3dcf31fce732aed1da21b885 +Subproject 03aa1cd7f77f87fc24565044c0a3c9c5124c39a diff --git a/configure.ac b/configure.ac index c9ae4335..0eebb1a3 100644 --- a/configure.ac +++ b/configure.ac @@ -1788,7 +1788,7 @@ GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [ AC_MSG_CHECKING([for uptodate XviD API version]) AC_TRY_RUN([ #include <xvid.h> -#if XVID_API != XVID_MAKE_API(4,0) +#if XVID_API_MAJOR(XVID_API) != 4 #error "Incompatible XviD API version" #endif int main () { return 0; } |