From 6b8ec38aec31d9b02804670fc47d7ac8e456fb6a Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 24 Sep 2008 10:31:40 +0000 Subject: [PATCH] 2008-09-24 12:31 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * source/vm/vmmt/Makefile ! Possible fix for mingw build error: make: *** mainstd: No such file or directory. Stop. make[3]: *** [first] Error 2 make[2]: *** [first] Error 2 ; Please review. ; TOFIX: These DLALLOC warnings are present with MinGW 4.3.2 In file included from ../../fm.c:127: ../../dlmalloc.c:1144: warning: ignoring #pragma warning In file included from ../../fm.c:127: ../../dlmalloc.c: In function 'sys_alloc': ../../dlmalloc.c:3396: warning: statement with no effect --- harbour/ChangeLog | 15 +++++++++++++++ harbour/source/vm/vmmt/Makefile | 5 ----- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 834af219a9..e20cd913c3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,21 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-09-24 12:31 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/vm/vmmt/Makefile + ! Possible fix for mingw build error: + make: *** mainstd: No such file or directory. Stop. + make[3]: *** [first] Error 2 + make[2]: *** [first] Error 2 + ; Please review. + + ; TOFIX: These DLALLOC warnings are present with MinGW 4.3.2 + In file included from ../../fm.c:127: + ../../dlmalloc.c:1144: warning: ignoring #pragma warning + In file included from ../../fm.c:127: + ../../dlmalloc.c: In function 'sys_alloc': + ../../dlmalloc.c:3396: warning: statement with no effect + 2008-09-24 12:12 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * common.mak * source/rtl/gtgui/Makefile diff --git a/harbour/source/vm/vmmt/Makefile b/harbour/source/vm/vmmt/Makefile index b4146232a1..f70abdf168 100644 --- a/harbour/source/vm/vmmt/Makefile +++ b/harbour/source/vm/vmmt/Makefile @@ -10,11 +10,9 @@ ROOT = ../../../ ifeq ($(HB_ARCHITECTURE),w32) ifeq ($(HB_COMPILER),mingw) C_MAIN = mainwin.c - DIRS = mainstd else ifeq ($(HB_COMPILER),mingwce) C_MAIN = mainwin.c - DIRS = mainstd mainwin else C_MAIN = mainstd.c mainwin.c endif @@ -74,6 +72,3 @@ ifeq ($(C_USR),$(subst -DHB_MT_VM,,$(C_USR))) endif include $(TOP)$(ROOT)config/lib.cf -ifneq ($(DIRS),) - include $(TOP)$(ROOT)config/dir.cf -endif