aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2014-07-01 17:30:17 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2014-07-01 17:30:17 +0000
commit8ea505063eccd62759a429921f66c6e3ed491710 (patch)
treeb4f77d4428e649cb0d53c2928d36fbc22de48aa6 /editors
parent29f4310729f33ef8835a33d2cb6fc66f51ec3afd (diff)
downloadports-8ea505063eccd62759a429921f66c6e3ed491710.tar.gz
ports-8ea505063eccd62759a429921f66c6e3ed491710.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.
Notes
Notes: svn path=/head/; revision=360060
Diffstat (limited to 'editors')
-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
- {