On Mon, Dec 28, 2015 at 02:59:29PM -0500, Leo Famulari wrote: > I think they would be native-inputs for vlc, mplayer, and mpv, because > those programs are written (mostly) in C and C++, and so we can provide > the path to the store directory at compile-time.
No, they should be normal inputs - they should be compiled for the target architecture where the binary is supposed to be run. The binaries themselves will link dynamically to the libraries. > I added libvdpau as a native-input to each and they build, but I don't > know how to test if the compilation is using libvdpau and using it > correctly. You could search for it in the build log, in particular during the configure phase. And you could run "ldd" on the resulting binary and check whether the libraries appear. Andreas