Update AROS host detection

2021-01-10 Thread Kalamatee
AROS detection has been wrong for a number of years and only detects the
i386 host.
Please find attached a patch to correct the AROS case.

 build-aux/config.guess | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/config.guess b/build-aux/config.guess
index 699b3a10..fa6a27d5 100755
--- a/build-aux/config.guess
+++ b/build-aux/config.guess
@@ -1480,8 +1480,8 @@ EOF
 i*86:rdos:*:*)
  echo "$UNAME_MACHINE"-pc-rdos
  exit ;;
-i*86:AROS:*:*)
- echo "$UNAME_MACHINE"-pc-aros
+*:AROS:*:*)
+ echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-aros
  exit ;;
 x86_64:VMkernel:*:*)
  echo "$UNAME_MACHINE"-unknown-esx


configure: error: cannot guess build type; you must specify one

2021-01-10 Thread David

This a Raspberry PI 4 with ubuntu server 20.04 installed



config.guess timestamp = 2006-07-02

uname -m = aarch64
uname -r = 5.4.0-1026-raspi
uname -s = Linux
uname -v = #29-Ubuntu SMP PREEMPT Mon Dec 14 17:01:16 UTC 2020

/usr/bin/uname -p = aarch64
/bin/uname -X =

hostinfo   =
/bin/universe  =
/usr/bin/arch -k   =
/bin/arch  = aarch64
/usr/bin/oslevel   =
/usr/convex/getsysinfo =

UNAME_MACHINE = aarch64
UNAME_RELEASE = 5.4.0-1026-raspi
UNAME_SYSTEM  = Linux
UNAME_VERSION = #29-Ubuntu SMP PREEMPT Mon Dec 14 17:01:16 UTC 2020
configure: error: cannot guess build type; you must specify one
 Citadel Easy Install is aborting.
 The last few lines above this message may indicate what went wrong.
 Linux Debian bullseye/sid( 5.4.0-1026-raspi aarch64)




Re[2]: configure: error: cannot guess build type; you must specify one

2021-01-10 Thread david

Well face-palm and thank you.  Got the info from a web search and chat room 
that seems to not like having dates on the posts.  Go figure.  Making the 
raspberry PI a mail relay for my older raid controllers and UPS's to tell me 
status changes.  Still a noob at this.

Thanks again
David



Sent from myMail for iOS


Sunday, January 10, 2021, 6:40 PM -0500 from za...@panix.com  :
>On Sun, Jan 10, 2021 at 4:26 PM David < da...@davidanne.com > wrote:
>> This a Raspberry PI 4 with ubuntu server 20.04 installed
>...
>> config.guess timestamp = 2006-07-02
>   ^^
>
>Your config.guess is nearly 15 years old and understandably does not
>know about AArch64.  Current copies of config.guess and config.sub can
>be downloaded from  https://git.savannah.gnu.org/cgit/config.git/tree/
>.  They should be drop-in replacements for whatever it is you're
>trying to build that was last updated in 2006.
>
>zw


Re: configure: error: cannot guess build type; you must specify one

2021-01-10 Thread Zack Weinberg
On Sun, Jan 10, 2021 at 4:26 PM David  wrote:
> This a Raspberry PI 4 with ubuntu server 20.04 installed
...
> config.guess timestamp = 2006-07-02
   ^^

Your config.guess is nearly 15 years old and understandably does not
know about AArch64.  Current copies of config.guess and config.sub can
be downloaded from https://git.savannah.gnu.org/cgit/config.git/tree/
.  They should be drop-in replacements for whatever it is you're
trying to build that was last updated in 2006.

zw