diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a9e8b82b8b..d1c0281517 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,34 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-04-08 10:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * INSTALL + * Cross build text fixed to be multiplatform. + + * contrib/rddsql/sddfb/Makefile + ! Excluded for msvc64: + ../../fbirddd.c(187) : warning C4244: 'argument' : conversion from 'ULONG' to 'short', possible loss of data + ../../fbirddd.c(231) : warning C4244: 'argument' : conversion from 'ISC_STATUS' to 'USHORT', possible loss of data + ../../fbirddd.c(241) : warning C4244: 'argument' : conversion from 'ISC_STATUS' to 'USHORT', possible loss of data + ../../fbirddd.c(249) : warning C4244: 'argument' : conversion from 'ISC_STATUS' to 'USHORT', possible loss of data + ../../fbirddd.c(265) : warning C4244: 'argument' : conversion from 'ISC_STATUS' to 'USHORT', possible loss of data + ../../fbirddd.c(409) : error C2440: '=' : cannot convert from 'isc_stmt_handle' to 'void *' + Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(410) : error C2440: '=' : cannot convert from 'isc_tr_handle' to 'void *' + Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(446) : error C2664: 'isc_dsql_free_statement' : cannot convert parameter 2 from 'void **' to 'isc_stmt_handle *' + Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(451) : error C2664: 'isc_rollback_transaction' : cannot convert parameter 2 from 'void **' to 'isc_tr_handle *' + Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(469) : error C2664: 'isc_dsql_fetch' : cannot convert parameter 2 from 'void **' to 'isc_stmt_handle *' + Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(531) : error C2664: 'isc_dsql_free_statement' : cannot convert parameter 2 from 'void **' to 'isc_stmt_handle *' + Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(533) : warning C4244: 'argument' : conversion from 'ISC_STATUS' to 'USHORT', possible loss of data + ../../fbirddd.c(538) : error C2664: 'isc_commit_transaction' : cannot convert parameter 2 from 'void **' to 'isc_tr_handle *' + Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast + ../../fbirddd.c(540) : warning C4244: 'argument' : conversion from 'ISC_STATUS' to 'USHORT', possible loss of data + 2009-04-08 09:59 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * INSTALL + Added hbmk2 to the list of tools needed for successful diff --git a/harbour/INSTALL b/harbour/INSTALL index f0b741c51b..2f69ffa0a0 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -274,7 +274,7 @@ OPTIONS AVAILABLE WHEN BUILDING HARBOUR You need these when building for a platform different than host. For this to work, you will need to point above envvars to a native Harbour build available on your system. You don't need - a full native build, harbour.exe, hbpp.exe and hbmk2.exe are + a full native build, harbour, hbpp and hbmk2 executables are enough for the process to succeed. diff --git a/harbour/contrib/rddsql/sddfb/Makefile b/harbour/contrib/rddsql/sddfb/Makefile index 3f745d25b9..6ef60b97db 100644 --- a/harbour/contrib/rddsql/sddfb/Makefile +++ b/harbour/contrib/rddsql/sddfb/Makefile @@ -7,6 +7,7 @@ ROOT = ../../../ LIBNAME=sddfb ifneq ($(HB_COMPILER),pocc64) +ifneq ($(HB_COMPILER),msvc64) ifeq ($(HB_INC_FIREBIRD),) ifeq ($(HB_XBUILD),) @@ -30,3 +31,6 @@ endif else include $(TOP)$(ROOT)config/none.cf endif +else +include $(TOP)$(ROOT)config/none.cf +endif