Thank you very much, that worked. I did have to create the ..o file on my own though.
I didn't realize you needed the .o file to access functions in the header file. It ran extremely slow, is there something I can do to speed it up? Thanks...Brady -----Original Message----- --- bbcannon <[EMAIL PROTECTED]> wrote: > Actually, what I am trying to do is access functions from the > header file > hello.h. > It is located in the rundir along with the function definitions in > hello.c. Ah. You need to make sure hello.c gets compiled and linked in when Inline does its build. I think something like MYEXTLIB => '/path/to/hello.o' will do the trick (LIBS is usually for extra system libraries and such). To be honest, I'm not quite sure how this works, but I think ExtUtils::MakeMaker will automatically cause hello.o to be built if you add this line. /s ===== "A foo and his money are soon parted." __________________________________________________ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com
