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.

115 lines
3.3 KiB

  1. --- ./Makefile.in.orig 2007-12-22 08:56:09.000000000 +0000
  2. +++ ./Makefile.in 2007-12-22 08:56:12.000000000 +0000
  3. @@ -14,7 +14,7 @@
  4. SUBDIRS=libbridge brctl doc
  5. all:
  6. - for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x ; done
  7. + for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x || exit 1; done
  8. clean:
  9. for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x clean ; done
  10. @@ -31,5 +31,5 @@
  11. rm -f doc/Makefile
  12. install:
  13. - for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x install; done
  14. + for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x install || exit 1; done
  15. --- ./brctl/brctl.c.orig 2007-12-22 09:01:44.000000000 +0000
  16. +++ ./brctl/brctl.c 2007-12-22 09:01:54.000000000 +0000
  17. @@ -16,6 +16,11 @@
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. +// blkcnt_t kernel include vs. libc include fix
  21. +#define blkcnt_t libc_blkcnt_t
  22. +#include <sys/types.h>
  23. +#undef blkcnt_t
  24. +
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. --- ./brctl/brctl_cmd.c.orig 2007-12-22 09:01:44.000000000 +0000
  29. +++ ./brctl/brctl_cmd.c 2007-12-22 09:01:58.000000000 +0000
  30. @@ -16,6 +16,11 @@
  31. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  32. */
  33. +// blkcnt_t kernel include vs. libc include fix
  34. +#define blkcnt_t libc_blkcnt_t
  35. +#include <sys/types.h>
  36. +#undef blkcnt_t
  37. +
  38. #include <stdio.h>
  39. #include <stdlib.h>
  40. #include <string.h>
  41. --- ./brctl/brctl_disp.c.orig 2007-12-22 09:01:44.000000000 +0000
  42. +++ ./brctl/brctl_disp.c 2007-12-22 09:02:02.000000000 +0000
  43. @@ -16,6 +16,11 @@
  44. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  45. */
  46. +// blkcnt_t kernel include vs. libc include fix
  47. +#define blkcnt_t libc_blkcnt_t
  48. +#include <sys/types.h>
  49. +#undef blkcnt_t
  50. +
  51. #include <stdio.h>
  52. #include <stdlib.h>
  53. #include <string.h>
  54. --- ./libbridge/libbridge_devif.c.orig 2007-12-22 08:59:44.000000000 +0000
  55. +++ ./libbridge/libbridge_devif.c 2007-12-22 09:00:45.000000000 +0000
  56. @@ -16,6 +16,10 @@
  57. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  58. */
  59. +// blkcnt_t kernel include vs. libc include fix
  60. +#define blkcnt_t libc_blkcnt_t
  61. +#include <sys/types.h>
  62. +#undef blkcnt_t
  63. #include <stdio.h>
  64. #include <stdlib.h>
  65. --- ./libbridge/libbridge_if.c.orig 2007-12-22 08:59:44.000000000 +0000
  66. +++ ./libbridge/libbridge_if.c 2007-12-22 09:00:50.000000000 +0000
  67. @@ -16,6 +16,11 @@
  68. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  69. */
  70. +// blkcnt_t kernel include vs. libc include fix
  71. +#define blkcnt_t libc_blkcnt_t
  72. +#include <sys/types.h>
  73. +#undef blkcnt_t
  74. +
  75. #include <stdio.h>
  76. #include <stdlib.h>
  77. #include <errno.h>
  78. --- ./libbridge/libbridge_init.c.orig 2007-12-22 08:59:44.000000000 +0000
  79. +++ ./libbridge/libbridge_init.c 2007-12-22 09:00:53.000000000 +0000
  80. @@ -16,6 +16,11 @@
  81. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  82. */
  83. +// blkcnt_t kernel include vs. libc include fix
  84. +#define blkcnt_t libc_blkcnt_t
  85. +#include <sys/types.h>
  86. +#undef blkcnt_t
  87. +
  88. #include <stdio.h>
  89. #include <stdlib.h>
  90. #include <unistd.h>
  91. --- ./libbridge/libbridge_misc.c.orig 2007-12-22 08:59:44.000000000 +0000
  92. +++ ./libbridge/libbridge_misc.c 2007-12-22 09:00:56.000000000 +0000
  93. @@ -16,6 +16,11 @@
  94. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  95. */
  96. +// blkcnt_t kernel include vs. libc include fix
  97. +#define blkcnt_t libc_blkcnt_t
  98. +#include <sys/types.h>
  99. +#undef blkcnt_t
  100. +
  101. #include <stdio.h>
  102. #include <stdlib.h>
  103. #include <string.h>