diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-08 01:07:02 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-08 01:07:02 +0000 |
commit | 2974da07660ac384353708270973b8039bb8a7de (patch) | |
tree | cc4180a60f0c9b6d0681c0e76d187ccad704c781 | |
parent | 6fe3c141d711f0796a893369b3d715b7ef11c00b (diff) |
configure.ac: Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases are treated like releases and bui...
Original commit message from CVS:
* configure.ac:
Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases
are treated like releases and build without it.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2008-02-07 Jan Schmidt <jan.schmidt@sun.com> + * configure.ac: + Only build with DISABLE_DEPRECATED during the CVS cycle. Pre-releases + are treated like releases and build without it. + +2008-02-07 Jan Schmidt <jan.schmidt@sun.com> + * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: diff --git a/configure.ac b/configure.ac index c0b798e9..3efd8aee 100644 --- a/configure.ac +++ b/configure.ac @@ -964,7 +964,8 @@ if test "x$USE_DEBUG" = xyes; then fi AC_SUBST(PROFILE_CFLAGS) -if test "x$GST_CVS" = "xyes"; then +if test "x$PACKAGE_VERSION_NANO" = "x1"; then + dnl Define _only_ during CVS (not pre-releases or releases) DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED" else DEPRECATED_CFLAGS="" |