summaryrefslogtreecommitdiff
path: root/src/configure.in
diff options
context:
space:
mode:
authorBruce Momjian1999-03-14 16:03:33 +0000
committerBruce Momjian1999-03-14 16:03:33 +0000
commitaba8c12f679c2324fa42e718beab8e9d57409102 (patch)
treead8d1616fae148f4965555490450fda011b1694c /src/configure.in
parente94fffc1c1c822b16b82dcf7dab8d82ed2625d3d (diff)
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
Diffstat (limited to 'src/configure.in')
-rw-r--r--src/configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in
index cf1b969812d..11f7f1a7485 100644
--- a/src/configure.in
+++ b/src/configure.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 ;;