diff options
author | infirit <[email protected]> | 2013-10-22 00:17:45 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2013-10-22 00:17:45 +0200 |
commit | 647d9cf9f67351b6d3b30d79b0b89ea3b64b0834 (patch) | |
tree | eb995605ac5808d3c4c67db49277f5974f0b41fb | |
parent | bb7cce9df923fc040a018618335186763b234cc7 (diff) | |
download | mate-media-647d9cf9f67351b6d3b30d79b0b89ea3b64b0834.tar.bz2 mate-media-647d9cf9f67351b6d3b30d79b0b89ea3b64b0834.tar.xz |
Enable deprecated in DISTCHECK_CONFIGURE_FLAGS
The problem is that without the Gstatic*Mutex the gstreamer mixer fails to build
This is because Gstatic*Mutex is deprecated in glib but still in use by gstreamer 0.10.
To have make distcheck work we enable it here.
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 13bdb05..c5079d2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,8 @@ endif DISTCHECK_CONFIGURE_FLAGS = \ --disable-scrollkeeper \ --enable-more-warnings \ - --enable-compile-warnings=maximum + --enable-compile-warnings=maximum \ + --enable-deprecated DIST_SUBDIRS = \ po \ |