2012-02-16 17:03 UTC+0100 Viktor Szakats (harbour syenar.net)

* config/global.mk
    + XCode 4.3 clang support
This commit is contained in:
Viktor Szakats
2012-02-16 16:04:26 +00:00
parent bbd3875aff
commit 52de510bad
2 changed files with 19 additions and 10 deletions

View File

@@ -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)

View File

@@ -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