Hello,

If I configure with:

        --with-zlib-incl=/home/jfranklin/Micronas/usr-x86/include
        --with-zlib-lib=/home/jfranklin/Micronas/usr-x86/lib

I get (config.log):

ZLIB_CFLAGS='-I/home/jfranklin/Micronas/usr-x86/include'
ZLIB_LIBS='/home/jfranklin/Micronas/usr-x86/lib'

instead of:

ZLIB_LIBS='-L/home/jfranklin/Micronas/usr-x86/lib -lz'

Also, if I configure with:

        --with-curl-incl=/home/jfranklin/Micronas/usr-x86/include
        --with-curl-lib=/home/jfranklin/Micronas/usr-x86/lib

I get (config.log):

CURL_CFLAGS='/home/jfranklin/Micronas/usr-x86/include'
CURL_LIBS='-L/home/jfranklin/Micronas/usr-x86/lib'

instead of:

CURL_CFLAGS='-I/home/jfranklin/Micronas/usr-x86s/include'
CURL_LIBS='-L/home/jfranklin/Micronas/usr-x86/lib -lcurl -ldl -lz'

which is what I get if I use "--with-extra-includes" and "--with-extra-libs"
in place of "--with-curl-incl" and "--with-curl-libs".

The CURL_CFLAGS problem (--with-curl-incl) causes this compilation error:

"g++: cannot specify -o with -c or -S and multiple compilations"

because CURL_CFLAGS is a path, not a compiler switch.

John Franklin



_______________________________________________
Gnash-dev mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-dev

Reply via email to