diff options
author | Steve Kenton <skenton@ou.edu> | 2015-03-17 13:57:38 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-03-17 23:08:31 +0100 |
commit | 695d7b987d4d4ba91fa52f0d366b51d8dba44ebe (patch) | |
tree | f8472cb97ff3328c6661ed63c808c758fe4b02ba /package/dvdrw-tools/0001-limits.h.patch | |
parent | f8cd961f5fc5444dc645b6b6d324d45c0ca221c6 (diff) | |
download | buildroot-695d7b987d4d4ba91fa52f0d366b51d8dba44ebe.tar.gz buildroot-695d7b987d4d4ba91fa52f0d366b51d8dba44ebe.zip |
dvdrw-tools: new package
The dvd+rw-tools are used to master Blu-ray Disc and DVD Disc media,
both +RW/+R and -RW/-R. Note: The +RW in the name is a historical
artifact. This package contains the widely used growisofs program.
[Thomas:
- adjust minor formatting issues in Config.in file.
- remove unneeded empty line in hash file.
- make the mkisofs symbolic link a relative one.]
Signed-off-by: Steve Kenton <skenton@ou.edu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/dvdrw-tools/0001-limits.h.patch')
-rw-r--r-- | package/dvdrw-tools/0001-limits.h.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/package/dvdrw-tools/0001-limits.h.patch b/package/dvdrw-tools/0001-limits.h.patch new file mode 100644 index 0000000000..ccda8eeb72 --- /dev/null +++ b/package/dvdrw-tools/0001-limits.h.patch @@ -0,0 +1,23 @@ +transport.hxx: add limits.h include now needed because of kernel changes + +Signed-off-by: Steve Kenton <skenton@ou.edu> + +diff -pruN dvd+rw-tools-7.1.ori/transport.hxx dvd+rw-tools-7.1/transport.hxx +--- dvd+rw-tools-7.1.ori/transport.hxx 2008-03-01 04:34:43.000000000 -0600 ++++ dvd+rw-tools-7.1/transport.hxx 2015-01-18 15:47:24.245863631 -0600 +@@ -9,6 +9,7 @@ + #if defined(__unix) || defined(__unix__) + #include <stdio.h> + #include <stdlib.h> ++#include <limits.h> + #include <unistd.h> + #include <string.h> + #include <sys/types.h> +@@ -40,6 +41,7 @@ inline long getmsecs() + #include <stddef.h> + #include <stdio.h> + #include <stdlib.h> ++#include <limits.h> + #define ssize_t LONG_PTR + #define off64_t __int64 + |