On Mon, 01 Mar 2010 08:23:44 -0600 Chris Bennett
<[email protected]> wrote:
> vlc's message says:
> On i386 vlc can use win32 codecs (see graphics/win32-codecs in the
> ports tree) if they are installed and if the machdep.userldt sysctl
> is enabled, e.g. by running:
>
> # sysctl machdep.userldt=1
>
Thanks. Found it.
If you look at the mplayer Makefile you'll see
/usr/ports/x11/mplayer/Makefile
CONFIGURE_ARGS_= ...
--disable=win32dll
If you look at the vlc Makefile, you'll see
/usr/ports/x11/vlc/Makefile
.if ${MACHINE_ARCH} == "i386"
CONFIGURE_ARGS+=--enable-loader
PKG_ARGS+=-Dwin32=1
.else
CONFIGURE_ARGS+=--disable-loader
PKG_ARGS+=-Dwin32=0
.fi
amongst other things (post-configure).
Jake or Edd, would you like me to submit a patch for vlc to remove
support for the win32-codecs?
-jcr