aboutsummaryrefslogtreecommitdiffstats
path: root/editors/libreoffice
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2014-07-02 01:30:17 +0800
committerjkim <jkim@FreeBSD.org>2014-07-02 01:30:17 +0800
commitcc467d42cbb3ba4a757e1cce02e8454180bc28ce (patch)
treeb4f77d4428e649cb0d53c2928d36fbc22de48aa6 /editors/libreoffice
parent4276c0868c8e9a29c266a8bed4063ac045ce9ad7 (diff)
downloadfreebsd-ports-gnome-cc467d42cbb3ba4a757e1cce02e8454180bc28ce.tar.gz
freebsd-ports-gnome-cc467d42cbb3ba4a757e1cce02e8454180bc28ce.tar.zst
freebsd-ports-gnome-cc467d42cbb3ba4a757e1cce02e8454180bc28ce.zip
Remove an unnecessary local patch. Originally, it was added to fix compiler
warnings and to improve performance. The compiler warnings were fixed some time in 4.1.x but the local patch remained for performance. Today I was notified by an upstream developer that it may have interoperability issues with other dBase III implementations because the original implementation had 512-byte fixed-size blocks. We better be safe than sorry.
Diffstat (limited to 'editors/libreoffice')
-rw-r--r--editors/libreoffice/Makefile2
-rw-r--r--editors/libreoffice/files/patch-connectivity__source__inc__dbase__dindexnode.hxx15
2 files changed, 1 insertions, 16 deletions
diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile
index d4d097c113a1..756417054f77 100644
--- a/editors/libreoffice/Makefile
+++ b/editors/libreoffice/Makefile
@@ -2,7 +2,7 @@
.include "${.CURDIR}/Makefile.common"
-PORTREVISION= 1
+PORTREVISION= 2
COMMENT= Full integrated office productivity suite
diff --git a/editors/libreoffice/files/patch-connectivity__source__inc__dbase__dindexnode.hxx b/editors/libreoffice/files/patch-connectivity__source__inc__dbase__dindexnode.hxx
deleted file mode 100644
index 32ef0e8ebe4a..000000000000
--- a/editors/libreoffice/files/patch-connectivity__source__inc__dbase__dindexnode.hxx
+++ /dev/null
@@ -1,15 +0,0 @@
---- connectivity/source/inc/dbase/dindexnode.hxx.orig 2013-12-11 01:11:21.000000000 +0900
-+++ connectivity/source/inc/dbase/dindexnode.hxx 2014-01-29 16:48:39.000000000 +0900
-@@ -26,7 +26,12 @@
- #include <tools/ref.hxx>
-
- #define NODE_NOTFOUND 0xFFFF
-+#ifdef __FreeBSD__
-+#include <sys/param.h>
-+#define DINDEX_PAGE_SIZE PAGE_SIZE
-+#else
- #define DINDEX_PAGE_SIZE 512
-+#endif
-
- namespace connectivity
- {