diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e29f891716..35d73b85e3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-10-27 16:04 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * source/compiler/gencobj.c + ! HOST_OS_UNIX_COMPATIBLE -> OS_UNIX_COMPATIBLE + 2007-10-27 01:23 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * include/hbsetup.h - Removed HOST_OS_UNIX_COMPATIBLE which was a misleading diff --git a/harbour/source/compiler/gencobj.c b/harbour/source/compiler/gencobj.c index 7ebf3eb275..b3e6e95704 100644 --- a/harbour/source/compiler/gencobj.c +++ b/harbour/source/compiler/gencobj.c @@ -34,7 +34,7 @@ /* QUESTION: Allocate buffer dynamically ? */ #define HB_CFG_LINE_LEN ( _POSIX_PATH_MAX ) -#if defined( HOST_OS_UNIX_COMPATIBLE ) +#if defined( OS_UNIX_COMPATIBLE ) #define HB_NULL_STR " > /dev/null" #define HB_ACCESS_FLAG F_OK #elif defined( OS_DOS_COMPATIBLE ) @@ -137,7 +137,7 @@ void hb_compGenCObj( HB_COMP_DECL, PHB_FNAME pFileName ) char szOutPath[ _POSIX_PATH_MAX + 1 ] = "\0"; char pszTemp[ _POSIX_PATH_MAX + 1 ] = ""; char buffer[ HB_CFG_LINE_LEN * 2 + 1024 ]; -#if defined( HOST_OS_UNIX_COMPATIBLE ) +#if defined( OS_UNIX_COMPATIBLE ) char * pszEnv = hb_strdup( "/etc:/usr/local/etc" ); #elif defined( OS_DOS_COMPATIBLE ) char * pszEnv = hb_getenv( "PATH" );