[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1877 - in glibc-package: branches/glibc-2.5/debian branches/glibc-2.5/debian/patches/kfreebsd trunk/debian trunk/debian/patches/kfreebsd



Author: aurel32
Date: 2006-11-04 23:23:29 +0100 (Sat, 04 Nov 2006)
New Revision: 1877

Modified:
   glibc-package/branches/glibc-2.5/debian/changelog
   glibc-package/branches/glibc-2.5/debian/patches/kfreebsd/local-sysdeps.diff
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
Log:
 * patches/kfreebsd/local-sysdeps.diff: update to revision 1703 (from
   glibc-bsd).



Modified: glibc-package/branches/glibc-2.5/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.5/debian/changelog	2006-11-04 22:18:54 UTC (rev 1876)
+++ glibc-package/branches/glibc-2.5/debian/changelog	2006-11-04 22:23:29 UTC (rev 1877)
@@ -238,6 +238,8 @@
   * debhelper.in/locales.prerm; debhelper.in/locales.prerm,
     debhelper.in/locales-all.prerm: fixed bad interactions between locales
     and locales-all.  Closes: #396354.
+  * patches/kfreebsd/local-sysdeps.diff: update to revision 1703 (from
+    glibc-bsd).
 
  -- Aurelien Jarno <aurel32@debian.org>  Sat,  4 Nov 2006 19:00:35 +0100
 

Modified: glibc-package/branches/glibc-2.5/debian/patches/kfreebsd/local-sysdeps.diff
===================================================================
--- glibc-package/branches/glibc-2.5/debian/patches/kfreebsd/local-sysdeps.diff	2006-11-04 22:18:54 UTC (rev 1876)
+++ glibc-package/branches/glibc-2.5/debian/patches/kfreebsd/local-sysdeps.diff	2006-11-04 22:23:29 UTC (rev 1877)
@@ -9413,8 +9413,8 @@
 +#define mc_eflags	mc_efl
 diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h
 --- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h	1970-01-01 01:00:00.000000000 +0100
-+++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h	2006-10-16 11:33:47.000000000 +0200
-@@ -0,0 +1,160 @@
++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h	2006-11-04 23:18:00.000000000 +0100
+@@ -0,0 +1,159 @@
 +/* Machine-dependent signal context structure for FreeBSD.  i386 version.
 +   Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -9518,7 +9518,7 @@
 +    union { int sc_eip; int eip; };		/* Instruction pointer.  */
 +    union { int sc_cs; int cs; };		/* Code segment register.  */
 +
-+    int sc_efl;					/* Processor flags.  */
++    union { int sc_efl; int eflags; }; 		/* Processor flags.  */
 +
 +    union { int sc_esp; int esp; };		/* This stack pointer is used.  */
 +    union { int sc_ss; int ss; };		/* Stack segment register.  */
@@ -9541,7 +9541,6 @@
 +#define sc_pc		sc_eip		/* Process counter.  */
 +#define sc_ps		sc_efl
 +#define sc_eflags	sc_efl
-+#define eflags		sc_efl		/* Linux-style name. */
 +
 +
 +/* Codes for SIGFPE.  */
@@ -20028,8 +20027,8 @@
 +
 diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h
 --- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h	1970-01-01 01:00:00.000000000 +0100
-+++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h	2006-10-16 11:34:03.000000000 +0200
-@@ -0,0 +1,161 @@
++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h	2006-11-04 23:18:00.000000000 +0100
+@@ -0,0 +1,160 @@
 +/* Machine-dependent signal context structure for FreeBSD.  i386 version.
 +   Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -20089,7 +20088,7 @@
 +    union { int sc_eip; int eip; };		/* Instruction pointer.  */
 +    union { int sc_cs; int cs; };		/* Code segment register.  */
 +
-+    int sc_efl;					/* Processor flags.  */
++    union { int sc_efl; int eflags; };		/* Processor flags.  */
 +
 +    union { int sc_esp; int esp; };		/* This stack pointer is used.  */
 +    union { int sc_ss; int ss; };		/* Stack segment register.  */
@@ -20112,7 +20111,6 @@
 +#define sc_pc		sc_eip		/* Process counter.  */
 +#define sc_ps		sc_efl
 +#define sc_eflags	sc_efl
-+#define eflags		sc_efl		/* Linux-style name. */
 +
 +
 +/* Codes for SIGFPE.  */

Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2006-11-04 22:18:54 UTC (rev 1876)
+++ glibc-package/trunk/debian/changelog	2006-11-04 22:23:29 UTC (rev 1877)
@@ -6,6 +6,8 @@
   * debhelper.in/locales.prerm; debhelper.in/locales.prerm,
     debhelper.in/locales-all.prerm: fixed bad interactions between locales
     and locales-all.  Closes: #396354.
+  * patches/kfreebsd/local-sysdeps.diff: update to revision 1703 (from
+    glibc-bsd).
 
  -- Aurelien Jarno <aurel32@debian.org>  Sat,  4 Nov 2006 19:00:35 +0100
 

Modified: glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff
===================================================================
--- glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff	2006-11-04 22:18:54 UTC (rev 1876)
+++ glibc-package/trunk/debian/patches/kfreebsd/local-sysdeps.diff	2006-11-04 22:23:29 UTC (rev 1877)
@@ -9099,8 +9099,8 @@
 +#define mc_eflags	mc_efl
 diff -x .svn -Nurd null/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h
 --- null/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h	1970-01-01 01:00:00.000000000 +0100
-+++ sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h	2006-01-22 22:10:19.000000000 +0100
-@@ -0,0 +1,160 @@
++++ sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h	2006-11-04 23:17:58.000000000 +0100
+@@ -0,0 +1,159 @@
 +/* Machine-dependent signal context structure for FreeBSD.  i386 version.
 +   Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -9204,7 +9204,7 @@
 +    union { int sc_eip; int eip; };		/* Instruction pointer.  */
 +    union { int sc_cs; int cs; };		/* Code segment register.  */
 +
-+    int sc_efl;					/* Processor flags.  */
++    union { int sc_efl; int eflags; }; 		/* Processor flags.  */
 +
 +    union { int sc_esp; int esp; };		/* This stack pointer is used.  */
 +    union { int sc_ss; int ss; };		/* Stack segment register.  */
@@ -9227,7 +9227,6 @@
 +#define sc_pc		sc_eip		/* Process counter.  */
 +#define sc_ps		sc_efl
 +#define sc_eflags	sc_efl
-+#define eflags		sc_efl		/* Linux-style name. */
 +
 +
 +/* Codes for SIGFPE.  */
@@ -19075,8 +19074,8 @@
 +
 diff -x .svn -Nurd null/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h
 --- null/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h	1970-01-01 01:00:00.000000000 +0100
-+++ sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h	2006-01-22 22:10:19.000000000 +0100
-@@ -0,0 +1,161 @@
++++ sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h	2006-11-04 23:17:59.000000000 +0100
+@@ -0,0 +1,160 @@
 +/* Machine-dependent signal context structure for FreeBSD.  i386 version.
 +   Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -19136,7 +19135,7 @@
 +    union { int sc_eip; int eip; };		/* Instruction pointer.  */
 +    union { int sc_cs; int cs; };		/* Code segment register.  */
 +
-+    int sc_efl;					/* Processor flags.  */
++    union { int sc_efl; int eflags; };		/* Processor flags.  */
 +
 +    union { int sc_esp; int esp; };		/* This stack pointer is used.  */
 +    union { int sc_ss; int ss; };		/* Stack segment register.  */
@@ -19159,7 +19158,6 @@
 +#define sc_pc		sc_eip		/* Process counter.  */
 +#define sc_ps		sc_efl
 +#define sc_eflags	sc_efl
-+#define eflags		sc_efl		/* Linux-style name. */
 +
 +
 +/* Codes for SIGFPE.  */



Reply to: