diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2005-04-19 13:32:02 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2005-04-19 13:32:02 +0000 |
commit | 9b918cd056ea6bc2526b413d4009c14b5bd75edf (patch) | |
tree | cc1df1f16caa1fe48830ad8f5eb69abc6c8aedb3 /print | |
parent | Gcolor2 is a simple, standalone GTK+ 2.0 color selector. (diff) |
Remove -funroll-loops from CFLAGS silently because
dvipsk-tetex is not compatible with this option on 5.x.
Problem reported by: many
Diffstat (limited to 'print')
-rw-r--r-- | print/dvipsk-tetex/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/print/dvipsk-tetex/Makefile b/print/dvipsk-tetex/Makefile index 94be636ede51..21c1cfb19cb4 100644 --- a/print/dvipsk-tetex/Makefile +++ b/print/dvipsk-tetex/Makefile @@ -92,6 +92,9 @@ PKGINSTALL_SUB= PAPERSIZE=${PAPERSIZE} \ TEXCONFIGBIN=${TEXCONFIGBIN} \ LOCALBASE=${LOCALBASE} +# dvipsk is not compatible with -funroll-loops on 5.x +CFLAGS:= ${CFLAGS:N-funroll-loops} + pre-build: ${SED} ${PKGINSTALL_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ < ${FILESDIR}/pkg-install.in > ${PKGINSTALL} |