From 145b21c110e757f5754e3abd43a4bb3ff0dcf0bb Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 13 Mar 2010 02:19:10 +0000 Subject: [PATCH] 2010-03-13 03:18 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/vm/Makefile * src/vm/vmmt/Makefile ! Fixed GUI mode not working for mingw64 targets. [TOMERGE 2.0] --- harbour/ChangeLog | 6 ++++++ harbour/src/vm/Makefile | 2 +- harbour/src/vm/vmmt/Makefile | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 237fb0d51f..be32ce010d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,12 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-03-13 03:18 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * src/vm/Makefile + * src/vm/vmmt/Makefile + ! Fixed GUI mode not working for mingw64 targets. + [TOMERGE 2.0] + 2010-03-13 03:03 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * src/rtl/gtwvt/gtwvt.c ! Reverted RegisterClassEx() to RegisterClass() for WinCE. diff --git a/harbour/src/vm/Makefile b/harbour/src/vm/Makefile index 80aff91f01..2cb49733ad 100644 --- a/harbour/src/vm/Makefile +++ b/harbour/src/vm/Makefile @@ -38,7 +38,7 @@ endif DIRS := ifeq ($(HB_PLATFORM),win) - ifeq ($(HB_COMPILER),mingw) + ifneq ($(filter $(HB_COMPILER),mingw mingw64),) C_MAIN := mainwin.c else C_MAIN := mainstd.c mainwin.c diff --git a/harbour/src/vm/vmmt/Makefile b/harbour/src/vm/vmmt/Makefile index da80b894d7..e17be52eb1 100644 --- a/harbour/src/vm/vmmt/Makefile +++ b/harbour/src/vm/vmmt/Makefile @@ -10,7 +10,7 @@ vpath %.c ../ vpath %.prg ../ ifeq ($(HB_PLATFORM),win) - ifeq ($(HB_COMPILER),mingw) + ifneq ($(filter $(HB_COMPILER),mingw mingw64),) C_MAIN := mainwin.c else C_MAIN := mainstd.c mainwin.c