diff options
author | Benjamin Otte <otte@gnome.org> | 2004-05-04 18:38:39 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-05-04 18:38:39 +0000 |
commit | def730a7a06bf527cda1eed60b53c83f0029b143 (patch) | |
tree | 76d7d5ac35b8a556f3fae6aff73ad43b6507f21c | |
parent | 46638d8110c2f06cdb1105f81581f8bc24ba9d04 (diff) | |
download | gst-plugins-bad-def730a7a06bf527cda1eed60b53c83f0029b143.tar.gz gst-plugins-bad-def730a7a06bf527cda1eed60b53c83f0029b143.tar.bz2 gst-plugins-bad-def730a7a06bf527cda1eed60b53c83f0029b143.zip |
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)
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2004-05-04 Benjamin Otte <otte@gnome.org> + + * 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 <wim@fluendo.com> * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the diff --git a/configure.ac b/configure.ac index 6d9b3306..7027639d 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 |