From e9c7227949d94357ec167a80bdab0d2cf3b3955c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 31 Mar 2009 11:29:46 +0000 Subject: [PATCH] 2009-03-31 13:39 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbfbird/Makefile ! Excluded for pocc64 due to compile errors. * source/rtl/hbinet.c ! Fixed to warnings for pocc64. --- harbour/ChangeLog | 7 +++++++ harbour/contrib/hbfbird/Makefile | 4 ++++ harbour/source/rtl/hbinet.c | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f692d6c689..91a6ac2ae1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,13 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-31 13:39 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbfbird/Makefile + ! Excluded for pocc64 due to compile errors. + + * source/rtl/hbinet.c + ! Fixed to warnings for pocc64. + 2009-03-31 12:45 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * bin/hb-mkdyn.bat + Added pocc64 support. diff --git a/harbour/contrib/hbfbird/Makefile b/harbour/contrib/hbfbird/Makefile index acebafe2fe..a45f36c403 100644 --- a/harbour/contrib/hbfbird/Makefile +++ b/harbour/contrib/hbfbird/Makefile @@ -6,6 +6,7 @@ ROOT = ../../ LIBNAME=hbfbird +ifneq ($(HB_COMPILER),pocc64) ifneq ($(HB_COMPILER),poccce) ifeq ($(HB_INC_FIREBIRD),) @@ -34,3 +35,6 @@ endif else include $(TOP)$(ROOT)config/none.cf endif +else +include $(TOP)$(ROOT)config/none.cf +endif diff --git a/harbour/source/rtl/hbinet.c b/harbour/source/rtl/hbinet.c index 3371b382ec..668918a288 100644 --- a/harbour/source/rtl/hbinet.c +++ b/harbour/source/rtl/hbinet.c @@ -260,7 +260,7 @@ link at all. Some hbinet.c features (or the whole module) won't properly work though. [vszakats] */ #undef FD_ISSET - #define FD_ISSET( s, f ) ( 0 ) + #define FD_ISSET( s, f ) do { HB_SYMBOL_UNUSED( s ); HB_SYMBOL_UNUSED( f ) } while( 0 ) #endif #if defined( HB_OS_LINUX )