Update FreeBSD template to properly compile c++ on alpha.

This commit is contained in:
Bruce Momjian 2002-07-03 19:48:26 +00:00
parent 3138aac971
commit d656c249b3
1 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,6 @@
CFLAGS='-pipe'
case $host_cpu in
alpha*) CFLAGS="$CFLAGS -O";;
i386*) CFLAGS="$CFLAGS -O2";;
esac
if [ `expr "$host_cpu" : "alpha"` -ge 5 ]
then CFLAGS="$CFLAGS -O"
CXXFLAGS="$CFLAGS -O"
fi