On 12/23/2011 06:06 AM, Hans-Christoph Steiner wrote:
./configure PKG_LIBVLC_CFLAGS=-I/Applications/VLC.app/Contents/MacOS/include PKG_LIBVLC_LIBS=-L/Applications/VLC.app/Contents/MacOS/lib
i don't know how this is supposed to work. PKG_LIBVLC_*FLAGS are supposed to be _environment variables_, so you have to put them _before_ the script. $ PKG_LIBVLC_CFLAGS=-I/Applications/VLC.app/Contents/MacOS/include PKG_LIBVLC_LIBS="-L/Applications/VLC.app/Contents/MacOS/lib -lvlc" ./configure
maybe you are confusing configure with make; the latter can also handle variables passed as arguments (though it handles those variables differently than environment vars)
I think this did:
nevertheless cool that you could make it work.
fgmadrs IOhannes