mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +00:00
configure.ac: Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
Original commit message from CVS: * configure.ac: Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
This commit is contained in:
parent
639224f97f
commit
57d0b04de6
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-12-09 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
|
||||||
|
|
||||||
2007-12-03 Wim Taymans <wim.taymans@gmail.com>
|
2007-12-03 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* ext/mpeg2dec/gstmpeg2dec.h:
|
* ext/mpeg2dec/gstmpeg2dec.h:
|
||||||
|
|
|
@ -374,7 +374,11 @@ if test "x$USE_DEBUG" = xyes; then
|
||||||
fi
|
fi
|
||||||
AC_SUBST(PROFILE_CFLAGS)
|
AC_SUBST(PROFILE_CFLAGS)
|
||||||
|
|
||||||
DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
|
if test "x$GST_CVS" = "xyes"; then
|
||||||
|
DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
|
||||||
|
else
|
||||||
|
DEPRECATED_CFLAGS=""
|
||||||
|
fi
|
||||||
AC_SUBST(DEPRECATED_CFLAGS)
|
AC_SUBST(DEPRECATED_CFLAGS)
|
||||||
|
|
||||||
dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
|
dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
|
||||||
|
|
Loading…
Reference in a new issue