2011-02-05 22:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/make.hbs
    ! Fixed recent regression: build hbx only for hblib/hbdyn projects.

  * contrib/hbrunext/pullext.prg
  * contrib/hbrunext/hbrunext.hbp
    * Internal rename.

  * contrib/hbwin/hbwin.hbx
  * contrib/hbmemio/hbmemio.hbx
  * contrib/hbct/hbct.hbx
    * Refreshed. (comment only)
This commit is contained in:
Viktor Szakats
2011-02-05 21:26:57 +00:00
parent 52ed8f5ab7
commit 0c7e4dc9b5
7 changed files with 21 additions and 9 deletions

View File

@@ -16,6 +16,19 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-05 22:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/make.hbs
! Fixed recent regression: build hbx only for hblib/hbdyn projects.
* contrib/hbrunext/pullext.prg
* contrib/hbrunext/hbrunext.hbp
* Internal rename.
* contrib/hbwin/hbwin.hbx
* contrib/hbmemio/hbmemio.hbx
* contrib/hbct/hbct.hbx
* Refreshed. (comment only)
2011-02-05 22:11 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* src/3rd/zlib/Makefile
! Fixed to export symbols with bcc.

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBCT__

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBMEMIO__

View File

@@ -8,7 +8,7 @@
-o${hb_name}
-request=__PULLEXT
-request=__HBRUN__PULLEXT
pullext.prg
# Always build in shared mode for these platforms because the

View File

@@ -50,7 +50,7 @@
*
*/
ANNOUNCE __PULLEXT
ANNOUNCE __HBRUN__PULLEXT
REQUEST __HBEXTERN__HBCT__
REQUEST __HBEXTERN__HBEXPAT__

View File

@@ -13,8 +13,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBWIN__

View File

@@ -431,7 +431,9 @@ STATIC PROCEDURE build_projects( nAction, hProjectList, hProjectReqList, cOption
lContainer := "lFromContainer" $ hProjectList[ cProject ]
IF ( nErrorLevel := call_hbmk2( cProjectPath, iif( lPrimary .OR. lContainer, iif( lContainer, cOptions, cOptions + cOptionsUser ), " -inc" ) +;
iif( GetEnv( "HB_REBUILD_EXTERN" ) == "yes" .AND. ( lPrimary .OR. lContainer ), " -hbx=" + FNameExtSet( cProjectPath, ".hbx" ), "" ), NIL ) ) == 0
iif( hProjectList[ cProject ][ "cType" ] $ "hblib|hbdyn" .AND. ;
GetEnv( "HB_REBUILD_EXTERN" ) == "yes" .AND. ;
( lPrimary .OR. lContainer ), " -hbx=" + FNameExtSet( cProjectPath, ".hbx" ), "" ), NIL ) ) == 0
/* Build dynamic lib */
IF GetEnv( "HB_BUILD_CONTRIB_DYN" ) == "yes" .AND. hProjectList[ cProject ][ "cType" ] == "hblib"