diff options
| author | Bruce Momjian | 1999-03-14 16:03:33 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-03-14 16:03:33 +0000 |
| commit | aba8c12f679c2324fa42e718beab8e9d57409102 (patch) | |
| tree | ad8d1616fae148f4965555490450fda011b1694c /src/config.guess | |
| parent | e94fffc1c1c822b16b82dcf7dab8d82ed2625d3d (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/config.guess')
| -rwxr-xr-x | src/config.guess | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.guess b/src/config.guess index 0db17eaca2f..851ed5f49b6 100755 --- a/src/config.guess +++ b/src/config.guess @@ -129,6 +129,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in mac68k:OpenBSD:*:*) echo m68k-apple-openbsd${UNAME_RELEASE} exit 0 ;; + macppc:NetBSD:*:*) + echo powerpc-apple-netbsd${UNAME_RELEASE} + exit 0;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; |
