public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-cdr/dvd+rw-tools/files: dvd+rw-tools-7.0-limits.patch
@ 2007-10-26  9:32 Roy Marples (uberlord)
  0 siblings, 0 replies; 2+ messages in thread
From: Roy Marples (uberlord) @ 2007-10-26  9:32 UTC (permalink / raw
  To: gentoo-commits

uberlord    07/10/26 09:32:14

  Added:                dvd+rw-tools-7.0-limits.patch
  Log:
  Include limits.h to compile against newer headers, #195912 thanks to Sedorox
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.1                  app-cdr/dvd+rw-tools/files/dvd+rw-tools-7.0-limits.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/dvd+rw-tools/files/dvd+rw-tools-7.0-limits.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/dvd+rw-tools/files/dvd+rw-tools-7.0-limits.patch?rev=1.1&content-type=text/plain

Index: dvd+rw-tools-7.0-limits.patch
===================================================================
diff -urNd dvd+rw-tools-7.0/dvd+rw-booktype.cpp dvd+rw-tools-7.0-changed/dvd+rw-booktype.cpp
--- dvd+rw-tools-7.0/dvd+rw-booktype.cpp	2006-06-24 05:21:48.000000000 -0400
+++ dvd+rw-tools-7.0-changed/dvd+rw-booktype.cpp	2007-10-19 23:40:25.000000000 -0400
@@ -27,7 +27,7 @@
 EOS
 exit
 #endif
-
+#include <limits.h>
 #include <stdio.h>
 #include <stddef.h>
 #include <stdlib.h>
diff -urNd dvd+rw-tools-7.0/dvd+rw-format.cpp dvd+rw-tools-7.0-changed/dvd+rw-format.cpp
--- dvd+rw-tools-7.0/dvd+rw-format.cpp	2006-09-18 07:41:13.000000000 -0400
+++ dvd+rw-tools-7.0-changed/dvd+rw-format.cpp	2007-10-19 23:40:50.000000000 -0400
@@ -70,7 +70,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-
+#include <limits.h>
 #if defined(__unix) || defined(__unix__)
 #include <sys/types.h>
 #include <sys/stat.h>
diff -urNd dvd+rw-tools-7.0/dvd+rw-mediainfo.cpp dvd+rw-tools-7.0-changed/dvd+rw-mediainfo.cpp
--- dvd+rw-tools-7.0/dvd+rw-mediainfo.cpp	2006-09-23 13:46:57.000000000 -0400
+++ dvd+rw-tools-7.0-changed/dvd+rw-mediainfo.cpp	2007-10-19 23:40:58.000000000 -0400
@@ -3,7 +3,7 @@
  *
  * This code is in public domain.
  */
-
+#include <limits.h>
 #include <stdio.h>
 #include <stddef.h>
 #include <stdlib.h>
diff -urNd dvd+rw-tools-7.0/dvd-ram-control.cpp dvd+rw-tools-7.0-changed/dvd-ram-control.cpp
--- dvd+rw-tools-7.0/dvd-ram-control.cpp	2004-07-08 07:05:56.000000000 -0400
+++ dvd+rw-tools-7.0-changed/dvd-ram-control.cpp	2007-10-19 23:42:01.000000000 -0400
@@ -1,3 +1,4 @@
+#include <limits.h>
 #include "transport.hxx"
 
 int main (int argc,char *argv[])
diff -urNd dvd+rw-tools-7.0/growisofs.c dvd+rw-tools-7.0-changed/growisofs.c
--- dvd+rw-tools-7.0/growisofs.c	2006-09-24 13:28:53.000000000 -0400
+++ dvd+rw-tools-7.0-changed/growisofs.c	2007-10-19 23:41:28.000000000 -0400
@@ -558,8 +558,8 @@
 \f
 \f
 #if defined(__linux)
-
 #include <linux/types.h>
+#include <limits.h>
 #include <linux/cdrom.h>
 #include <sys/ioctl.h>
 #include <sys/prctl.h>
diff -urNd dvd+rw-tools-7.0/growisofs_mmc.cpp dvd+rw-tools-7.0-changed/growisofs_mmc.cpp
--- dvd+rw-tools-7.0/growisofs_mmc.cpp	2006-09-23 08:45:49.000000000 -0400
+++ dvd+rw-tools-7.0-changed/growisofs_mmc.cpp	2007-10-19 23:41:39.000000000 -0400
@@ -13,7 +13,7 @@
 #define _GNU_SOURCE
 #endif
 #endif
-
+#include <limits.h>
 #include "transport.hxx"
 
 #include <time.h>



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-cdr/dvd+rw-tools/files: dvd+rw-tools-7.0-limits.patch
@ 2007-11-12  6:52 Mike Frysinger (vapier)
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2007-11-12  6:52 UTC (permalink / raw
  To: gentoo-commits

vapier      07/11/12 06:52:08

  Removed:              dvd+rw-tools-7.0-limits.patch
  Log:
  Do not patch sources to use limits.h, fix linux-headers instead.
  (Portage version: 2.1.3.19)
-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-11-12  6:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-26  9:32 [gentoo-commits] gentoo-x86 commit in app-cdr/dvd+rw-tools/files: dvd+rw-tools-7.0-limits.patch Roy Marples (uberlord)
  -- strict thread matches above, loose matches on Subject: below --
2007-11-12  6:52 Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox