View | Details | Raw Unified | Return to bug 217582
Collapse All | Expand All

(-)lang/fpc/Makefile (-3 / +8 lines)
Lines 21-26 DIST_SUBDIR= freepascal Link Here
21
MAINTAINER?=	acm@FreeBSD.org
21
MAINTAINER?=	acm@FreeBSD.org
22
COMMENT?=	Free Pascal compiler with Turbo and Delphi
22
COMMENT?=	Free Pascal compiler with Turbo and Delphi
23
23
24
# lld gives "invalid alignment of section headers"
25
LLD_UNSAFE=	yes
26
# Need this because fpc just uses the first "ld" it
27
# finds in the path.
28
BINARY_ALIAS=	ld=ld.bfd
29
24
USES=		gmake iconv
30
USES=		gmake iconv
25
ONLY_FOR_ARCHS=	i386 amd64
31
ONLY_FOR_ARCHS=	i386 amd64
26
BOOTVER=	3.0.4
32
BOOTVER=	3.0.4
Lines 36-47 FPCSRCDIR= ${PORTNAME}-${PORTVERSION} Link Here
36
.if ${ARCH} == "i386"
42
.if ${ARCH} == "i386"
37
PPNAME=		ppc386
43
PPNAME=		ppc386
38
FPC_ARCH=	i386
44
FPC_ARCH=	i386
39
PLIST_SUB=	FPC_I386="" \
45
PLIST_SUB+=	FPC_I386="" \
40
		FPC_AMD64="@comment "
46
		FPC_AMD64="@comment "
41
.elif ${ARCH} == "amd64"
47
.elif ${ARCH} == "amd64"
42
PPNAME=		ppcx64
48
PPNAME=		ppcx64
43
FPC_ARCH=	x86_64
49
FPC_ARCH=	x86_64
44
PLIST_SUB=	FPC_I386="@comment " \
50
PLIST_SUB+=	FPC_I386="@comment " \
45
		FPC_AMD64=""
51
		FPC_AMD64=""
46
.endif
52
.endif
47
53
48
- 

Return to bug 217582