Just pulled latest dillo from CVS & compiled on Solaris 8. It's a pretty slick browser. Some things to fix for Solaris builds: nanosleep() needs to be linked with -lrt. Adding something like: case $system in SunOS) LDFLAGS="$LDFLAGS -lrt" ;; esac to configure.in seems to fix that problem. Also, Solaris seems to not have AF_LOCAL and SUN_LEN defined. Adding defs for those two somewhere -- in a header or in dpi.c seems to fix those problems. #ifndef AF_LOCAL #define AF_LOCAL AF_UNIX #endif #ifndef SUN_LEN /* This system is not POSIX.1g. */ #define SUN_LEN(ptr) ((size_t) \ (((struct sockaddr_un *) 0)->sun_path) \ + strlen ((ptr)->sun_path)) #endif (I swiped that code from the nautilis project.) With those fixes & got it to built & it seems to work. I have not done the bookmark tarball yet. --Mike -- __________________________________________________________ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup