mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
up required gst version fix po download snippet
Original commit message from CVS: up required gst version fix po download snippet
This commit is contained in:
parent
3424bfe93c
commit
09442a643f
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
update required version of GStreamer because of GST_TIME_FORMAT
|
||||||
|
|
||||||
2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||||
|
|
||||||
* ext/mad/gstid3tag.c: (gst_id3_tag_init):
|
* ext/mad/gstid3tag.c: (gst_id3_tag_init):
|
||||||
|
@ -10,7 +15,7 @@
|
||||||
|
|
||||||
* sys/ximage/ximagesink.c: (plugin_init):
|
* sys/ximage/ximagesink.c: (plugin_init):
|
||||||
* sys/xvimage/xvimagesink.c: (plugin_init):
|
* sys/xvimage/xvimagesink.c: (plugin_init):
|
||||||
add debuggin categories
|
add debugging categories
|
||||||
|
|
||||||
2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
|
|
@ -45,3 +45,6 @@ EXTRA_DIST=gst-plugins.spec depcomp \
|
||||||
DISTCLEANFILES=_stdint.h
|
DISTCLEANFILES=_stdint.h
|
||||||
|
|
||||||
include $(top_srcdir)/common/release.mak
|
include $(top_srcdir)/common/release.mak
|
||||||
|
# a rule to redownload po files
|
||||||
|
download-po:
|
||||||
|
cd po && for LI in `cat LINGUAS`; do echo Checking $$LI.po; wget -q -O $$LI.po.tmp http://www.iro.umontreal.ca/translation/maint/gst-plugins/$$LI.po; if ! diff $$LI.po $$LI.po.tmp > /dev/null 2>&1; then echo "Updating $$LI.po"; mv $$LI.po.tmp $$LI.po; else rm $$LI.po.tmp; fi; done
|
||||||
|
|
|
@ -188,7 +188,7 @@ GST_CHECK_FEATURE(GCONF, [GConf libraries], , [
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl check for gstreamer; uninstalled is selected preferentially -- see pkg-config(1)
|
dnl check for gstreamer; uninstalled is selected preferentially -- see pkg-config(1)
|
||||||
GST_REQ=0.8.0
|
GST_REQ=0.8.1
|
||||||
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
|
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
|
||||||
HAVE_GST="yes", HAVE_GST="no")
|
HAVE_GST="yes", HAVE_GST="no")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue