From owner-freebsd-gnome@FreeBSD.ORG Wed May 19 09:40:54 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FC3716A4CE for ; Wed, 19 May 2004 09:40:54 -0700 (PDT) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1CE643D31 for ; Wed, 19 May 2004 09:40:53 -0700 (PDT) (envelope-from freebsd-gnome@m.gmane.org) Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BQU7R-0003Ps-00 for ; Wed, 19 May 2004 18:40:37 +0200 Received: from unity.copyleft.no ([212.71.72.23]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 19 May 2004 18:40:37 +0200 Received: from johs+n by unity.copyleft.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 19 May 2004 18:40:37 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-gnome@freebsd.org From: Johannes Groedem Date: Wed, 19 May 2004 16:22:25 +0200 Lines: 33 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: unity.copyleft.no User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (berkeley-unix) Cancel-Lock: sha1:/VWOCy6QKWAzkqFVKC5f8c+OVAs= Sender: news Subject: gst-plugins-0.8.1 build problem (and fix) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 May 2004 16:40:54 -0000 --=-=-= The version of libmpeg that is built on my system (0.3.1_1) has a sequence_t type in mpeg2.h instead of mpeg2_sequence_t, so the gst-plugins build fails. The file in question is gst2mpeg2dec.c in ext/mpeg2dec. Here's a patch: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=gstmpeg2dec.c.patch --- gstmpeg2dec.c~ Wed May 19 16:18:21 2004 +++ gstmpeg2dec.c Wed May 19 16:18:29 2004 @@ -350,7 +350,7 @@ gst_mpeg2dec_negotiate_format (GstMpeg2d guint32 fourcc, myFourcc; gboolean ret; const mpeg2_info_t *info; - const mpeg2_sequence_t *sequence; + const sequence_t *sequence; if (!GST_PAD_IS_LINKED (mpeg2dec->srcpad)) { mpeg2dec->format = MPEG2DEC_FORMAT_I420; --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit -- Johannes Grødem --=-=-=--