diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 43c40ff8bd..cce3dd05d7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-24 15:07 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * utils/hbmk2/hbmk2.prg + + Added autodetection for pocc64. + 2009-02-24 13:53 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * config/win/pocc64.cf % Optimized to use pocc.cf and modify that slightly for x64. diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 2fc2e3a0c9..e1beebf13c 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -414,6 +414,7 @@ FUNCTION Main( ... ) { {|| FindInPath( "ml64" ) != NIL }, "msvc64" },; { {|| FindInPath( "cl" ) != NIL }, "msvc" },; { {|| FindInPath( "bcc32" ) != NIL }, "bcc32" },; + { {|| FindInPath( "porc64" ) != NIL }, "pocc64" },; { {|| FindInPath( "pocc" ) != NIL }, "pocc" },; { {|| FindInPath( "dmc" ) != NIL }, "dmc" },; { {|| FindInPath( "icc" ) != NIL }, "icc" },;