From c38cc0608ed2726ed6758ddfbc0279e67e2618c1 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 3 Jul 2008 06:57:42 +0000 Subject: [PATCH] 2008-07-03 08:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbsqlit3/Makefile * Changed so that only failing BSD and HPUX platforms are excluded. --- harbour/ChangeLog | 5 +++++ harbour/contrib/hbsqlit3/Makefile | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7c07bf543b..5e5361f8b9 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-07-03 08:56 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbsqlit3/Makefile + * Changed so that only failing BSD and HPUX platforms + are excluded. + 2008-07-03 08:48 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbtpathy/tpos2.c ! Blind fix for three OS/2 warnings. David please test. diff --git a/harbour/contrib/hbsqlit3/Makefile b/harbour/contrib/hbsqlit3/Makefile index e3963fd87f..3376353725 100644 --- a/harbour/contrib/hbsqlit3/Makefile +++ b/harbour/contrib/hbsqlit3/Makefile @@ -7,7 +7,8 @@ ROOT = ../../ LIBNAME=hbsqlit3 ifneq ($(HB_ARCHITECTURE),dos) -ifeq ($(HB_ARCHITECTURE),w32) +ifneq ($(HB_ARCHITECTURE),bsd) +ifneq ($(HB_ARCHITECTURE),hpux) C_SOURCES =\ hbsqlit3.c \ @@ -28,3 +29,6 @@ endif else include $(TOP)$(ROOT)config/none.cf endif +else +include $(TOP)$(ROOT)config/none.cf +endif