diff options
author | Romain Naour <romain.naour@openwide.fr> | 2013-12-29 23:06:19 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-12-31 00:08:33 +0100 |
commit | 5d24fd03aec2acd2594238f62e31e684e76fa5b9 (patch) | |
tree | d9e7b514f58169cb701734d8443c65be7ae31155 | |
parent | 02b31c6556b504c327d58e38055844ab9cae9bb3 (diff) | |
download | buildroot-5d24fd03aec2acd2594238f62e31e684e76fa5b9.tar.gz buildroot-5d24fd03aec2acd2594238f62e31e684e76fa5b9.zip |
xenomai: fix build failure when HAVE_OPEN64 is undefined
fixes: http://autobuild.buildroot.org/results/d59/d590be34637a4043c929ce615f9db504484be435/build-end.log
Upstream patch:
http://git.xenomai.org/xenomai-2.6.git/commit/?id=71345fe15f126ae3a596af309945d0af6edfbbbb
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/xenomai/xenomai-0002-posix-fix-build-failure-when-HAVE_OPEN64-is-undefine.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/xenomai/xenomai-0002-posix-fix-build-failure-when-HAVE_OPEN64-is-undefine.patch b/package/xenomai/xenomai-0002-posix-fix-build-failure-when-HAVE_OPEN64-is-undefine.patch new file mode 100644 index 0000000000..ce43676eaa --- /dev/null +++ b/package/xenomai/xenomai-0002-posix-fix-build-failure-when-HAVE_OPEN64-is-undefine.patch @@ -0,0 +1,30 @@ +From 71345fe15f126ae3a596af309945d0af6edfbbbb Mon Sep 17 00:00:00 2001 +From: Romain Naour <romain.naour@openwide.fr> +Date: Sun, 29 Dec 2013 18:00:25 +0100 +Subject: [PATCH 1/1] posix: fix build failure when HAVE_OPEN64 is undefined. + +fixes: http://autobuild.buildroot.org/results/d59/d590be34637a4043c929ce615f9db504484be435/build-end.log + +Signed-off-by: Romain Naour <romain.naour@openwide.fr> +--- + src/skins/posix/rtdm.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/skins/posix/rtdm.c b/src/skins/posix/rtdm.c +index 5840c64..d6c87dc 100644 +--- a/src/skins/posix/rtdm.c ++++ b/src/skins/posix/rtdm.c +@@ -107,8 +107,9 @@ int __wrap_open64(const char *path, int oflag, ...) + errno = EMFILE; + ret = -1; + } ++ } + #endif +- } else { ++ else { + errno = -ret; + ret = -1; + } +-- +1.8.1.4 + |