mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Upgrade to version 10.4.5.
Feature safe: yes
This commit is contained in:
parent
0a7059d585
commit
55cd705d8a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307625
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= newlisp
|
||||
PORTVERSION= 10.4.4
|
||||
PORTVERSION= 10.4.5
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://www.newlisp.org/downloads/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (newlisp-10.4.4.tgz) = 90022b048f55d084aa472d544913d2ab7e528dbe5ee050839c01f7267db81a96
|
||||
SIZE (newlisp-10.4.4.tgz) = 1551410
|
||||
SHA256 (newlisp-10.4.5.tgz) = 4bf972a8e5f8c4490f02e6a987ee76c4690498841ffd5235b38a03694ad2da52
|
||||
SIZE (newlisp-10.4.5.tgz) = 1553279
|
||||
|
@ -3,12 +3,12 @@ $FreeBSD$
|
||||
|
||||
--- newlisp.c.orig
|
||||
+++ newlisp.c
|
||||
@@ -470,16 +470,16 @@
|
||||
@@ -463,16 +463,16 @@
|
||||
else if(getenv("DOCUMENT_ROOT"))
|
||||
strncpy(initFile, getenv("DOCUMENT_ROOT"), MAX_LINE - 16);
|
||||
|
||||
/* for non BSDs strlcat and strlcpy are redefined as strncat and strncpy */
|
||||
- strlcat(initFile, "/.", 3);
|
||||
- strlcat(initFile, INIT_FILE, 9);
|
||||
- strncat(initFile, "/.", 2);
|
||||
- strncat(initFile, INIT_FILE, 9);
|
||||
+ strlcat(initFile, "/.", sizeof(initFile));
|
||||
+ strlcat(initFile, INIT_FILE, sizeof(initFile));
|
||||
if(loadFile(initFile, 0, 0, mainContext) == NULL)
|
||||
@ -16,9 +16,9 @@ $FreeBSD$
|
||||
envPtr = getenv("NEWLISPDIR");
|
||||
if(envPtr)
|
||||
{
|
||||
- strlcpy(initFile, envPtr, MAX_LINE - 16);
|
||||
- strlcat(initFile, "/", 2);
|
||||
- strlcat(initFile, INIT_FILE, 9);
|
||||
- strncpy(initFile, envPtr, MAX_LINE - 16);
|
||||
- strncat(initFile, "/", 1);
|
||||
- strncat(initFile, INIT_FILE, 9);
|
||||
+ strlcpy(initFile, envPtr, sizeof(initFile));
|
||||
+ strlcat(initFile, "/", sizeof(initFile));
|
||||
+ strlcat(initFile, INIT_FILE, sizeof(initFile));
|
||||
|
@ -8,7 +8,7 @@ bin/newlispdoc
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ExpressionEvaluation.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/MemoryManagement.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/manual_frame.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newLISP-10.4.4-Release.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newLISP-10.4.5-Release.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newLISPdoc.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newlisp_index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/newlisp_manual.html
|
||||
|
Loading…
Reference in New Issue
Block a user