2009-05-11 13:00 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rdd/workarea.c
    * formatting

  * harbour/source/vm/Makefile
    * minor cleanup

  * harbour/config/dir.cf
    ! added protection against double build call when -j<n> is used in
      install phase
This commit is contained in:
Przemyslaw Czerpak
2009-05-11 10:51:39 +00:00
parent a004e5abf2
commit eb76f97482
4 changed files with 18 additions and 3 deletions

View File

@@ -17,6 +17,17 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-11 13:00 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rdd/workarea.c
* formatting
* harbour/source/vm/Makefile
* minor cleanup
* harbour/config/dir.cf
! added protection against double build call when -j<n> is used in
install phase
2009-05-08 14:53 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/tget.prg
* source/rtl/tclass.prg

View File

@@ -45,7 +45,9 @@ else
DIRS_CLEAN = $(foreach dir, $(DIRS_MK), $(dir).clean)
DIRS_INST = $(foreach dir, $(DIRS_MK), $(dir).inst)
ifneq ($(_HB_BLD),yes)
first :: $(DIRS_MK)
endif
install :: $(DIRS_INST)
clean :: $(DIRS_CLEAN)
@@ -62,7 +64,7 @@ $(DIRS_CLEAN) ::
+$(MK) -C $(@:.clean=) clean
$(DIRS_INST) ::
+$(MK) -C $(@:.inst=) install
+$(MK) -C $(@:.inst=) install _HB_BLD=yes
$(DIRS_MK) ::
+$(MK) -C $(@)

View File

@@ -2122,7 +2122,7 @@ int hb_rddRegister( const char * szDriver, USHORT uiType )
return 1;
hb_snprintf( szGetFuncTable, sizeof( szGetFuncTable ), "%s_GETFUNCTABLE",
szDriver );
szDriver );
pGetFuncTable = hb_dynsymFindName( szGetFuncTable );
if( !pGetFuncTable )
return 2; /* Not valid RDD */

View File

@@ -33,6 +33,8 @@ endif
export HB_HVM_ALL
endif
DIRS=
ifeq ($(HB_ARCHITECTURE),win)
ifeq ($(HB_COMPILER),mingw)
C_MAIN = mainwin.c
@@ -108,7 +110,7 @@ LIBNAME=hbvm
HB_USER_CFLAGS:=$(subst -DHB_MT_VM,,$(HB_USER_CFLAGS))
ifneq ($(HB_ARCHITECTURE),dos)
ifneq ($(HB_MT),no)
DIRS+= vmmt
DIRS+= vmmt
endif
endif