diff options
author | jkim <jkim@FreeBSD.org> | 2014-07-02 01:30:17 +0800 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2014-07-02 01:30:17 +0800 |
commit | cc467d42cbb3ba4a757e1cce02e8454180bc28ce (patch) | |
tree | b4f77d4428e649cb0d53c2928d36fbc22de48aa6 /editors/libreoffice | |
parent | 4276c0868c8e9a29c266a8bed4063ac045ce9ad7 (diff) | |
download | freebsd-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/Makefile | 2 | ||||
-rw-r--r-- | editors/libreoffice/files/patch-connectivity__source__inc__dbase__dindexnode.hxx | 15 |
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 - { |