2009-04-08 08:53 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmk2/hbmk2.prg
    ! Extension is also omitted when Harbour is installed 
      on sys loc.
This commit is contained in:
Viktor Szakats
2009-04-08 06:54:03 +00:00
parent 8bf621c28e
commit 5be91add23
2 changed files with 10 additions and 3 deletions

View File

@@ -8,6 +8,11 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-04-08 08:53 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Extension is also omitted when Harbour is installed
on sys loc.
2009-04-08 03:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Possible fix for *nix shared lib problem when Harbour

View File

@@ -1228,10 +1228,12 @@ PROCEDURE Main( ... )
DO CASE
CASE t_cARCH $ "bsd|linux|hpux|sunos" .OR. t_cARCH == "darwin" /* Separated to avoid match with 'win' */
IF Empty( cPrefix )
cDynLibNamePrefix := ""
s_aLIBSHARED := { iif( s_lMT, "harbourmt" + cPostfix,;
"harbour" + cPostfix ) }
ELSE
s_aLIBSHARED := { iif( s_lMT, cPrefix + cDynLibNamePrefix + "harbourmt" + cPostfix + cDynLibExt,;
cPrefix + cDynLibNamePrefix + "harbour" + cPostfix + cDynLibExt ) }
ENDIF
s_aLIBSHARED := { iif( s_lMT, cPrefix + cDynLibNamePrefix + "harbourmt" + cPostfix + cDynLibExt,;
cPrefix + cDynLibNamePrefix + "harbour" + cPostfix + cDynLibExt ) }
CASE t_cARCH $ "os2|win|wce"
s_aLIBSHARED := { iif( s_lMT, cDynLibNamePrefix + "harbourmt",;
cDynLibNamePrefix + "harbour" ) }