2010-06-16 11:14 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* config/global.mk
    + Added HB_COMPILER autodetection for QNX. Minor optimization.
This commit is contained in:
Viktor Szakats
2010-06-16 09:14:42 +00:00
parent cba71772cf
commit b49d0f87d1
2 changed files with 5 additions and 8 deletions

View File

@@ -16,6 +16,10 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-06-16 11:14 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/global.mk
+ Added HB_COMPILER autodetection for QNX. Minor optimization.
2010-06-16 11:01 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbcurl/hbcurl.c
+ Added all remaining known guards to HB_CURLOPT_* options, so in

View File

@@ -971,7 +971,7 @@ ifeq ($(HB_COMPILER),)
endif
endif
else
ifneq ($(filter $(HB_PLATFORM),hpux bsd),)
ifneq ($(filter $(HB_PLATFORM),hpux bsd beos qnx),)
HB_COMP_PATH := $(call find_in_path,gcc)
ifneq ($(HB_COMP_PATH),)
HB_COMPILER := gcc
@@ -1026,13 +1026,6 @@ ifeq ($(HB_COMPILER),)
HB_COMPILER := watcom
endif
endif
else
ifeq ($(HB_PLATFORM),beos)
HB_COMP_PATH := $(call find_in_path,gcc)
ifneq ($(HB_COMP_PATH),)
HB_COMPILER := gcc
endif
endif
endif
endif
endif