FreeBSD Bugzilla – Attachment 205223 Details for
Bug 238712
editors/nvi-devel: Fix DB_CREATE error and segmentation fault
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
patch
patch.txt (text/plain), 1.71 KB, created by
Craig Leres
on 2019-06-19 23:35:25 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Craig Leres
Created:
2019-06-19 23:35:25 UTC
Size:
1.71 KB
patch
obsolete
>Index: editors/nvi-devel/Makefile >=================================================================== >--- editors/nvi-devel/Makefile (revision 504534) >+++ editors/nvi-devel/Makefile (working copy) >@@ -3,7 +3,7 @@ > > PORTNAME= nvi > PORTVERSION= 1.81.6 >-PORTREVISION= 12 >+PORTREVISION= 13 > CATEGORIES= editors > MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/nvi/ > >Index: editors/nvi-devel/files/patch-common__db.h >=================================================================== >--- editors/nvi-devel/files/patch-common__db.h (nonexistent) >+++ editors/nvi-devel/files/patch-common__db.h (working copy) >@@ -0,0 +1,16 @@ >+https://github.com/handyman5/homebrew/commit/05b62a22b545761870fb1046d1c2c49cdba06b38 >+https://trac.macports.org/export/108622/trunk/dports/editors/nvi/files/patch-common__db.h >+--- ../common/db.h.orig 2009-09-13 23:17:35.000000000 -0700 >++++ ../common/db.h 2009-09-13 23:18:27.000000000 -0700 >+@@ -16,7 +16,10 @@ >+ (env)->remove(env, path, NULL, flags) >+ #endif >+ >+-#if DB_VERSION_MAJOR >= 4 && DB_VERSION_MINOR >= 1 >++#if DB_VERSION_MAJOR >= 4 && DB_VERSION_MINOR >= 4 >++#define db_open(db,file,type,flags,mode) \ >++ (db)->open(db, NULL, file, NULL, type, flags | DB_CREATE, mode) >++#elif DB_VERSION_MAJOR >= 4 && DB_VERSION_MINOR >= 1 >+ #define db_open(db,file,type,flags,mode) \ >+ (db)->open(db, NULL, file, NULL, type, flags, mode) >+ #else > >Property changes on: editors/nvi-devel/files/patch-common__db.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
leres
:
maintainer-approval?
Actions:
View
Attachments on
bug 238712
: 205223