diff options
author | Michael Banck <mbanck@debian.org> | 2006-08-25 18:50:10 +0000 |
---|---|---|
committer | Michael Banck <mbanck@debian.org> | 2006-08-25 18:50:10 +0000 |
commit | 30dbdb680f7f95968bf1e8d463c4a7638f8cef86 (patch) | |
tree | 65ab162f7093a866365073860e828f8a1f8fa490 /debian/patches/libstore_attribute.patch | |
parent | 389bf6b8af8622f5342e09d752fd171210dc5f0e (diff) |
* New snapshot from CVS.
* debian/patches/beta_make.patch: Removed, fixed upstream.
* debian/patches/ext2fs_large_stores.patch: Resynced.
* debian/patches/pfinet_dhcp.patch: Likewise.
* debian/patches/ftpfs_fix.patch: Removed, applied upstream.
* debian/patches/gcc-4.0_fixes.patch: Likewise.
* debian/patches/libpthread_need_clockid_t.patch: Likewise.
* debian/patches/libstore_attribute.patch: Likewise.
* debian/patches/magic_port_leak.patch: Likewise.
* debian/patches/pfinet_packet_filter.diff: Likewise.
* debian/patches/semaphore_restrict_fix.patch: Likewise.
Diffstat (limited to 'debian/patches/libstore_attribute.patch')
-rw-r--r-- | debian/patches/libstore_attribute.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/patches/libstore_attribute.patch b/debian/patches/libstore_attribute.patch deleted file mode 100644 index b052514c..00000000 --- a/debian/patches/libstore_attribute.patch +++ /dev/null @@ -1,29 +0,0 @@ -2005-09-24 Roland McGrath <roland@frob.com> - - * store.h (STORE_STD_CLASS): Use __attribute_used__ macro - instead of `unused' attribute. - -=================================================================== -RCS file: /cvsroot/hurd/cvsroot/hurd/hurd/libstore/store.h,v -retrieving revision 1.46 -retrieving revision 1.47 -diff -u -r1.46 -r1.47 ---- hurd/hurd/libstore/store.h 2004/09/07 21:35:45 1.46 -+++ hurd/hurd/libstore/store.h 2005/09/25 00:38:07 1.47 -@@ -1,6 +1,6 @@ - /* Store I/O - -- Copyright (C) 1995,96,97,98,99,2001,02,04 Free Software Foundation, Inc. -+ Copyright (C) 1995,96,97,98,99,2001,02,04,05 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.org> - This file is part of the GNU Hurd. - -@@ -627,7 +627,7 @@ - - #define STORE_STD_CLASS(name) \ - static const struct store_class *const store_std_classes_##name[] \ -- __attribute__ ((unused, section ("store_std_classes"))) \ -+ __attribute_used__ __attribute__ ((section ("store_std_classes"))) \ - = { &store_##name##_class } - - |