Your message dated Sat, 12 Jan 2008 18:29:04 +0100
with message-id <[EMAIL PROTECTED]>
and subject line header protection in <sys/syscall.h>
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: kfreebsd-5
Severity: wishlist
Tags: patch
Hi,
This patch adds header protection to kfreebsd's <sys/syscall.h>. Note that this
is a dynamicaly-generated file. My patch fixes _both_ the generator script and
the header so that the fix is also applied when building header packages.
After this is applied, it will be suitable to replace glibc's <sys/syscall.h>
(which is just an old version from kfreebsd) with up-to-date version in
kfreebsd-kernel-headers.
I'm forwarding it to upstream, too.
-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.3-1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
diff -ur /usr/src/kfreebsd5/src/sys/kern/makesyscalls.sh sys/kern/makesyscalls.sh
--- /usr/src/kfreebsd5/src/sys/kern/makesyscalls.sh 2003-12-23 04:50:43.000000000 +0100
+++ sys/kern/makesyscalls.sh 2005-08-14 15:05:41.000000000 +0200
@@ -13,6 +13,7 @@
sysproto="../sys/sysproto.h"
sysproto_h=_SYS_SYSPROTO_H_
syshdr="../sys/syscall.h"
+syshdr_h=_SYS_SYSCALL_H_
sysmk="../sys/syscall.mk"
syssw="init_sysent.c"
syscallprefix="SYS_"
@@ -72,6 +73,7 @@
sysarg = \"$sysarg\"
sysnames = \"$sysnames\"
syshdr = \"$syshdr\"
+ syshdr_h = \"$syshdr_h\"
sysmk = \"$sysmk\"
compat = \"$compat\"
compat4 = \"$compat4\"
@@ -137,6 +139,8 @@
printf "const char *%s[] = {\n", namesname > sysnames
printf " * created from%s\n */\n\n", $0 > syshdr
+ printf "#ifndef %s\n", syshdr_h > syshdr
+ printf "#define\t%s\n\n", syshdr_h > syshdr
printf "# created from%s\nMIASM = ", $0 > sysmk
@@ -486,6 +490,7 @@
printf("};\n") > sysnames
printf("#define\t%sMAXSYSCALL\t%d\n", syscallprefix, syscall) \
> syshdr
+ printf("\n#endif /* !%s */\n", syshdr_h) > syshdr
} '
cat $sysinc $sysent >> $syssw
diff -ur /usr/src/kfreebsd5/src/sys/sys/syscall.h sys/sys/syscall.h
--- /usr/src/kfreebsd5/src/sys/sys/syscall.h 2004-10-09 17:25:41.000000000 +0200
+++ sys/sys/syscall.h 2005-08-14 15:01:54.000000000 +0200
@@ -6,6 +6,9 @@
* created from FreeBSD: src/sys/kern/syscalls.master,v 1.176.2.1 2004/10/09 15:12:33 mtm Exp
*/
+#ifndef _SYS_SYSCALL_H_
+#define _SYS_SYSCALL_H_
+
#define SYS_syscall 0
#define SYS_exit 1
#define SYS_fork 2
@@ -358,3 +361,5 @@
#define SYS_thr_wake 443
#define SYS_kldunloadf 444
#define SYS_MAXSYSCALL 445
+
+#endif /* !_SYS_SYSCALL_H_ */
--- End Message ---
--- Begin Message ---
On Sun, Aug 14, 2005 at 03:14:16PM +0200, Robert Millan wrote:
> Package: kfreebsd-5
> Severity: wishlist
> Tags: patch
>
> Hi,
>
> This patch adds header protection to kfreebsd's <sys/syscall.h>. Note that
> this
> is a dynamicaly-generated file. My patch fixes _both_ the generator script
> and
> the header so that the fix is also applied when building header packages.
>
> After this is applied, it will be suitable to replace glibc's <sys/syscall.h>
> (which is just an old version from kfreebsd) with up-to-date version in
> kfreebsd-kernel-headers.
This is not wanted anymore, as there are now more modifications than
only adding header protection.
Closing the bug.
--
.''`. Aurelien Jarno | GPG: 1024D/F1BCDB73
: :' : Debian developer | Electrical Engineer
`. `' [EMAIL PROTECTED] | [EMAIL PROTECTED]
`- people.debian.org/~aurel32 | www.aurel32.net
--- End Message ---