diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3e963ee6ae..aea9644a06 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-11-19 19:57 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * contrib/hbqt/detect.mk + ! Fix attempt to handle cross-build situations. + + * src/rtl/errintlo.c + * Minor formatting. + 2009-11-19 18:48 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbqt/detect.mk + Added more sophisticated autodetection of moc diff --git a/harbour/contrib/hbqt/detect.mk b/harbour/contrib/hbqt/detect.mk index d29570dc09..0a82358f59 100644 --- a/harbour/contrib/hbqt/detect.mk +++ b/harbour/contrib/hbqt/detect.mk @@ -40,7 +40,7 @@ ifneq ($(HB_HAS_QT),) # Locate 'moc' executable ifeq ($(MOC_BIN),) ifeq ($(HB_QT_MOC_BIN),) - ifneq ($(filter $(HB_PLATFORM),win wce),) + ifeq ($(HB_HOST_PLAT),win) MOC_BIN := $(HB_HAS_QT)\..\bin\moc.exe else MOC_BIN := $(firstword $(call find_in_path_par,moc,$(PATH) /opt/qtsdk/qt/bin)) diff --git a/harbour/src/rtl/errintlo.c b/harbour/src/rtl/errintlo.c index 3d1abb81a9..828f912e7b 100644 --- a/harbour/src/rtl/errintlo.c +++ b/harbour/src/rtl/errintlo.c @@ -70,7 +70,6 @@ void hb_errInternalRaw( HB_ERRCODE errCode, const char * szText, const char * sz int iLevel; FILE * hLog; - HB_TRACE(HB_TR_DEBUG, ("hb_errInternal(%d, %s, %s, %s)", errCode, szText, szPar1, szPar2)); if( szPar1 == NULL )