diff options
author | hrs <hrs@FreeBSD.org> | 2005-04-19 21:32:02 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2005-04-19 21:32:02 +0800 |
commit | 5e8cdc1562c31e2cefe5260bb10aa946f8e85b0e (patch) | |
tree | bdce6e26c381109cc722a1e0e007975a28a6c265 /print | |
parent | 3e7c7389082b3c0688a37aa97aab533dfd75b277 (diff) | |
download | freebsd-ports-gnome-5e8cdc1562c31e2cefe5260bb10aa946f8e85b0e.tar.gz freebsd-ports-gnome-5e8cdc1562c31e2cefe5260bb10aa946f8e85b0e.tar.zst freebsd-ports-gnome-5e8cdc1562c31e2cefe5260bb10aa946f8e85b0e.zip |
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} |