From c3ec7cd649a1a80555897fa4ac78475d8178ed60 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 20 Aug 2009 22:08:46 +0000 Subject: [PATCH] 2009-08-21 00:08 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * external/sqlite3/Makefile ! Disabled for dos hosts and watcom compiler because watcom runs out of memory. --- harbour/ChangeLog | 5 +++++ harbour/external/sqlite3/Makefile | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7d211919b0..d2ba2f1aa5 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-21 00:08 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * external/sqlite3/Makefile + ! Disabled for dos hosts and watcom compiler because watcom + runs out of memory. + 2009-08-21 00:01 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * external/libhpdf/Makefile * contrib/hbhpdf/Makefile diff --git a/harbour/external/sqlite3/Makefile b/harbour/external/sqlite3/Makefile index a523d8e1e9..16ea3b0702 100644 --- a/harbour/external/sqlite3/Makefile +++ b/harbour/external/sqlite3/Makefile @@ -40,6 +40,10 @@ ifeq ($(HB_WITH_SQLITE3),) ifeq ($(HB_COMPILER),poccarm) HB_WITH_SQLITE3 := no endif + # NOTE: dos based watcom runs out of memory. [vszakats] + ifeq ($(HB_HOST_ARCH)-$(HB_COMPILER),dos-watcom) + HB_WITH_SQLITE3 := no + endif endif ifeq ($(HB_WITH_SQLITE3),yes)