mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
586 B

  1. --- gnome-vfs-2.6.1.1/libgnomevfs/gnome-vfs-cdrom.c 2004-02-14 12:40:14.000000000 +0000
  2. +++ gnome-vfs-2.6.1.1/libgnomevfs/gnome-vfs-cdrom.c 2004-10-25 00:12:11.179072200 +0000
  3. @@ -36,6 +36,19 @@
  4. #include <libgnomevfs/gnome-vfs-i18n.h>
  5. #ifdef __linux__
  6. +
  7. +#ifdef __CHECKER__
  8. +#define __bitwise __attribute__((bitwise))
  9. +#else
  10. +#define __bitwise
  11. +#endif
  12. +#define __le16 __bitwise __u16
  13. +#define __be16 __bitwise __u16
  14. +#define __le32 __bitwise __u32
  15. +#define __be32 __bitwise __u32
  16. +#define __le64 __bitwise __u64
  17. +#define __be64 __bitwise __u64
  18. +
  19. #include <linux/cdrom.h>
  20. #endif