tgt_1.0.12.bb: Fix build on uclibc
authorKhem Raj <raj.khem@gmail.com>
Sun, 16 Jan 2011 00:37:19 +0000 (16:37 -0800)
committerKhem Raj <raj.khem@gmail.com>
Sun, 16 Jan 2011 00:37:19 +0000 (16:37 -0800)
* Uclibc does not provide posix_fallocate so use ftruncate

Signed-off-by: Khem Raj <raj.khem@gmail.com>
recipes/tgt/tgt-1.0.12/use-ftruncate-on-uclibc.patch [new file with mode: 0644]
recipes/tgt/tgt_1.0.12.bb

diff --git a/recipes/tgt/tgt-1.0.12/use-ftruncate-on-uclibc.patch b/recipes/tgt/tgt-1.0.12/use-ftruncate-on-uclibc.patch
new file mode 100644 (file)
index 0000000..e9b6e38
--- /dev/null
@@ -0,0 +1,18 @@
+Index: tgt-1.0.12/usr/tgtimg.c
+===================================================================
+--- tgt-1.0.12.orig/usr/tgtimg.c       2011-01-15 16:28:30.488656000 -0800
++++ tgt-1.0.12/usr/tgtimg.c    2011-01-15 16:35:14.958656001 -0800
+@@ -438,8 +438,13 @@
+                       perror("Failed creating file");
+                       exit(2);
+               }
++#ifndef __UCLIBC__
+               if (posix_fallocate(fd, 0, size*1024*1024LL) == -1) {
+                       perror("posix_fallocate failed.");
++#else
++              if (ftruncate (fd, size*1024*1024LL) == -1) {
++                      perror("ftruncate failed.");
++#endif
+                       exit(3);
+               }
index abba317..0288b16 100644 (file)
@@ -3,9 +3,11 @@ HOMEPAGE = "http://stgt.berlios.de/"
 LICENSE = "GPLv2"
 DEPENDS = "openssl"
 RDEPENDS_${PN} = "iscsi-target"
-PR = "r0"
+PR = "r1"
 
-SRC_URI = "http://stgt.berlios.de/releases/tgt-${PV}.tar.gz"
+SRC_URI = "http://stgt.berlios.de/releases/tgt-${PV}.tar.gz \
+          file://use-ftruncate-on-uclibc.patch \
+         "
 SRC_URI[md5sum] = "d3bc4098d0ec6f4418e574ea7fdd18eb"
 SRC_URI[sha256sum] = "4d90567997e16194b86cc3ab0a55c7aa5c5054681176b60c6635b20a1feaffe2"