From b37b755697b72ec63973764a0bcbb1526ba873d2 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 21 Feb 2009 17:37:09 +0000 Subject: [PATCH] 2009-02-21 18:36 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk2/hbmk2.prg ! Fixed recent typo in shared names for *nix systems. Thanks Guy. --- harbour/ChangeLog | 7 ++++++- harbour/utils/hbmk2/hbmk2.prg | 12 ++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 83fcbdac55..cb165b8540 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-21 18:36 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * utils/hbmk2/hbmk2.prg + ! Fixed recent typo in shared names for *nix systems. + Thanks Guy. + 2009-02-21 09:28 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * harbour/contrib/gtwvg/wincallb.c ! Pacified warnings on 64 bits. @@ -28,7 +33,7 @@ 2009-02-21 07:15 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * harbour/contrib/gtwvg/wvgwin.c * harbour/contrib/gtwvg/wvgdarea.prg - ! WIN_FillRect() => WVG_FillRect() + ! WIN_FillRect() => WVG_FillRect() Namespace lashed with hbwin/win_prn1.c. 2009-02-21 15:03 UTC+0100 Viktor Szakats (harbour.01 syenar hu) diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 936e3a0687..e952261030 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -789,14 +789,14 @@ FUNCTION Main( ... ) DO CASE CASE t_cARCH $ "bsd|linux|sunos" - s_aLIBSHARED := { iif( s_lMT, "harbourmt." + cDL_Version + ".so",; - "harbour." + cDL_Version + ".so" ) } + s_aLIBSHARED := { iif( s_lMT, "harbourmt-" + cDL_Version + ".so",; + "harbour-" + cDL_Version + ".so" ) } CASE t_cARCH == "hpux" - s_aLIBSHARED := { iif( s_lMT, "harbourmt." + cDL_Version + ".sl",; - "harbour." + cDL_Version + ".sl" ) } + s_aLIBSHARED := { iif( s_lMT, "harbourmt-" + cDL_Version + ".sl",; + "harbour-" + cDL_Version + ".sl" ) } CASE t_cARCH == "darwin" - s_aLIBSHARED := { iif( s_lMT, "harbourmt." + cDL_Version + ".dylib",; - "harbour." + cDL_Version + ".dylib" ) } + s_aLIBSHARED := { iif( s_lMT, "harbourmt-" + cDL_Version + ".dylib",; + "harbour-" + cDL_Version + ".dylib" ) } CASE t_cARCH $ "os2|win" s_aLIBSHARED := { iif( s_lMT, "harbourmt",; "harbour" ) }