From c7886379b76183229f5c29ceb181997148e2c21d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 2 Jul 2008 18:58:41 +0000 Subject: [PATCH] 2008-07-02 20:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_gcc.sh * make_gnu.sh + Added Darwin to architecure autodetection. --- harbour/ChangeLog | 5 +++++ harbour/make_gcc.sh | 1 + harbour/make_gnu.sh | 5 +++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e2f09c0df0..314d53d8b0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-07-02 20:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * make_gcc.sh + * make_gnu.sh + + Added Darwin to architecure autodetection. + 2008-07-02 20:00 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/hbgf/Makefile * do not include dir.cf when there is no platform dependent diff --git a/harbour/make_gcc.sh b/harbour/make_gcc.sh index 685143739e..84501d4364 100755 --- a/harbour/make_gcc.sh +++ b/harbour/make_gcc.sh @@ -19,6 +19,7 @@ if [ -z "$HB_ARCHITECTURE" ]; then *os/2*) hb_arch="os2" ;; *dos) hb_arch="dos" ;; *bsd) hb_arch="bsd" ;; + *darwin) hb_arch="darwin" ;; esac fi export HB_ARCHITECTURE="$hb_arch" diff --git a/harbour/make_gnu.sh b/harbour/make_gnu.sh index 20a08f8b74..e22f678935 100755 --- a/harbour/make_gnu.sh +++ b/harbour/make_gnu.sh @@ -22,8 +22,9 @@ if [ -z "$HB_ARCHITECTURE" ]; then hb_arch=`uname -s | tr -d "[-]" | tr '[A-Z]' '[a-z]' 2>/dev/null` case "$hb_arch" in *windows*|*mingw32*|msys*) hb_arch="w32" ;; - *dos) hb_arch="dos" ;; - *bsd) hb_arch="bsd" ;; + *dos) hb_arch="dos" ;; + *bsd) hb_arch="bsd" ;; + *darwin) hb_arch="darwin" ;; esac fi export HB_ARCHITECTURE="$hb_arch"