diff options
author | Richard Tollerton <rich.tollerton@ni.com> | 2014-07-16 13:58:03 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-19 00:08:58 +0100 |
commit | c71a1e1ce50de4a899c018e937e20b3a31123d0a (patch) | |
tree | cec666da3ab3a4cc01d58328fd5db215dc4bd3f2 /meta/site/common-mingw | |
parent | 6403cd034c1df7dc07c8073e000c63ba030a8ab1 (diff) | |
download | poky-c71a1e1ce50de4a899c018e937e20b3a31123d0a.tar.gz |
common-mingw: force ac_cv_func_mmap_fixed_mapped=no
The expat mingw build breaks because ix86-common defines
ac_cv_func_mmap_fixed_mapped=yes, causing the build to think that
mmap(), mman.h actually exist. Fix this by always forcing the variable
to "no", which configure would have concluded without such interference.
(From OE-Core rev: 9add830b85222b57774acc35539e678d9ca8efb2)
Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/site/common-mingw')
-rw-r--r-- | meta/site/common-mingw | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/site/common-mingw b/meta/site/common-mingw new file mode 100644 index 0000000000..f337c36e75 --- /dev/null +++ b/meta/site/common-mingw | |||
@@ -0,0 +1,2 @@ | |||
1 | # expat | ||
2 | ac_cv_func_mmap_fixed_mapped=no | ||