mirror of
https://github.com/postgres/postgres.git
synced 2025-12-04 12:02:48 +03:00
We have tested the patches on three platforms:
NetBSD/macppc LinuxPPC FreeBSD 2.2.6-RELEASE All of them seem happy with the regression test. Note that, however, compiling with optimization enabled on NetBSD/macppc causes an initdb failure (other two platforms are ok). After checking the asm code, we are suspecting that might be a compiler(egcs) bug. Tatsuo Ishii
This commit is contained in:
@@ -22,7 +22,12 @@ case "$host_os" in
|
||||
bsdi*) os=bsdi need_tas=no ;;
|
||||
freebsd3*|freebsd4*) os=freebsd need_tas=no elf=yes ;;
|
||||
freebsd1*|freebsd2*) os=freebsd need_tas=no ;;
|
||||
netbsd*|openbsd*) os=bsd need_tas=no ;;
|
||||
netbsd*)
|
||||
os=bsd need_tas=no
|
||||
case "$host_cpu" in
|
||||
powerpc) elf=yes ;;
|
||||
esac ;;
|
||||
openbsd*) os=bsd need_tas=no ;;
|
||||
dgux*) os=dgux need_tas=no ;;
|
||||
aix*) os=aix need_tas=no ;;
|
||||
nextstep*) os=nextstep need_tas=no ;;
|
||||
|
||||
Reference in New Issue
Block a user