Re-add -pipe compile flags for bsd's.

This commit is contained in:
Bruce Momjian 2003-10-09 04:34:02 +00:00
parent b510c44202
commit 6687152582
5 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
CFLAGS='-O2 -pipe'
CFLAGS="$CFLAGS -pipe"
case $host_cpu in
i?86) CFLAGS="$CFLAGS -m486";;

View File

@ -1,5 +1,7 @@
CFLAGS="$CFLAGS -pipe"
case $host_cpu in
alpha*) CFLAGS="-O";;
alpha*) CFLAGS="$CFLAGS -O";;
esac
THREAD_SUPPORT=yes

View File

@ -1,2 +1,4 @@
CFLAGS="$CFLAGS -pipe"
THREAD_SUPPORT=yes
NEED_REENTRANT_FUNCS=yes # 1.6 2003-09-14

View File

@ -0,0 +1 @@
CFLAGS="$CFLAGS -pipe"

View File

@ -1,2 +1,2 @@
CFLAGS="-O2 -I/usr/local/include"
CFLAGS="$CFLAGS -I/usr/local/include"
LIBS="-lunix"