From 62334184f8611a48849fbab95770effcf3e11056 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Tue, 28 Jul 2009 12:38:15 +0000 Subject: [PATCH] 2009-07-28 14:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/rtl/gtcrs/Makefile * disabled from OS2 builds - if someone knows OS2 curses port then he can try to reenable it and update gtcrs code to compile with it. --- harbour/ChangeLog | 5 +++++ harbour/source/rtl/gtcrs/Makefile | 3 +++ 2 files changed, 8 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 19bdd00210..68a0263947 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-07-28 14:37 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/rtl/gtcrs/Makefile + * disabled from OS2 builds - if someone knows OS2 curses port then + he can try to reenable it and update gtcrs code to compile with it. + 2009-07-28 14:33 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/hvmall.c ! define INCL_* macros for OS2 builds which uses hvmall.c diff --git a/harbour/source/rtl/gtcrs/Makefile b/harbour/source/rtl/gtcrs/Makefile index c111a40e17..bb22e04480 100644 --- a/harbour/source/rtl/gtcrs/Makefile +++ b/harbour/source/rtl/gtcrs/Makefile @@ -22,6 +22,9 @@ endif ifeq ($(HB_WITHOUT_GTCRS),yes) HB_INC_CURSES = endif +ifeq ($(HB_ARCHITECTURE),os2) +HB_INC_CURSES = +endif HB_INC_CURSES_OK += $(foreach d, $(HB_INC_CURSES), $(if $(wildcard $(d)/curses.h),$(d),)) HB_INC_CURSES_OK:=$(strip $(HB_INC_CURSES_OK))