Merge pull request #2158 from pullmoll/gpart

gpart: unbreak musl
This commit is contained in:
Jürgen Buchmüller 2015-08-03 15:17:24 +02:00
commit 41f004fd97
2 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,13 @@
--- src/l64seek.h 2015-03-12 16:41:49.000000000 +0100
+++ src/l64seek.h 2015-08-03 15:02:33.656446144 +0200
@@ -20,6 +20,10 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
+#if !defined(__GLIBC__)
+#define loff_t off_t /* musl libc <fcntl.h> defines this for _GNU_SOURCE */
+#define daddr_t int /* __kernel_daddr_t defined in linux/asm-generic/posix_types.h */
+#endif
/*
* define a type 'off64_t' which is at least 64bit, and a

View file

@ -1,7 +1,7 @@
# Template file for 'gpart'
pkgname=gpart
version=0.2.2
revision=1
revision=2
build_style=gnu-configure
short_desc="Partition table rescue/guessing tool"
maintainer="Juan RP <xtraeme@voidlinux.eu>"