From 52de510bad4f92d69f6c246f7d069459465ec0c4 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 16 Feb 2012 16:04:26 +0000 Subject: [PATCH] 2012-02-16 17:03 UTC+0100 Viktor Szakats (harbour syenar.net) * config/global.mk + XCode 4.3 clang support --- harbour/ChangeLog | 12 ++++++++---- harbour/config/global.mk | 17 +++++++++++------ 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7ebb4afd76..e432121580 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,16 +16,20 @@ The license applies to all entries newer than 2009-04-28. */ +2012-02-16 17:03 UTC+0100 Viktor Szakats (harbour syenar.net) + * config/global.mk + + XCode 4.3 clang support + 2012-02-14 17:31 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbqt/qtgui/hbqt_hbqplaintextedit.cpp - * Refined: dragging-text image made transparent with respect + * Refined: dragging-text image made transparent with respect to editors background color, current-line highlight color. The experience now is smoother than before. 2012-02-14 16:40 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbqt/qtgui/hbqt_hbqplaintextedit.cpp * contrib/hbqt/qtgui/hbqt_hbqplaintextedit.h - + Implemented: dragging of selected-text off an editing instance + + Implemented: dragging of selected-text off an editing instance of hbIDE shows up image of text as mouse-trail. 2012-02-13 12:07 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) @@ -40,7 +44,7 @@ * INSTALL + added to self-contained source code example text: "Do not post executables and other binary files." - It's redundant, but it apparently "source code" wasn't + It's redundant, but it apparently "source code" wasn't clear enough. 2012-02-12 16:32 UTC+0100 Viktor Szakats (harbour syenar.net) @@ -48,7 +52,7 @@ * explicitly set HKEEPORDER to not depend on default setting * contrib/xhb/hbdll.ch - % replaced huge CASE statment with one-liner. also fixing + % replaced huge CASE statment with one-liner. also fixing typo in CASE statement. UNTESTED. 2012-02-09 13:49 UTC+0100 Viktor Szakats (harbour syenar.net) diff --git a/harbour/config/global.mk b/harbour/config/global.mk index 0033b2b75b..7f8223c331 100644 --- a/harbour/config/global.mk +++ b/harbour/config/global.mk @@ -830,18 +830,23 @@ ifeq ($(HB_COMPILER),) endif else ifeq ($(HB_PLATFORM),darwin) - HB_COMP_PATH := $(call find_in_path_par,clang,/Developer/usr/bin/) + HB_COMP_PATH := $(call find_in_path,clang) ifneq ($(HB_COMP_PATH),) - HB_CCPREFIX := /Developer/usr/bin/ HB_COMPILER := clang else - HB_COMP_PATH := $(call find_in_path,gcc) + HB_COMP_PATH := $(call find_in_path_par,clang,/Developer/usr/bin/) ifneq ($(HB_COMP_PATH),) - HB_COMPILER := gcc + HB_CCPREFIX := /Developer/usr/bin/ + HB_COMPILER := clang else - HB_COMP_PATH := $(call find_in_path,icc) + HB_COMP_PATH := $(call find_in_path,gcc) ifneq ($(HB_COMP_PATH),) - HB_COMPILER := icc + HB_COMPILER := gcc + else + HB_COMP_PATH := $(call find_in_path,icc) + ifneq ($(HB_COMP_PATH),) + HB_COMPILER := icc + endif endif endif endif