Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 May 2018 05:42:28 +0200
From:      Jan Beich <jbeich@FreeBSD.org>
To:        Space Cadet <tootall79@gmail.com>
Cc:        multimedia@freebsd.org, Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
Subject:   Re: vlc pkg install and port make both not working
Message-ID:  <po1l-bty3-wny@FreeBSD.org>
References:  <CAEuwmtmza2Yr5WUwRBW=USsLq704pekKJEp9b5pHPG%2B9ivaCMg@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Space Cadet <tootall79@gmail.com> 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?po1l-bty3-wny>