blob: 38c58a6e6effd26499f502ac7daec40d9fff4735 (
plain)
1
2
3
4
5
6
7
8
|
case $host_cpu in
alpha*) CFLAGS="-O";; # alpha has problems with -O2
esac
case $host_os in
freebsd2*|freebsd3*|freebsd4*) ;;
*) THREAD_LIBS="c_r";; # do we need this? 2004-04-23
esac
|