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:47 +0100 |
commit | 9add830b85222b57774acc35539e678d9ca8efb2 (patch) | |
tree | fcc979841f7f138b50ac0949636c3b9bb2e3b038 /meta/site | |
parent | d7adf8349a65da6f0fdd0f00e606e8bc27ce3f28 (diff) | |
download | openembedded-core-contrib-9add830b85222b57774acc35539e678d9ca8efb2.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.
Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/site')
-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 00000000000..f337c36e75d --- /dev/null +++ b/meta/site/common-mingw @@ -0,0 +1,2 @@ +# expat +ac_cv_func_mmap_fixed_mapped=no |