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.
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user