2010-01-07 10:53 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* ChangeLog
    * Some changes marked DONE.

  * mpkg_tgz.sh
    ! Fixed to use tar command even when it's mapped to bsdtar.
This commit is contained in:
Viktor Szakats
2010-01-07 10:01:27 +00:00
parent 2b2967a314
commit 97a0e02cd1
2 changed files with 18 additions and 14 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-01-07 10:53 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* ChangeLog
* Some changes marked DONE.
* mpkg_tgz.sh
! Fixed to use tar command even when it's mapped to bsdtar.
2010-01-07 10:27 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbvmpub.h
* minor formatting
@@ -45,7 +52,7 @@
* contrib/hbide/ideprojmanager.prg
* contrib/hbide/idestylesheets.prg
! Fixed few more artifacts.
! Recent Files and Projects Menu was growing crazy,
! Recent Files and Projects Menu was growing crazy,
was a result of not deleting the menu item in XbpMenu() class.
More attention is required yet.
@@ -62,7 +69,7 @@
* contrib/hbide/projects/hbide.hbi
! Deleted hard-coded -o directive, no longer needed.
! Project paths are now shown without meta-dat.
* contrib/hbide/resources/projectproperties.ui
! Changed components background behavior not to use gradients.
Now it is plain vanila white.
@@ -77,9 +84,9 @@
* contrib/hbide/idestylesheets.prg
! Another round of reforms. And I am almost done with them. But wait...
! Started implementation of .env concept. What was missing from
hbIDE => hbMK2 were the shell commands minimum necessary to
let hbMK2 engine take control of. Now it can be done via
! Started implementation of .env concept. What was missing from
hbIDE => hbMK2 were the shell commands minimum necessary to
let hbMK2 engine take control of. Now it can be done via
QProcess:setEnvironment() call. I have left under the commented
code in ideprojmanager.prg:
/* Mechanism to supply environment variables to called process */
@@ -88,7 +95,7 @@
/* If I am not wrong, HBMK2 can have these variables alread set */
/* and hence developer can choose any compiler of his choice. */
/* */
/* Actually, this was the intension in hbIDE.env I commited in IDE root */
/* Actually, this was the intension in hbIDE.env I commited in IDE root */
I am been able to compile/link/execute hbIDE.exe after setting ( WinXP )
qListSets := QStringList():new()
qListSets:append( "HB_WITH_QT=c:\qt\4.5.3\lib" )
@@ -99,14 +106,14 @@
! Fixed many artifacts difficult to jot-down.
+ Implemented not to load any source until brought forward for view.
This has increased the loading speed extremely fast and always
This has increased the loading speed extremely fast and always
consistent in timing. This feature was hanging on my drawing board
since begining.
This effectively means that sessions with any number of source tabs
will not pose speed panelty.
TODO: Syntax highlighting is a slow process, to speed-up.
2010-01-07 01:40 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbwin/Makefile
- contrib/hbwin/win_err.c
@@ -132,7 +139,7 @@
[ I didn't review wapi_commctrl.c, but some lazy checking
on MSDN showed that these are generally not setting GetLastError(). ]
* WAPI_GETSCROLLRANGE() now set ref params even in case of failure.
; TODO: Do some final renaming and rearrangement on the low-level.
; TODO: Do some final renaming and rearrangement on the low-level. [DONE]
* contrib/hbwin/wapi_winbase_mutex.c
* Formatting.
@@ -172,7 +179,7 @@
Please review.
; TOFIX?: Unpacking stub script always uses 'tar', maybe this
needs to be fixed, although current command should
work on Snow Leopard.
work on Snow Leopard. [CLEARED]
- Deleted comment no longer valid.
[TOMERGE 2.0]

View File

@@ -102,10 +102,7 @@ elif ! tar --version >/dev/null 2>&1; then
else
# tar is mapped to bsdtar starting OS X 10.6
case `tar --version` in
*bsdtar*)
hb_gnutar=no
TAR=bsdtar
;;
*bsdtar*) hb_gnutar=no ;;
esac
fi
if gmake --version >/dev/null 2>&1; then