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
This commit is contained in:
Przemyslaw Czerpak
2008-09-23 22:45:16 +00:00
parent 15b49556a2
commit fe42f7ca94
3 changed files with 9 additions and 4 deletions

View File

@@ -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.

View File

@@ -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

View File

@@ -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