From d4c09be821f0298d1fbafecf5f90d9fb933b87c8 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 11 May 2010 19:21:03 +0000 Subject: [PATCH] 2010-05-11 21:16 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/postinst.prg ! Fixed forming quoted paths in implib creation commands. * INSTALL ! Deleted space at EOL. --- harbour/ChangeLog | 13 ++++++++++--- harbour/INSTALL | 2 +- harbour/config/postinst.prg | 6 +++--- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8f0f36b0c2..5c3703f3fd 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,14 +17,21 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-05-11 21:16 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/postinst.prg + ! Fixed forming quoted paths in implib creation commands. + + * INSTALL + ! Deleted space at EOL. + 2010-05-11 07:29 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/hbqt/hbqt_hbqplaintextedit.cpp % Optimized: selections display with proprietory color. Now it oply operates within viewport() coordinates. - + % Changed: the behavior of matching brace. Now only corresponding - brace is highlighted instead of both. This is exactly like - xMate. Please note that highlighting both braces create + brace is highlighted instead of both. This is exactly like + xMate. Please note that highlighting both braces create confusion and at time I am lost. 2010-05-10 17:10 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) diff --git a/harbour/INSTALL b/harbour/INSTALL index 8090e989c8..99ade38247 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -937,7 +937,7 @@ HARBOUR Same as 32-bit Windows, but you'll have to change %ProgramFiles% to %ProgramFiles(x86)% for 32-bit and mixed tools, you can build for both x86 and x64 without building a native target first, and potential - differences with some compilers in order to use native binaries if + differences with some compilers in order to use native binaries if they are available. --- MSVC 2010 and Windows SDK 7.1 for Windows x86 diff --git a/harbour/config/postinst.prg b/harbour/config/postinst.prg index 1c50925b1f..e3b082658b 100644 --- a/harbour/config/postinst.prg +++ b/harbour/config/postinst.prg @@ -85,7 +85,7 @@ PROCEDURE Main() { "HB_WITH_CAIRO" , "..\..\bin\libcairo-2.dll" , .T., "cairo" },; { "HB_WITH_CURL" , "..\libcurl.dll" , .T., "" },; { "HB_WITH_CURL" , "..\bin\libcurl.dll" , .T., "" },; - { "HB_WITH_FIREBIRD" , "..\bin\fbclient.dll" , .F., "" },; /* Doesn't work with mingw cygwin, because .lib has another name in another directory */ + { "HB_WITH_FIREBIRD" , "..\bin\fbclient.dll" , .F., "" },; /* Doesn't work with mingw/cygwin, because .lib has another name in another directory */ { "HB_WITH_FREEIMAGE" , "..\Dist\FreeImage.dll" , .F., "" },; { "HB_WITH_GD" , "..\bin\bgd.dll" , .F., "" },; { "HB_WITH_LIBHARU" , "..\libhpdf.dll" , .F., "" },; @@ -105,8 +105,8 @@ PROCEDURE Main() FOR EACH tmp IN aArray IF ! Empty( GetEnv( tmp[ 1 ] ) ) hb_processRun( GetEnv( "HB_HOST_BIN_DIR" ) + _PS_ + "hbmk2" +; - " " + Chr( 34 ) + "-mkimplib=" + GetEnv( tmp[ 1 ] ) + _PS_ + StrTran( tmp[ 2 ], "\", _PS_ ) + Chr( 34 ) +; - " " + Chr( 34 ) + GetEnv( "HB_LIB_INSTALL" ) + _PS_ + tmp[ 4 ] + Chr( 34 ) +; + " " + Chr( 34 ) + "-mkimplib=" + StrTran( GetEnv( tmp[ 1 ] ) + "\" + tmp[ 2 ], "\", "/" ) + Chr( 34 ) +; + " " + Chr( 34 ) + StrTran( GetEnv( "HB_LIB_INSTALL" ) + "\" + tmp[ 4 ], "\", "/" ) + Chr( 34 ) +; iif( tmp[ 3 ], " -mkimplibms", "" ) ) ENDIF NEXT