mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
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.
This commit is contained in:
parent
29f4310729
commit
8ea505063e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=360060
@ -2,7 +2,7 @@
|
||||
|
||||
.include "${.CURDIR}/Makefile.common"
|
||||
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
|
||||
COMMENT= Full integrated office productivity suite
|
||||
|
||||
|
@ -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
|
||||
{
|
Loading…
Reference in New Issue
Block a user