1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-19 17:57:22 +01:00

removed deprecation warnings, added ccache stats print

This commit is contained in:
Vadim Kurland 2009-06-10 20:28:00 +00:00
parent f9eb5e1a8c
commit 8093777d9e
5 changed files with 11 additions and 6 deletions

View File

@ -40,6 +40,11 @@ $LIBTOOLIZE --dry-run --install > /dev/null 2>&1 && {
LIBTOOLIZE_ARGS="--force --copy"
}
if test -x "`which ccache`"
then
ccache -s
fi
echo This script runs configure ...
$LIBTOOLIZE $LIBTOOLIZE_ARGS

View File

@ -1 +1 @@
#define BUILD_NUM 1047
#define BUILD_NUM 1048

View File

@ -166,7 +166,7 @@ bool RCSFilePreview::showFileRLog( const QString &filename )
{
rcsComments[(*i).rev] = (*i).log;
RCSViewItem *itm;
RCSViewItem *itm = NULL;
if (st->getRCSFilePreviewStyle()==1)
{
// List style

View File

@ -119,8 +119,8 @@ string NATCompiler_ipt::getAddressTableVarName(FWObject *at)
ostringstream ostr;
string name=at->getName();
string::size_type p1;
char *bad_shell_chars = " !#$&*()-+=\\|{}[]?<>,.";
for (char *cptr=bad_shell_chars; *cptr; cptr++)
const char *bad_shell_chars = " !#$&*()-+=\\|{}[]?<>,.";
for (const char *cptr=bad_shell_chars; *cptr; cptr++)
{
while ( (p1=name.find(*cptr))!=string::npos)
name=name.replace(p1,1,"_");

View File

@ -205,8 +205,8 @@ string PolicyCompiler_ipt::getAddressTableVarName(FWObject *at)
ostringstream ostr;
string name=at->getName();
string::size_type p1;
char *bad_shell_chars = " !#$&*()-+=\\|{}[]?<>,.";
for (char *cptr=bad_shell_chars; *cptr; cptr++)
const char *bad_shell_chars = " !#$&*()-+=\\|{}[]?<>,.";
for (const char *cptr=bad_shell_chars; *cptr; cptr++)
{
while ( (p1=name.find(*cptr))!=string::npos)
name=name.replace(p1,1,"_");