From 8a01b5de4cd36b7dc94f06ea7ec1745b946429d0 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 19 Jun 2009 13:03:45 +0000 Subject: [PATCH] 2009-06-19 15:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/darwin/gcc.cf * Changed to use 'gcc' as compiler name like on other platforms and in hbmk2. For old Darwin systems it may need to be redefined to 'cc' using export HB_CMP=cc. --- harbour/ChangeLog | 7 +++++++ harbour/config/darwin/gcc.cf | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d6409fabdf..49eef5ae7c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-06-19 15:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/darwin/gcc.cf + * Changed to use 'gcc' as compiler name like on other platforms + and in hbmk2. + For old Darwin systems it may need to be redefined to 'cc' using + export HB_CMP=cc. + 2009-06-19 14:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg + Added basic HB_CCPOSTFIX support. diff --git a/harbour/config/darwin/gcc.cf b/harbour/config/darwin/gcc.cf index d9b5dba1ad..e0cdde9487 100644 --- a/harbour/config/darwin/gcc.cf +++ b/harbour/config/darwin/gcc.cf @@ -7,9 +7,9 @@ include $(TOP)$(ROOT)config/$(HB_ARCHITECTURE)/global.cf ifeq ($(HB_COMPILER),gpp) HB_CMP = g++ else - # intentionally used 'cc' instead of 'gcc' - I'm not an Darwin user - # but the system where I was testing it has GCC 2.95 named 'cc' - HB_CMP = cc + # for old Darwin systems (having GCC 2.95) this may need to be + # redefined to 'cc'. + HB_CMP = gcc endif OBJ_EXT = .o