From 03e7583f2096e42307054f0f4ce0ecb23fa78850 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 27 Aug 2009 07:50:31 +0000 Subject: [PATCH] 2009-08-27 09:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/detect.mk % Deleted compatibility input and output vars. * ChangeLog + Items marked done. --- harbour/ChangeLog | 13 ++++++++++--- harbour/config/detect.mk | 20 -------------------- 2 files changed, 10 insertions(+), 23 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 29372c88b5..1b77be2ba9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-27 09:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/detect.mk + % Deleted compatibility input and output vars. + + * ChangeLog + + Items marked done. + 2009-08-27 09:48 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/gtalleg/Makefile * Minor cleanup. @@ -105,7 +112,7 @@ * config/detect.mk ! Fixed gpm mouse detection prerequisites. ; TODO: Will need some more tweaking to make it clean, I'll do it - a bit later. + a bit later. [DONE] 2009-08-26 18:51 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * source/rtl/gtxwc/Makefile @@ -181,7 +188,7 @@ HB_GPM_MOUSE var is still set for compatibility with internals. NOTE: I've left verbose output on to see what's happening, this will tuned after testing. - ; TODO: Remove reliance on legacy settings in our own codebase. + ; TODO: Remove reliance on legacy settings in our own codebase. [DONE] ; TODO: Start using HB_HAS_* values for dynamic lib syslib list assembly and in GT Makefiles. [DONE] @@ -206,7 +213,7 @@ + Added "system" libs to dynamic lib creation commands. ; TODO: There is one step left: To build system lib list also when dynamic libs are to be created. - This will need some extra detection logic. + This will need some extra detection logic. [DONE] 2009-08-26 12:28 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * INSTALL diff --git a/harbour/config/detect.mk b/harbour/config/detect.mk index b5e9a20442..eb35fb1eb7 100644 --- a/harbour/config/detect.mk +++ b/harbour/config/detect.mk @@ -46,18 +46,6 @@ ifeq ($(HB_COMMERCE),yes) export HB_INC_SLANG := no endif -# Compatibility inputs (deprecated) - -ifeq ($(HB_WITHOUT_GTCRS),yes) - export HB_INC_CURSES := no -endif -ifeq ($(HB_WITHOUT_SLANG),yes) - export HB_INC_SLANG := no -endif -ifeq ($(HB_WITHOUT_GTXWC),yes) - export HB_INC_X11 := no -endif - # Detect OpenSSL _DET_DSP_NAME := OpenSSL @@ -140,12 +128,4 @@ include $(TOP)$(ROOT)config/detfun.mk _DET_OPT_VERB := -# Compatibility outputs (deprecated) - -ifeq ($(HB_HAS_GPM),) - HB_GPM_MOUSE := no -else - HB_GPM_MOUSE := yes -endif - endif # DETECT_MK_