From e8750758bc04a75b71957d7621f3f2daafa7995e Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 17 Sep 2009 08:50:40 +0000 Subject: [PATCH] 2009-09-17 10:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/hbsetup.h ! Added __BEOS__ check when detecting HB_OS_BEOS. --- harbour/ChangeLog | 4 ++++ harbour/include/hbsetup.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3a8485e03e..0e422a8f19 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-09-17 10:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * include/hbsetup.h + ! Added __BEOS__ check when detecting HB_OS_BEOS. + 2009-09-17 10:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * source/rdd/usrrdd/rdds/arrayrdd.prg * contrib/hbct/tests/datetime.prg diff --git a/harbour/include/hbsetup.h b/harbour/include/hbsetup.h index 0fa1b8d0ad..35b45622d7 100644 --- a/harbour/include/hbsetup.h +++ b/harbour/include/hbsetup.h @@ -280,7 +280,7 @@ #endif #ifndef HB_OS_BEOS - #if defined( __HAIKU__ ) + #if defined( __HAIKU__ ) || defined( __BEOS__ ) #define HB_OS_BEOS #endif #endif