From 7eedaf89c6a4c26e919421ae04543b13bf6a5aca Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 25 Aug 2008 20:36:31 +0000 Subject: [PATCH] 2008-08-25 22:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * include/hbsetup.h * source/common/hbver.c - Removed HB_OS_MAC support. It was nothing more than a simple detection and a static version string, so we didn't lose much. --- harbour/ChangeLog | 6 ++++++ harbour/include/hbsetup.h | 6 ------ harbour/source/common/hbver.c | 6 ------ 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 256fd0d153..473582cc9b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-08-25 22:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * include/hbsetup.h + * source/common/hbver.c + - Removed HB_OS_MAC support. It was nothing more than a simple + detection and a static version string, so we didn't lose much. + 2008-08-25 22:25 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_vcce.mak ! Attempt to fix /MANIFEST:NO warnings for MSVC 6.0. diff --git a/harbour/include/hbsetup.h b/harbour/include/hbsetup.h index 60b1c30791..375c36fcdc 100644 --- a/harbour/include/hbsetup.h +++ b/harbour/include/hbsetup.h @@ -312,12 +312,6 @@ #endif #endif -#ifndef HB_OS_MAC - #if defined(__MPW__) - #define HB_OS_MAC - #endif -#endif - #ifndef HB_OS_DARWIN #if defined(__APPLE__) #define HB_OS_DARWIN diff --git a/harbour/source/common/hbver.c b/harbour/source/common/hbver.c index fd459c6c6e..af6a4b7520 100644 --- a/harbour/source/common/hbver.c +++ b/harbour/source/common/hbver.c @@ -299,12 +299,6 @@ char * hb_verPlatform( void ) snprintf( pszPlatform, 256, "%s %s %s", un.sysname, un.release, un.machine ); } -#elif defined(HB_OS_MAC) - - { - hb_strncpy( pszPlatform, "MacOS compatible", PLATFORM_BUF_SIZE ); - } - #else {