From 7a29cb3007132687d9e5bf7aa4af3ecb31e9c14e Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 17 Sep 2008 11:23:42 +0000 Subject: [PATCH] 2008-09-17 13:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * tests/memtst.prg * tests/speedtst.prg * Made them compile with < 1.1 Harbour versions. --- harbour/ChangeLog | 5 +++++ harbour/tests/memtst.prg | 5 +++++ harbour/tests/speedtst.prg | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d181ab815c..3ec1ca2cc3 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-17 13:22 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * tests/memtst.prg + * tests/speedtst.prg + * Made them compile with < 1.1 Harbour versions. + 2008-09-17 01:29 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/make_xmingwce.sh * harbour/make_xmingw.sh diff --git a/harbour/tests/memtst.prg b/harbour/tests/memtst.prg index 9ed51c5ac5..d17852689b 100644 --- a/harbour/tests/memtst.prg +++ b/harbour/tests/memtst.prg @@ -98,3 +98,8 @@ function build_mode() #endif #endif #endif + +#if __HARBOUR__ < 0x010100 +FUNCTION HB_MTVM() + RETURN .F. +#endif diff --git a/harbour/tests/speedtst.prg b/harbour/tests/speedtst.prg index 3c390180b8..c3ebd8ca67 100644 --- a/harbour/tests/speedtst.prg +++ b/harbour/tests/speedtst.prg @@ -557,3 +557,8 @@ return "" return nil #endif #endif + +#if __HARBOUR__ < 0x010100 +FUNCTION HB_MTVM() + RETURN .F. +#endif