forked from pfsense/FreeBSD-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not coredump when viewing files larger that 8Mb.
Bump PORTREVISION Minor cosmetic fixes in the Makefile. Submitted by: Pavel Biryukov <[email protected]>
- Loading branch information
Dmitry Sivachenko
authored and
Dmitry Sivachenko
committed
Aug 16, 2001
1 parent
a91db81
commit 306fed2
Showing
2 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,20 @@ | |
# $FreeBSD$ | ||
# | ||
|
||
PORTNAME= deco | ||
PORTVERSION= 3.8.3 | ||
CATEGORIES= misc | ||
MASTER_SITES= ftp://ftp.cronyx.ru/cronyx/deco/ | ||
DISTNAME= deco383 | ||
EXTRACT_SUFX= .tgz | ||
PORTNAME= deco | ||
PORTVERSION= 3.8.3 | ||
PORTREVISION= 1 | ||
CATEGORIES= misc | ||
MASTER_SITES= ftp://ftp.cronyx.ru/cronyx/deco/ | ||
DISTNAME= deco383 | ||
EXTRACT_SUFX= .tgz | ||
|
||
MAINTAINER= [email protected] | ||
|
||
WRKSRC= ${WRKDIR}/deco383 | ||
GNU_CONFIGURE= yes | ||
CONFIGURE_ARGS= --libdir=${PREFIX}/share | ||
CONFIGURE_ENV= ac_cv_lib_ncurses_tgetent=no | ||
MAN1= deco.1 deco-r.1 | ||
WRKSRC= ${WRKDIR}/deco383 | ||
GNU_CONFIGURE= yes | ||
CONFIGURE_ARGS= --libdir=${PREFIX}/share | ||
CONFIGURE_ENV= ac_cv_lib_ncurses_tgetent=no | ||
MAN1= deco.1 deco-r.1 | ||
|
||
.include <bsd.port.mk> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- rec.c.orig Thu Aug 16 17:29:07 2001 | ||
+++ rec.c Thu Aug 16 17:29:35 2001 | ||
@@ -61,7 +61,7 @@ | ||
static char *scanbuf, *pbuf; | ||
static char *tfilename; | ||
static int eoln; | ||
-static int MAXLEN = ((unsigned int) (int) -1 >> 1) / sizeof (struct index); | ||
+static int MAXLEN = 32767; | ||
|
||
static int ffcopy (int from, int to) | ||
{ |