2009-05-21 07:46 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* config/global.cf
    + Added Make version check and appropriate error message in case 
      wrong version found.

  * ChangeLog
    ! Typos.
This commit is contained in:
Viktor Szakats
2009-05-21 05:47:09 +00:00
parent d968e23b1e
commit 71a63b4c22
2 changed files with 23 additions and 4 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-21 07:46 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* config/global.cf
+ Added Make version check and appropriate error message in case
wrong version found.
* ChangeLog
! Typos.
2009-05-20 23:32 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/rddsql/sddodbc/Makefile
! Applied logic from contrib/hbodbc/Makefile.
@@ -24,7 +32,7 @@
* contrib/rddsql/sddodbc/odbcdd.c
! Fixed three warnings (2 casts + 1 uninit var) with MSVC.
; TOFIX: These errors are shown when trying to compiler in UNICODE mode:
; TOFIX: These errors are shown when trying to compile in UNICODE mode:
../../odbcdd.c(168) : error C2664: 'SQLDriverConnectW' : cannot convert parameter 3 from 'SQLCHAR *' to 'SQLWCHAR *'
../../odbcdd.c(204) : error C2664: 'SQLExecDirectW' : cannot convert parameter 2 from 'SQLCHAR *' to 'SQLWCHAR *'
../../odbcdd.c(239) : error C2664: 'SQLExecDirectW' : cannot convert parameter 2 from 'SQLCHAR *' to 'SQLWCHAR *'
@@ -64,8 +72,8 @@
* contrib/hbwin/legacyc.c
+ Added GETACTIVEOBJECT(), CREATEOBJECT(), OLEERROR()
compatibility calls. All of them are simple aliases to
new OLE function, which means there may be differences
in behviour. Users will need to adjust them for full
new OLE functions, which means there may be differences
in behaviour. Users will need to adjust them for full
compatibility.
However, I'd recommend changing all code to use our
new OLE functions and classes.
@@ -210,7 +218,7 @@
- no hkey is passed, since the default has changed.
- using win_reg*() functions directly, since return value and
hbResult type has changed.
! Fixed potential GPF is non-string was passed for string params.
! Fixed potential GPF if non-string was passed for string params.
* contrib/hbwin/tests/testreg.prg
+ Added registry write test.

View File

@@ -12,6 +12,15 @@
# a performance boost on a slow system.
.SUFFIXES:
need := 3.81
ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) $(need))))
ifeq ($(ok),)
all: ; @echo Error: GNU Make version $(MAKE_VERSION) found, $(need) or upper needed for Harbour.
else
GRANDP = ../../
HB_ARCH := $(HB_ARCHITECTURE)/$(HB_COMPILER)
@@ -56,3 +65,5 @@ HB_LIB_COMPILE :=
endif
include $(TOP)$(ROOT)config/$(HB_ARCH).cf
endif