2013-03-27 16:29 UTC+0100 Viktor Szakats (harbour syenar.net)

* utils/hbmk2/hbmk2.prg
    ! fixed to suppress remaining remaining double outputs at
      startup in hbrun mode, when processing .hbc files

  * contrib/hbexpat/hbexpat.hbc
    ! added usage time detection of locally hosted 3rd party
      dependency to avoid warnings when the locally hosted
      dependency is not present (f.e. because the system
      hosted copy was used at build/install time)
      Experimental. If it works fine, should be applied to
      other similar contribs:
         hbbz2, hbhpdf, hblzf, hbmlzo, hbmxml, hbmzip, hbsqlit3, hbtinymt, hbxdiff, sddsqlt3

  * README.md
    * typographic and misc improvements

  * config/global.mk
    + detect qnx cross-compile tool (via Francesco Perillo)

  * include/hbsetup.h
  * src/common/hbtrace.c
    + added macro HB_OS_QNX_BB10 for BlackBerry 10 subplatform
    + guard some stuff that's not present in BB10 (via Francesco Perillo)

  * contrib/hbtinymt/3rd/tinymt/tinymt.hbc
    ! deleted $Id$
This commit is contained in:
Viktor Szakats
2013-03-27 16:31:11 +01:00
parent 2400974a60
commit 7ad75f9543
8 changed files with 80 additions and 34 deletions

View File

@@ -388,8 +388,11 @@
#endif
#ifndef HB_OS_QNX
#if defined( __QNX__ )
#if defined( __QNX__ ) || defined( __QNXNTO__ )
#define HB_OS_QNX
#if defined( __QNXNTO__ ) /* TOFIX */
#define HB_OS_QNX_BB10
#endif
#endif
#endif