2007-11-26 17:17 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/bin/postinst.sh
* workaround for missing 'install' command in some HP-UX versions
* harbour/contrib/xhb/cstructc.c
* casting for 64bit builds
This commit is contained in:
@@ -8,6 +8,13 @@
|
||||
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2007-11-26 17:17 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/bin/postinst.sh
|
||||
* workaround for missing 'install' command in some HP-UX versions
|
||||
|
||||
* harbour/contrib/xhb/cstructc.c
|
||||
* casting for 64bit builds
|
||||
|
||||
2007-11-26 08:00 UTC+0800 Pritpal Bedi (pritpal@vouchcac.com)
|
||||
* harbour/contrib/gtwvg/wvtcore.c
|
||||
! Fixed side effects of copy/paste in hb_wvt_gtDlgProcModal().
|
||||
|
||||
@@ -58,7 +58,9 @@ then
|
||||
-e "s/^# CCPREFIX=\"\"\$/[ -n \"\${CCPREFIX}\" ] || CCPREFIX=\"${CCPREFIX}\"/g" \
|
||||
"${hb_root}/bin/hb-mkslib.sh" > "${hb_mkslib}" && \
|
||||
chmod 755 "${hb_mkslib}"
|
||||
elif [ "${HB_ARCHITECTURE}" = "sunos" ]; then
|
||||
elif [ "${HB_ARCHITECTURE}" = "sunos" ] || \
|
||||
[ "${HB_ARCHITECTURE}" = "hpux" ] || \
|
||||
! which install &>/dev/null; then
|
||||
rm -f "${HB_BIN_INSTALL}/hb-mkslib"
|
||||
cp "${hb_root}/bin/hb-mkslib.sh" "${HB_BIN_INSTALL}/hb-mkslib" && \
|
||||
chmod 755 "${HB_BIN_INSTALL}/hb-mkslib"
|
||||
|
||||
@@ -1415,11 +1415,11 @@ HB_FUNC( HB_POINTER2STRING )
|
||||
}
|
||||
else if( HB_IS_INTEGER( pPointer ) && pLen )
|
||||
{
|
||||
hb_retclen( (char *) hb_itemGetNI( pPointer ), (ULONG) hb_itemGetNL( pLen ) );
|
||||
hb_retclen( (char *) (HB_PTRDIFF) hb_itemGetNI( pPointer ), (ULONG) hb_itemGetNL( pLen ) );
|
||||
}
|
||||
else if( HB_IS_LONG( pPointer ) && pLen )
|
||||
{
|
||||
hb_retclen( (char *) hb_itemGetNL( pPointer ), (ULONG) hb_itemGetNL( pLen ) );
|
||||
hb_retclen( (char *) (HB_PTRDIFF) hb_itemGetNL( pPointer ), (ULONG) hb_itemGetNL( pLen ) );
|
||||
}
|
||||
else
|
||||
hb_errRT_BASE_SubstR( EG_ARG, 1099, NULL, "HB_Pointer2String", 2, hb_paramError( 1 ), hb_paramError( 2 ) );
|
||||
|
||||
Reference in New Issue
Block a user