dosfstools/dosfstools-native 2.10: Fix for lib headers which don't pull in
authorJamie Lenehan <lenehan@twibble.org>
Wed, 12 Jul 2006 09:03:16 +0000 (09:03 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Wed, 12 Jul 2006 09:03:16 +0000 (09:03 +0000)
the types that dosfstools expects such as those provided with Fedora Core 4
and 5. The mkdsofs.c program is using types of the style __u8 which it
implictly gets via an include of linux/hdreg.h with some version of libc
headers. Explicity include linux/types.h to ensure we get those defines
directly. Resolves bug #1155.

packages/dosfstools/dosfstools-native_2.10.bb
packages/dosfstools/dosfstools_2.10.bb
packages/dosfstools/files/include-linux-types.patch [new file with mode: 0644]

index 78dde3e..01aaae6 100644 (file)
@@ -7,7 +7,7 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/dosfstools-${PV}"
 
 S="${WORKDIR}/dosfstools-${PV}"
 
-PR="r2"
+PR="r3"
 
 SRC_URI = "ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-${PV}.src.tar.gz \
        file://mkdosfs-bootcode.patch;patch=1 \
@@ -15,7 +15,8 @@ SRC_URI = "ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-${PV}
        file://alignment_hack.patch;patch=1 \
        file://dosfstools-2.10-kernel-2.6.patch;patch=1 \
        file://msdos_fat12_undefined.patch;patch=1 \
-       file://dosfstools-msdos_fs-types.patch;patch=1"
+       file://dosfstools-msdos_fs-types.patch;patch=1 \
+       file://include-linux-types.patch;patch=1"
 
 inherit native
 
index a683e48..ec06ae9 100644 (file)
@@ -9,12 +9,13 @@ SECTION = "base"
 PRIORITY = "optional"
 LICENSE = "GPL"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-${PV}.src.tar.gz \
           file://alignment_hack.patch;patch=1 \
           file://dosfstools-2.10-kernel-2.6.patch;patch=1 \
-           file://msdos_fat12_undefined.patch;patch=1"
+           file://msdos_fat12_undefined.patch;patch=1 \
+          file://include-linux-types.patch;patch=1"
 
 do_install () {
        oe_runmake "PREFIX=${D}" "SBINDIR=${D}${sbindir}" \
diff --git a/packages/dosfstools/files/include-linux-types.patch b/packages/dosfstools/files/include-linux-types.patch
new file mode 100644 (file)
index 0000000..4bbd4e7
--- /dev/null
@@ -0,0 +1,17 @@
+mkdsofs is using types of the style __u8, which it gets with some
+versions of libc headers via linux/hdreg.h including asm/types.h.
+Newer version of fedora (at least) have a hdreg.h whichdoes not
+include asm/types.h. To work around this patch mkdosfs.c to explicity
+include linux/types.h which will in turn pull in asm/types.h which
+defines these variables.
+
+--- dosfstools-2.10/mkdosfs/mkdosfs.c~ 2006-07-12 18:46:21.000000000 +1000
++++ dosfstools-2.10/mkdosfs/mkdosfs.c  2006-07-12 18:46:21.000000000 +1000
+@@ -60,6 +60,7 @@
+ #include "../version.h"
+ #include <fcntl.h>
++#include <linux/types.h>
+ #include <linux/hdreg.h>
+ #include <linux/fs.h>
+ #include <linux/fd.h>