Wed, 30 Mar 2011 19:35:16 +0200
Finally correct packaging logic enough to allow for successful building:
Force Java dependency to C++ and POSIX threads to satisfy buildtime
requirements of GCJ, add conditional java dependency to infozip as
required by libjava/configure, remove outdated fortran conditions,
correct buildconf causing jcf-dump target to fail, add and improve
warnings regarding profile feedback, build duration, and parallel
make, correct make environment when building C++ dependent languages,
and introduce new helpful comments.
michael@37 | 1 | Index: random/unix.c |
michael@37 | 2 | --- random/unix.c.orig 2005-08-23 00:48:20 +0200 |
michael@37 | 3 | +++ random/unix.c 2005-09-06 20:55:10 +0200 |
michael@37 | 4 | @@ -24,6 +24,9 @@ |
michael@37 | 5 | #include <stdio.h> |
michael@37 | 6 | #include <string.h> |
michael@37 | 7 | #include <time.h> |
michael@37 | 8 | +#ifdef __FreeBSD__ |
michael@37 | 9 | +#include <pthread.h> |
michael@37 | 10 | +#endif |
michael@37 | 11 | #include "crypt.h" |
michael@37 | 12 | |
michael@37 | 13 | /* Unix and Unix-like systems share the same makefile, make sure that the |