[SPAM] Вcе нoвoе в HДС, HДФЛ, пpибыли и сoцстрахах

2009-10-06 Thread Бух гaл тeру
ВСЕ НОВОЕ в НДС, НДФЛ, ПРИБЫЛИ И СОЦСТРАХАХ Новые правила наличного денежного обращения,получения разрешения на трудоустройство иностранцев,дополнительное регулирование при работе с ЧП «единщиками». Отчетность за 9 месяцев. Семинар • 8 октября • 2009 г. г. Kиев • ул. Шелковичная, 12  

[PATCH] silence ptrace() integer/pointer warnings

2009-10-06 Thread Mike Frysinger
The common defs.h code sets up a fallback ptrace() for many arches which declares the 4th arg as "long" which results in warnings like so: util.c: In function ‘do_ptrace’: util.c:260: warning: passing argument 4 of ‘ptrace’ makes integer from pointer without a cast util.c: In function ‘p

[PATCH 1/1] ignore .gdb files from FLAT toolchains

2009-10-06 Thread Mike Frysinger
* .gitignore: Add /*.gdb. Signed-off-by: Mike Frysinger --- .gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index dc91252..9f17271 100644 --- a/.gitignore +++ b/.gitignore @@ -23,5 +23,6 @@ Makefile.in /missing /stamp-h1 +/*.gdb /i

[PATCH] Blackfin: update ioctl/syscall lists

2009-10-06 Thread Mike Frysinger
* linux/bfin/ioctlent.h: Sync list latest kernel sources. * linux/bfin/syscallent.h: Likewise. Signed-off-by: Mike Frysinger --- linux/bfin/ioctlent.h | 169 +-- linux/bfin/syscallent.h | 17 - 2 files changed, 176 insertions(+), 10 deletions(

[PATCH] split/sort AC_CHECK_FUNCS list

2009-10-06 Thread Mike Frysinger
* configure.ac (AC_CHECK_FUNCS): Sorted/expanded. Signed-off-by: Mike Frysinger --- cuts down on conflicts/rejects when people add more funcs to check configure.ac | 15 ++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 8c05048..

[PATCH] ioctlsort: check ppc hosts too

2009-10-06 Thread Mike Frysinger
* linux/ioctlsort.c: Check for __powerpc__. Signed-off-by: Mike Frysinger --- this fixes behavior when ioctlsort.c is built manually on the command line linux/ioctlsort.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/linux/ioctlsort.c b/linux/ioctlsort.c index f544d8

Re: preparing to 4.5.19 release

2009-10-06 Thread Roland McGrath
I committed some nits to make for a happy make distcheck (d087571). After that, everything looks good to me. I did some unofficial/unsaved builds in the Fedora buildsystem at http://koji.fedoraproject.org/scratch/roland (they only stay there for a day or two), which came out fine--happy builds an

Re: preparing to 4.5.19 release

2009-10-06 Thread Dmitry V. Levin
On Tue, Oct 06, 2009 at 04:27:41PM -0400, Carlos O'Donell wrote: [...] > I have verified that upstream strace HEAD works correctly on hppa. Good news. Looks like everything is ready for 4.5.19 release? -- ldv pgpaN6COQs6ry.pgp Description: PGP signature --

Re: hppa fixes

2009-10-06 Thread Carlos O'Donell
2009/10/5 Dmitry V. Levin : >> -                     tcp->u_nargs = MAX_ARGS; >> +                     /* Unknown syscall, assume maximum number of >> arguments.  */ >> +                     tcp->u_nargs = sizeof(args)/sizeof(args[0]); >>               for (i = 0; i < tcp->u_nargs; i++) { >> -