2009-09-24 17:42 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* Makefile
  * utils/Makefile
    * Changed to build hbrun and hbmk2 in HB_BUILD_PARTS=compiler mode.
    + Added running bin/postinst.prg.

  + bin/postinst.prg
    + Added postinst.prg with test content.

  * package/winuni/RELNOTES
    * Added information about new MinGW CEGCC build.

  * utils/Makefile
    * Changed HB_UTILS setting name to HB_UTIL_ADDONS. To be 
      in sync with rest of similar settings.

  * INSTALL
    + Documented HB_UTIL_ADDONS setting. (formerly HB_UTILS)
This commit is contained in:
Viktor Szakats
2009-09-24 15:43:10 +00:00
parent 61b9f8613c
commit 91c3593b31
6 changed files with 59 additions and 5 deletions

View File

@@ -17,6 +17,25 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-09-24 17:42 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* Makefile
* utils/Makefile
* Changed to build hbrun and hbmk2 in HB_BUILD_PARTS=compiler mode.
+ Added running bin/postinst.prg.
+ bin/postinst.prg
+ Added postinst.prg with test content.
* package/winuni/RELNOTES
* Added information about new MinGW CEGCC build.
* utils/Makefile
* Changed HB_UTILS setting name to HB_UTIL_ADDONS. To be
in sync with rest of similar settings.
* INSTALL
+ Documented HB_UTIL_ADDONS setting. (formerly HB_UTILS)
2009-09-24 16:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* harbour/config/globsh.mk
+ Added command $(TRUE) as dummy one for all shells. Pls check.

View File

@@ -550,6 +550,8 @@ OPTIONS AVAILABLE WHEN BUILDING HARBOUR
libraries. Build all if left empty.
- HB_EXTERNAL_ADDONS=<list> Build space separated <list> of additional
libraries stored in the external directory.
- HB_UTIL_ADDONS=<list> Build space separated <list> of additional
utilities stored in the utils directoty.
- HB_VISUALC_VER_PRE80=yes Set this if you're using a pre-8.0
(= pre-MSVS 2005) version of MSVC compiler.
Default: no

View File

@@ -4,10 +4,13 @@
ROOT := ./
include $(ROOT)config/global.mk
ifeq ($(HB_BUILD_PARTS),compiler)
DIRS := \
source \
utils{source} \
else
@@ -41,3 +44,4 @@ endif
install::
+$(HB_POSTINST)
+$(HB_HOST_BIN_DIR)/hbrun$(HB_HOST_BIN_EXT) --hb:gtcgi $(TOP)$(ROOT)bin/postinst.prg

17
harbour/bin/postinst.prg Normal file
View File

@@ -0,0 +1,17 @@
/*
* $Id$
*/
/*
* Copyright 2009 Viktor Szakats (harbour.01 syenar.hu)
* See COPYING for licensing terms.
*/
PROCEDURE Main()
LOCAL nErrorLevel := 0
OutStd( "! Hello from postinst.prg" + hb_osNewLine() )
ErrorLevel( nErrorLevel )
RETURN

View File

@@ -43,7 +43,7 @@ Tool/lib versions used to create this package:
MinGW 4.4.1 (included)
MinGW w64 4.5.0
MinGW CEGCC 4.1.0
MinGW CEGCC 4.4.0
DJGPP 4.4.1 (2.04b1)
MSVC 2008 SP1
Open Watcom C++ 1.8
@@ -65,6 +65,11 @@ Tool/lib versions used to create this package:
QT 4.5.2
WATTCG 2.2.10
Changes since previous (2.0.0beta3 20090905) release:
-----------------------------------------------------------------------
- MinGW CEGCC updated to 4.4.0
Changes since previous (2.0.0beta2 20090624) release:
-----------------------------------------------------------------------

View File

@@ -7,9 +7,16 @@ ROOT := ../
DIRS := \
hbrun \
hbmk2 \
hbi18n \
hbtest \
hbformat \
$(HB_UTILS) \
ifneq ($(HB_BUILD_PARTS),compiler)
DIRS += \
hbi18n \
hbtest \
hbformat \
endif
DIRS += $(HB_UTIL_ADDONS)
include $(ROOT)config/dir.mk