From owner-freebsd-multimedia@freebsd.org Thu May 24 03:42:33 2018 Return-Path: Delivered-To: freebsd-multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1A88EF9706 for ; Thu, 24 May 2018 03:42:33 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 65A777041E for ; Thu, 24 May 2018 03:42:33 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 25E55EF9705; Thu, 24 May 2018 03:42:33 +0000 (UTC) Delivered-To: multimedia@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11E43EF9704 for ; Thu, 24 May 2018 03:42:33 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA4F27041B; Thu, 24 May 2018 03:42:32 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id B233B176C3; Thu, 24 May 2018 03:42:32 +0000 (UTC) From: Jan Beich To: Space Cadet Cc: multimedia@freebsd.org, Sunpoet Po-Chuan Hsieh Subject: Re: vlc pkg install and port make both not working References: Date: Thu, 24 May 2018 05:42:28 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2018 03:42:33 -0000 Space Cadet writes: > $ uname -a > FreeBSD v01 11.1-RELEASE-p4 FreeBSD 11.1-RELEASE-p4 #0: Tue Nov 14 06:12:40 > UTC 2017 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC > amd64 > > this is on a recently upgraded FreeBSD11.1Release. I fetched an entirely > new > copy of the ports tree and did a make and got stopped inside a qt5 build. > I tried to build qt5 by itself and that failed inside of tex build. > I tried building that and that failed as well with these lines: What happened to trying "pkg install vlc"? Can you reproduce in poudriere? > > ===> Registering installation for texinfo-6.5,1 > pkg-static: Unable to access file > /usr/ports/print/texinfo/work/stage/usr/local/lib/texinfo/MiscXS.a:No such > file or directory > pkg-static: Unable to access file > /usr/ports/print/texinfo/work/stage/usr/local/lib/texinfo/MiscXS.so:No such > file or directory > pkg-static: Unable to access file > /usr/ports/print/texinfo/work/stage/usr/local/share/texinfo/Texinfo/Convert/XSParagraph/TestXS.pm:No > such file or directory > *** Error code 74 The missing files are behind --enable-perl-xs which is enabled by default when the following check in configure succeeds. Maybe try to figure out if/why it fails for you. #+BEGIN_SRC sh if test $enable_xs = check; then AC_MSG_CHECKING([whether we can build Perl extension (XS) modules]) AC_MSG_RESULT([]) enable_xs=no (cd tp/Texinfo/Convert/XSParagraph \ && make clean \ && make TestXS.la \ && TEXINFO_XS=debug ; export TEXINFO_XS \ && ${PERL} -I . \ -I ${xs_srcdir} \ -w ${xs_srcdir}/Texinfo/Convert/XSParagraph/fail.pl \ | grep 'message from XS module') \ && enable_xs=yes AC_MSG_CHECKING([whether we can build Perl extension (XS) modules]) AC_MSG_RESULT([$enable_xs]) fi #+END_SRC