summaryrefslogtreecommitdiff
path: root/editors/libreoffice/files/patch-configure
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2012-08-23 16:00:36 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2012-08-23 16:00:36 +0000
commitf7c42ea5b16a4fd1776bcd5bce2c5592cfcd0b2d (patch)
tree2024e6847f2494fb5b4cf0e0c84281e3a86d9439 /editors/libreoffice/files/patch-configure
parentR Unit test framework R functions implementing a standard Unit Testing (diff)
- Update to 3.5.6.
- Use system mdds. - Fix build with the recent Clang (CURRENT). - Enable visibility for recent Clang (9.1 and CURRENT). - Attempt to fix build on 7.x and 8.x (not tested).
Notes
Notes: svn path=/head/; revision=303028
Diffstat (limited to 'editors/libreoffice/files/patch-configure')
-rw-r--r--editors/libreoffice/files/patch-configure18
1 files changed, 18 insertions, 0 deletions
diff --git a/editors/libreoffice/files/patch-configure b/editors/libreoffice/files/patch-configure
new file mode 100644
index 000000000000..f105b8bb0056
--- /dev/null
+++ b/editors/libreoffice/files/patch-configure
@@ -0,0 +1,18 @@
+--- ./configure.orig 2012-07-03 07:01:28.000000000 -0400
++++ ./configure 2012-08-17 14:41:37.000000000 -0400
+@@ -25612,11 +25612,13 @@
+ { $as_echo "$as_me:$LINENO: checking which hash container mdds shall use" >&5
+ $as_echo_n "checking which hash container mdds shall use... " >&6; }
+ if test "x$HAVE_CXX0X" = "xTRUE"; then
+- MDDS_CPPFLAGS="-std=c++0x"
++ MDDS_CPPFLAGS="-std=gnu++0x"
++ fi
++ if test "x`basename $GXX_INCLUDE_PATH 2>/dev/null`" != "x4.2"; then
+ { $as_echo "$as_me:$LINENO: result: std::unordered_map" >&5
+ $as_echo "std::unordered_map" >&6; }
+ else
+- MDDS_CPPFLAGS="-DMDDS_HASH_CONTAINER_BOOST"
++ MDDS_CPPFLAGS="$MDDS_CPPFLAGS -DMDDS_HASH_CONTAINER_BOOST"
+ { $as_echo "$as_me:$LINENO: result: boost::unordered_map" >&5
+ $as_echo "boost::unordered_map" >&6; }
+ fi