From: Benjamin Otte Date: Tue, 4 May 2004 18:38:39 +0000 (+0000) Subject: configure.ac: check for kdemacros.h, too (should fix #141821) X-Git-Tag: 1.19.3~509^2~14862 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88dd3f3a801cc3df938c1c7ad6026577ba217c6f;p=platform%2Fupstream%2Fgstreamer.git configure.ac: check for kdemacros.h, too (should fix #141821) Original commit message from CVS: * configure.ac: check for kdemacros.h, too (should fix #141821) * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain): don't crash if no header was sent, but nicely error out (fixes part of #141554) --- diff --git a/ChangeLog b/ChangeLog index eb1259c..1e8a4cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-05-04 Benjamin Otte + + * configure.ac: + check for kdemacros.h, too (should fix #141821) + * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain): + don't crash if no header was sent, but nicely error out (fixes part + of #141554) + 2004-05-04 Wim Taymans * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the diff --git a/configure.ac b/configure.ac index 6d9b330..7027639 100644 --- a/configure.ac +++ b/configure.ac @@ -1066,7 +1066,7 @@ GST_CHECK_FEATURE(KIO, [kio], kio, [ fi for dir in $kde_include_dirs; do - if test -r "$dir/kglobal.h"; then + if test -r "$dir/kglobal.h" && test -r "$dir/kdemacros.h"; then kde_include_dir=$dir break fi