2006-11-10 12:00 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/bin/hb-mkslib.sh
+ added ${L_USR} to gcc parameters
* harbour/source/pp/ppgen.c
! fixed minor typo in printf() format
This commit is contained in:
@@ -8,6 +8,13 @@
|
||||
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
* cleaned BCC warnings
|
||||
|
||||
* harbour/source/rdd/dbfcdx/dbfcdx1.c
|
||||
! fixed ordKeyGoto() positioning when active filter is set and no
|
||||
controlling order
|
||||
|
||||
2006-11-10 12:00 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/bin/hb-mkslib.sh
|
||||
+ added ${L_USR} to gcc parameters
|
||||
|
||||
|
||||
@@ -128,7 +128,7 @@ else
|
||||
#FULLNAME="${BASE}-${VERSION}${SLIB_EXT}"
|
||||
#FULLNAME="${BASE}{SLIB_EXT}.${VERSION}"
|
||||
FULLNAME="${LIB_NAME}${SLIB_EXT}"
|
||||
${CCPREFIX}gcc -shared -o "${FULLNAME}" $OBJLST ${linker_options} && \
|
||||
${CCPREFIX}gcc -shared -o "${FULLNAME}" $OBJLST ${linker_options} ${L_USR} && \
|
||||
cd "${dir}" && \
|
||||
mv -f "${OTMPDIR}/${FULLNAME}" "${DSTDIR}${FULLNAME}"
|
||||
fi
|
||||
|
||||
@@ -93,14 +93,14 @@ static void hb_pp_writeToken( FILE * fout, PHB_PP_TOKEN pToken,
|
||||
if( pToken->pNext )
|
||||
fprintf( fout, " { %s +%2d", szName, iToken + iOptional + 1 );
|
||||
else
|
||||
fprintf( fout, " { NULL%*.s", i, "" );
|
||||
fprintf( fout, " { NULL%*s", i, "" );
|
||||
if( iOptional )
|
||||
fprintf( fout, ", %s +%2d", szName, iToken + 1 );
|
||||
else
|
||||
fprintf( fout, ", NULL%*.s", i, "" );
|
||||
fprintf( fout, ", NULL%*s", i, "" );
|
||||
|
||||
i = 16 - strlen( pToken->value );
|
||||
fprintf( fout, ", \"%s\", %*.s %2d,%2d, 0x%04x, %d }%s\n",
|
||||
fprintf( fout, ", \"%s\", %*s %2d,%2d, 0x%04x, %d }%s\n",
|
||||
pToken->value,
|
||||
i < 0 ? 0 : i, "",
|
||||
pToken->len, pToken->spaces,
|
||||
|
||||
Reference in New Issue
Block a user