diff options
author | Richard Kenner <kenner@gnu.org> | 1994-10-17 23:16:35 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gnu.org> | 1994-10-17 23:16:35 +0000 |
commit | 444e3cfe1e17841fc47eafaa02632199a89ad5e2 (patch) | |
tree | 3c7cceaf525e2cef6ce869ed9092c840dd2c8693 /config.guess | |
parent | 5538e63fd49dc09d009b740f71a51aba1ed05d4e (diff) | |
download | emacs-444e3cfe1e17841fc47eafaa02632199a89ad5e2.tar.gz |
Add support for AIX 4.1 and architecture.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 95819f11593..daae8ac0008 100755 --- a/config.guess +++ b/config.guess @@ -147,6 +147,13 @@ EOF echo rs6000-ibm-aix3.2 fi exit 0 ;; + *:AIX:1:4) + if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then + echo rs6000-ibm-aix4.1 + else + echo powerpc-ibm-aix4.1 + fi + exit 0 ;; *:AIX:*:*) echo rs6000-ibm-aix exit 0 ;; |