diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 71f7cf9661..6a7fd1eead 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-03 17:25 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * source/rtl/gtwvt/gtwvt.c + ! Fixed for OpenWatcom 1.8. (SM_REMOTESESSION wasn't defined) + 2009-02-03 16:16 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * include/hbrddcdx.h * contrib/rddsql/sddmy/mysqldd.c diff --git a/harbour/source/rtl/gtwvt/gtwvt.c b/harbour/source/rtl/gtwvt/gtwvt.c index d922d157f2..ede7834c55 100644 --- a/harbour/source/rtl/gtwvt/gtwvt.c +++ b/harbour/source/rtl/gtwvt/gtwvt.c @@ -89,6 +89,10 @@ #include "gtwvt.h" +#if !defined( SM_REMOTESESSION ) + #define SM_REMOTESESSION 0x1000 +#endif + static int s_GtId; static HB_GT_FUNCS SuperTable; #define HB_GTSUPER (&SuperTable)