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:
parent
f9eb5e1a8c
commit
8093777d9e
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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,"_");
|
||||
|
||||
@ -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,"_");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user