Hi, I tried embedding perl into C, and inserted these coz i had an error prior to this one *********************************************************************************************** static void xs_init _((void)); EXTERN_C void boot_DynaLoader _((CV* cv)); EXTERN_C void boot_Socket _((CV* cv));
EXTERN_C void xs_init() { char *file = __FILE__; /* DynaLoader is a special case */ newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); newXS("Socket::bootstrap", boot_Socket, file) } ****************************************************************************************************** there had been problems in compiling which reads: undefined reference to 'boot_DynaLoader' undefined reference to 'boot_Socket' anyone? help, very much appreciated. thanks. --------------------------------- Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it!