--- Brian Ingerson <[EMAIL PROTECTED]> wrote: > On 22/10/02 01:46 -0700, James Michael DuPont wrote: > > The makefile says : > > PASTHRU = LIB="$(LIB)"\ > > LIBPERL_A="$(LIBPERL_A)"\ > > LINKTYPE="$(LINKTYPE)"\ > > PREFIX="$(PREFIX)"\ > > OPTIMIZE="$(OPTIMIZE)" > > > > LIB="$(LIB)" is evaled to LIB="blah\blah\blah\" that kills make. > > I have change it to > > PASTHRU = LIB="$(LIB) "\ > > What makefile? I really don't understand the comments above. Could > you give > me a little more context. Sorry, the Makefile.pl creates a Makefile. The makefile somehow gets the LIB variable in the PASTHRU variable to look like this : LIB="D:\Program Files\Microsoft.Net\Odbc.Net\" LIBPERL_A="libperl.a" LINKTYPE="dynamic" PREFIX="/usr" OPTIMIZE=""
When it is passed to Inline:C, LIB="D:\Program Files\Microsoft.Net\Odbc.Net\" is an unterminated string, LIB="D:\Program Files\Microsoft.Net\Odbc.Net\ " is ok. I will try the cygwin inline python, cpr,cpp from CPAN. I dont have java installed.... for cygwin, I have never used inline::java. mike ===== James Michael DuPont http://introspector.sourceforge.net/ __________________________________________________ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.yahoo.com/
