1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Fix build on AMD64

- Assign maintainership to submitter

PR:		ports/64649
Submitted by:	Chia-Hsing Yu <davidyu@speech.csie.ntu.edu.tw>
This commit is contained in:
Kirill Ponomarev 2004-03-24 22:47:20 +00:00
parent 7309106d1e
commit 60ea56ae4b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=105163
2 changed files with 17 additions and 7 deletions

View File

@ -9,24 +9,23 @@
PORTNAME= ex
PORTVERSION= 1.0.2
PORTREVISION= 1
PORTEPOCH= 0
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= ftp://ftp.ossp.org/pkg/lib/ex/
PKGNAMEPREFIX= ossp-
MAINTAINER= ports@FreeBSD.org
MAINTAINER= me@davidyu.org
COMMENT= OSSP ex is a small exception handling library for use in C
USE_GMAKE= yes
GNU_CONFIGURE= yes
GNU_CONFIGURE= yes
USE_LIBTOOL_VER= 13
INSTALLS_SHLIB= yes
INSTALLS_SHLIB= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha" || ${ARCH} == "amd64"
BROKEN= "Does not compile on alpha or amd64"
.if ${ARCH} == "alpha"
BROKEN= "Does not compile on alpha"
.endif
.include "${FILESDIR}/manpages.mk"

View File

@ -0,0 +1,11 @@
--- ts.c.orig Wed Mar 24 17:36:35 2004
+++ ts.c Wed Mar 24 17:36:49 2004
@@ -202,7 +202,7 @@
if (format == NULL || ap == NULL)
return NULL;
- ap2 = ap;
+ va_copy(ap2, ap);
if ((n = ts_suite_mvxprintf(NULL, 0, format, ap)) == -1)
return NULL;
if ((buffer = (char *)malloc(n+1)) == NULL)