2009-05-18 11:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* bin/hb-func.sh
    ! HB_USER_LIBS_DEF -> CC_HB_USER_LIBS
    ; QUESTION: Is it a problem to move these to HB_ namespace?

  * source/rtl/lang.c
    ! Fixed to return language IDs with consistent '-' separators
      instead of '_'. We may change this to consistent '_', if
      we decide it's better.
This commit is contained in:
Viktor Szakats
2009-05-18 09:20:34 +00:00
parent 73f27d4447
commit c417d61afa
3 changed files with 14 additions and 2 deletions

View File

@@ -17,6 +17,16 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-18 11:19 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* bin/hb-func.sh
! HB_USER_LIBS_DEF -> CC_HB_USER_LIBS
; QUESTION: Is it a problem to move these to HB_ namespace?
* source/rtl/lang.c
! Fixed to return language IDs with consistent '-' separators
instead of '_'. We may change this to consistent '_', if
we decide it's better.
2009-05-18 11:03 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/filesys.c
! fixed OpenWatcom Linux builds which does not support utimes() yet.

View File

@@ -252,8 +252,8 @@ mk_hbtools()
if [ -n "${CC_HB_USER_LDFLAGS}" ]; then
echo "ldflags=${CC_HB_USER_LDFLAGS}">> ${hb_hbmkcfg}
fi
if [ -n "${HB_USER_LIBS_DEF}" ]; then
echo "libs=${HB_USER_LIBS_DEF}">> ${hb_hbmkcfg}
if [ -n "${CC_HB_USER_LIBS}" ]; then
echo "libs=${CC_HB_USER_LIBS}">> ${hb_hbmkcfg}
fi
if [ "${HB_GPM_MOUSE}" = "yes" ]; then
echo "libs=gpm">> ${hb_hbmkcfg}

View File

@@ -287,6 +287,8 @@ HB_FUNC( HB_USERLANG )
{
if( ietf[ tmp ] == '.' )
break;
else if( ietf[ tmp ] == '_' )
ietf[ tmp ] = '-';
}
hb_retclen_buffer( ietf, tmp );