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

(-)ports/Mk/bsd.gcc.mk (+5 lines)
Lines 106-111 Link Here
106
MAKE_ENV+=		F77="${F77}" FC="${FC}" FFLAGS="${FFLAGS}"
106
MAKE_ENV+=		F77="${F77}" FC="${FC}" FFLAGS="${FFLAGS}"
107
.endif
107
.endif
108
108
109
.if defined(USE_GCC_BUILD) && !defined(USE_GCC)
110
USE_GCC=	${USE_GCC_BUILD}
111
.endif
109
112
110
.if defined(USE_GCC)
113
.if defined(USE_GCC)
111
114
Lines 200-206 Link Here
200
.if defined(_GCC_BUILD_DEPENDS)
203
.if defined(_GCC_BUILD_DEPENDS)
201
BUILD_DEPENDS+=	${_GCC_PORT_DEPENDS}:${PORTSDIR}/lang/${_GCC_BUILD_DEPENDS}
204
BUILD_DEPENDS+=	${_GCC_PORT_DEPENDS}:${PORTSDIR}/lang/${_GCC_BUILD_DEPENDS}
202
. if ${_USE_GCC} != 3.4
205
. if ${_USE_GCC} != 3.4
206
.  if !defined(USE_GCC_BUILD)
203
RUN_DEPENDS+=	${_GCC_PORT_DEPENDS}:${PORTSDIR}/lang/${_GCC_BUILD_DEPENDS}
207
RUN_DEPENDS+=	${_GCC_PORT_DEPENDS}:${PORTSDIR}/lang/${_GCC_BUILD_DEPENDS}
208
.  endif
204
.  if ${_USE_GCC} != 4.2
209
.  if ${_USE_GCC} != 4.2
205
# Later GCC ports already depend on binutils; make sure whatever we
210
# Later GCC ports already depend on binutils; make sure whatever we
206
# build leverages this as well.
211
# build leverages this as well.
(-)ports/Mk/bsd.port.mk (-1 / +3 lines)
Lines 311-316 Link Here
311
#				  the regular expression.
311
#				  the regular expression.
312
# USE_GCC		- If set, this port requires this version of gcc, either in
312
# USE_GCC		- If set, this port requires this version of gcc, either in
313
#				  the system or installed from a port.
313
#				  the system or installed from a port.
314
# USE_GCC_BUILD		- If set, this port builds using this version of gcc,
315
#				  but adds no runtime dependency.
314
# USE_CSTD		- Override the default C language standard (gnu89, gnu99)
316
# USE_CSTD		- Override the default C language standard (gnu89, gnu99)
315
# USE_BINUTILS	- Use binutils suite from port instead of the version in base.
317
# USE_BINUTILS	- Use binutils suite from port instead of the version in base.
316
# USE_GMAKE		- If set, this port uses gmake.
318
# USE_GMAKE		- If set, this port uses gmake.
Lines 1744-1750 Link Here
1744
CONFIGURE_ENV+=	MAKE=${GMAKE}
1746
CONFIGURE_ENV+=	MAKE=${GMAKE}
1745
.endif
1747
.endif
1746
1748
1747
.if defined(USE_GCC) || defined(USE_FORTRAN)
1749
.if defined(USE_GCC) || defined(USE_GCC_BUILD) || defined(USE_FORTRAN)
1748
.include "${PORTSDIR}/Mk/bsd.gcc.mk"
1750
.include "${PORTSDIR}/Mk/bsd.gcc.mk"
1749
.endif
1751
.endif

Return to bug 155408