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.
This commit is contained in:
Viktor Szakats
2009-02-21 17:37:09 +00:00
parent 1518335505
commit b37b755697
2 changed files with 12 additions and 7 deletions

View File

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

View File

@@ -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" ) }