summaryrefslogtreecommitdiffstats
path: root/testing/rpm/rpm-uclibc.patch
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2012-12-18 05:30:14 -0600
committerWilliam Pitcock <nenolod@dereferenced.org>2012-12-18 05:30:14 -0600
commit70da3b600b308f6623872635b66fd88c2c5d6965 (patch)
tree465cbc91b24837a979f04d91b11cd8bd32235816 /testing/rpm/rpm-uclibc.patch
parent5c1ef1a5585888bff525a4d89eeb7f4bf8c29e45 (diff)
downloadaports-70da3b600b308f6623872635b66fd88c2c5d6965.tar.bz2
aports-70da3b600b308f6623872635b66fd88c2c5d6965.tar.xz
testing/rpm: new aport
Diffstat (limited to 'testing/rpm/rpm-uclibc.patch')
-rw-r--r--testing/rpm/rpm-uclibc.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/rpm/rpm-uclibc.patch b/testing/rpm/rpm-uclibc.patch
new file mode 100644
index 000000000..0d07345c6
--- /dev/null
+++ b/testing/rpm/rpm-uclibc.patch
@@ -0,0 +1,30 @@
+--- rpm-4.10.2.orig/misc/fts.c
++++ rpm-4.10.2/misc/fts.c
+@@ -42,6 +42,11 @@
+ #include <string.h>
+ #include <unistd.h>
+ #else
++#include "system.h"
++#include <stdlib.h>
++#include <string.h>
++#include <errno.h>
++#include "misc/fts.h"
+ #if defined(hpux)
+ # define _INCLUDE_POSIX_SOURCE
+ # define __errno_location() (&errno)
+@@ -61,11 +66,10 @@
+ # define _STAT_VER 0
+ # define __fxstat64(_stat_ver, _fd, _sbp) fstat64((_fd), (_sbp))
+ #endif
+-#include "system.h"
+-#include <stdlib.h>
+-#include <string.h>
+-#include <errno.h>
+-#include "misc/fts.h"
++#if defined(__UCLIBC__)
++# define _STAT_VER 0
++# define __fxstat64(_stat_ver, _fd, _sbp) fstat64((_fd), (_sbp))
++#endif
+ # define __set_errno(val) (*__errno_location ()) = (val)
+ # define __open open
+ # define __close close