summaryrefslogtreecommitdiff
path: root/bridges/inc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-01-02 12:43:13 +0200
committerTor Lillqvist <tml@collabora.com>2015-01-02 12:49:39 +0200
commit0478c43bef0510e3bfedc0f836e3a95635e0d391 (patch)
tree5e35a1f8b8df2307b54c95524814fc8dfdfa3a1f /bridges/inc
parent4d3b725000e537ce6199f0abd1c80580c9bf95c8 (diff)
No need for USE_DOUBLE_MMAP on OS X
I had introduced it with d83de4b1a93ba7ed7bc3243073be3de96a44bfa9 in 2012, when the C++/UNO bridge for 64-bit OS X was created mostly as a copy of the Linux one. Stephan says that the only need for USE_DOUBLE_MMAP should be on SELinux anyway, so most likely also its use for the various BSDs and Android are copypasta or cargo cult. Change-Id: I1c16e830e5e8269b78b14837a9127a98612a6e54
Diffstat (limited to 'bridges/inc')
-rw-r--r--bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx b/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
index 5b4b06b4e03c..1e9a48876a10 100644
--- a/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
+++ b/bridges/inc/bridges/cpp_uno/shared/vtablefactory.hxx
@@ -30,8 +30,7 @@
/*See: http://people.redhat.com/drepper/selinux-mem.html*/
#if defined(LINUX) || defined(OPENBSD) || defined(FREEBSD) \
- || defined(NETBSD) || defined(DRAGONFLY) || defined (ANDROID) \
- || (defined(MACOSX) && defined(__LP64__))
+ || defined(NETBSD) || defined(DRAGONFLY) || defined (ANDROID)
#define USE_DOUBLE_MMAP
#endif