vlc pkg install and port make both not working

Jan Beich jbeich at FreeBSD.org
Thu May 24 03:42:33 UTC 2018


Space Cadet <tootall79 at 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 at 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


More information about the freebsd-multimedia mailing list