From owner-freebsd-multimedia@FreeBSD.ORG Mon Jun 10 09:50:01 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A20F9F0B for ; Mon, 10 Jun 2013 09:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 79BF817CE for ; Mon, 10 Jun 2013 09:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r5A9o1eJ081019 for ; Mon, 10 Jun 2013 09:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r5A9o0CT080971; Mon, 10 Jun 2013 09:50:00 GMT (envelope-from gnats) Date: Mon, 10 Jun 2013 09:50:00 GMT Message-Id: <201306100950.r5A9o0CT080971@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: Arrigo Marchiori Subject: Re: ports/179449: multimedia/vlc, audio/flac: utterly broken since FLAC update X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Arrigo Marchiori List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 09:50:01 -0000 The following reply was made to PR ports/179449; it has been noted by GNATS. From: Arrigo Marchiori To: bug-followup@FreeBSD.org, mandree@FreeBSD.org Cc: Subject: Re: ports/179449: multimedia/vlc, audio/flac: utterly broken since FLAC update Date: Mon, 10 Jun 2013 11:44:04 +0200 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Hello, on my system, I could solve this problem with the attached patch, that only specifies the full path for the headers. My configuration is a little bit different, though. After applying the patch, the compilation emits lots of warning but no fatal errors. My system compiler is gcc. Please let me know if you need a build log. $ uname -a FreeBSD myhost 9.1-STABLE FreeBSD 9.1-STABLE #32 r251599: Mon Jun 10 09:20:28 CEST 2013 root@myhost:/usr/obj/usr/src/sys/GENERIC i386 $ cd /usr/ports/multimedia/vlc && make pretty-print-config +A52 +AALIB -ASS +AVAHI +CACA +DBUS -DEBUG -DIRAC +DOCS -DTS +DVDNAV +DVDREAD +FAAD +FLAC +FLUID -FRIBIDI +GLX -GNOMEVFS +GNUTLS -GOOM +HTTPD -JACK -LIBBLURAY -LIRC +LIVEMEDIA +LUA +MAD +MATROSKA -MODPLUG +MPEG2 -MTP +MUSEPACK -NCURSES +NLS +NOTIFY -NO_DVD +OGG +OPTIMIZED_CFLAGS +OPUS +PNG -PORTAUDIO -PROJM -PULSEAUDIO +QT4 +REALAUDIO -RUNROOT -SAMBA +SAMPLERATE -SCHROED +SDL -SERVER_ONLY +SHOUTCAST -SIDPLAY +SKINS +SPEEX -SQLITE +STREAM -SVG +TAGLIB +THEORA +TWOLAME -UPNP +V4L -VAAPI +VCD +VORBIS +X11 +X264 +XCB +XOSD +XVIDEO +ZVBI -- rigo http://rigo.altervista.org --BXVAT5kNtrzKuDFl Content-Type: text/x-c; charset=utf-8 Content-Disposition: attachment; filename="patch-modules-codec-flac.c" --- ./modules/codec/flac.c.orig 2013-06-10 11:23:20.000000000 +0200 +++ ./modules/codec/flac.c 2013-06-10 11:24:07.000000000 +0200 @@ -38,8 +38,8 @@ #include #include -#include -#include +#include +#include #include #include --BXVAT5kNtrzKuDFl--