diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3029ec8a32..02132c2e3c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-09-24 00:44 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/rtl/hbgtcore.c + * harbour/source/rtl/gtsys.c + * use GTTRM as default GT in *nixes + 2008-09-24 00:18 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * tests/memtst.prg + Added #include "simpleio.ch" to allow output redirection. diff --git a/harbour/source/rtl/gtsys.c b/harbour/source/rtl/gtsys.c index d56acd02a9..8cb28257c7 100644 --- a/harbour/source/rtl/gtsys.c +++ b/harbour/source/rtl/gtsys.c @@ -63,14 +63,14 @@ HB_GT_REQUEST( HB_GT_DEFAULT ) #elif defined(HB_GT_LIB) HB_GT_REQUEST( HB_GT_LIB ) -#elif defined(HB_OS_LINUX) - HB_GT_REQUEST( CRS ) #elif defined(HB_OS_WIN_32) HB_GT_REQUEST( WIN ) #elif defined(HB_OS_DOS) HB_GT_REQUEST( DOS ) #elif defined(HB_OS_OS2) HB_GT_REQUEST( OS2 ) +#elif defined(HB_OS_UNIX) + HB_GT_REQUEST( TRM ) #else HB_GT_REQUEST( STD ) #endif diff --git a/harbour/source/rtl/hbgtcore.c b/harbour/source/rtl/hbgtcore.c index c43588fa2d..92b5998c68 100644 --- a/harbour/source/rtl/hbgtcore.c +++ b/harbour/source/rtl/hbgtcore.c @@ -3030,8 +3030,6 @@ static char s_gtNameBuf[ HB_GT_NAME_MAX_ + 1 ]; HB_EXPORT const char * hb_gt_szNameDefault = HB_GT_DRVNAME( HB_GT_DEFAULT ); #elif defined(HB_GT_LIB) HB_EXPORT const char * hb_gt_szNameDefault = HB_GT_DRVNAME( HB_GT_LIB ); -#elif defined(HB_OS_LINUX) - HB_EXPORT const char * hb_gt_szNameDefault = "crs"; #elif defined(HB_WINCE) HB_EXPORT const char * hb_gt_szNameDefault = "wvt"; #elif defined(HB_OS_WIN_32) @@ -3040,6 +3038,8 @@ static char s_gtNameBuf[ HB_GT_NAME_MAX_ + 1 ]; HB_EXPORT const char * hb_gt_szNameDefault = "dos"; #elif defined(HB_OS_OS2) HB_EXPORT const char * hb_gt_szNameDefault = "os2"; +#elif defined(HB_OS_UNIX) + HB_EXPORT const char * hb_gt_szNameDefault = "trm"; #else HB_EXPORT const char * hb_gt_szNameDefault = "std"; #endif