On Mon, 2010-11-15 at 10:47 -0300, Diego Schulz wrote: > Hi all, > > > I'm working to get an updated FreeBSD port for 1.0.9 but so far it > wasn't able to even build this release.
Hello, Just making a guess... FreeBSD needs those in order to use WEXITSTATUS and WIFEXITED macros: #include <sys/types.h> #include <sys/wait.h> I can see that util.c uses them without including wait.h. May be Linux includes the file as a dependency of another one, but it doesn't happen in FreeBSD. Can you try to add: #include <sys/wait.h> After the types.h include in util.c an retry? If it works, there you have a kewl patch to support FreeBSD ;) Cheers, Juanjo -- jjm's home: http://www.usebox.net/jjm/ blackshell: http://blackshell.usebox.net/ ramble on: http://rambleon.usebox.net/ _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
