diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f1d83dafc1..3524bf9499 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2011-07-08 12:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/global.mk + + show autodetected HB_CCPREFIX and HB_CCPOSTFIX + (based on Przemek's patch with addition of HB_CCPOSTFIX) + 2011-07-07 21:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/sddoci/sddoci.c ! added OCI_ENV_THREADED flag to OCI_Initialize() in an attempt diff --git a/harbour/config/global.mk b/harbour/config/global.mk index d046c0efa6..963f772d7c 100644 --- a/harbour/config/global.mk +++ b/harbour/config/global.mk @@ -1155,7 +1155,7 @@ endif ifneq ($(HB_COMPILER),) HB_COMP_PATH := $(subst $(substpat), ,$(dir $(firstword $(subst $(subst x, ,x),$(substpat),$(HB_COMP_PATH))))) - HB_COMP_AUTO := (autodetected$(if $(HB_COMP_PATH),: $(HB_COMP_PATH),)) + HB_COMP_AUTO := (autodetected$(if $(HB_COMP_PATH),: $(HB_COMP_PATH),)$(if $(HB_CCPREFIX), [$(HB_CCPREFIX)*],)$(if $(HB_CCPOSTFIX), [*$(HB_CCPOSTFIX)],)) HB_COMP_VERD := $(if $(HB_COMPILER_VER), (v$(HB_COMPILER_VER)),) endif export HB_CCPATH