mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Turn off groff and gperf -- they will not compile with the in-tree Gcc 3.1.
This commit is contained in:
parent
2fe1eb28ab
commit
bd7ce31c9a
2 changed files with 13 additions and 3 deletions
|
|
@ -580,12 +580,15 @@ installmost:
|
|||
.if exists(${.CURDIR}/games) && !defined(NOGAMES)
|
||||
_strfile= games/fortune/strfile
|
||||
.endif
|
||||
.if ${CXX} != "c++"
|
||||
_cxx_consumers= gnu/usr.bin/gperf gnu/usr.bin/groff
|
||||
.endif
|
||||
|
||||
bootstrap-tools:
|
||||
.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \
|
||||
usr.bin/rpcgen usr.bin/xargs usr.bin/xinstall \
|
||||
usr.sbin/config usr.sbin/kbdcontrol \
|
||||
gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo
|
||||
${_cxx_consumers} gnu/usr.bin/texinfo
|
||||
cd ${.CURDIR}/${_tool}; \
|
||||
${MAKE} obj; \
|
||||
${MAKE} depend; \
|
||||
|
|
@ -660,6 +663,9 @@ cross-tools:
|
|||
hierarchy:
|
||||
cd ${.CURDIR}/etc; ${MAKE} distrib-dirs
|
||||
|
||||
.if ${CXX} == "c++"
|
||||
NO_CXX= yes
|
||||
.endif
|
||||
#
|
||||
# includes - possibly generate and install the include files.
|
||||
#
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
# $FreeBSD$
|
||||
|
||||
SUBDIR= awk bc binutils cpio dc dialog diff diff3 gperf \
|
||||
grep groff gzip man patch ptx rcs sdiff send-pr sort tar texinfo
|
||||
SUBDIR= awk bc binutils cpio dc dialog diff diff3 \
|
||||
grep gzip man patch ptx rcs sdiff send-pr sort tar texinfo
|
||||
|
||||
.if ${CXX:T} != "c++"
|
||||
SUBDIR+=gperf groff
|
||||
.endif
|
||||
|
||||
.if !defined(NO_CVS)
|
||||
SUBDIR+=cvs
|
||||
|
|
|
|||
Loading…
Reference in a new issue