diff options
author | andreas <andreas@FreeBSD.org> | 2002-01-12 05:47:33 +0800 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 2002-01-12 05:47:33 +0800 |
commit | 684f0552debe1ad26293a44bd49e84fa5a9cf411 (patch) | |
tree | 262a8458a212d33157bb63553237cf2ba69cd473 /print/ghostscript8 | |
parent | 3f5a7f085446019659ffdf233ab0c7cb4ad99aae (diff) | |
download | freebsd-ports-graphics-684f0552debe1ad26293a44bd49e84fa5a9cf411.tar.gz freebsd-ports-graphics-684f0552debe1ad26293a44bd49e84fa5a9cf411.tar.zst freebsd-ports-graphics-684f0552debe1ad26293a44bd49e84fa5a9cf411.zip |
- Fix hpijs 1.0 dumping core with the kind help of HP.
- Important fix, therefore PORTREVISION bumped.
background info: hpijs currently may not compiled with -O or -O2.
Simply leaving out any optimization (like it was default in prior
hpijs versions) cures the problem.
Many thanks to David Suffield from HP-Vancouver.
Diffstat (limited to 'print/ghostscript8')
-rw-r--r-- | print/ghostscript8/Makefile | 2 | ||||
-rw-r--r-- | print/ghostscript8/files/patch-hpijs-1.0:configure.in | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile index 13151b76468..ead4761f134 100644 --- a/print/ghostscript8/Makefile +++ b/print/ghostscript8/Makefile @@ -7,7 +7,7 @@ PORTNAME= ghostscript PORTVERSION= 7.03 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://members.ozemail.com.au/~geoffk/pdfencrypt/ \ diff --git a/print/ghostscript8/files/patch-hpijs-1.0:configure.in b/print/ghostscript8/files/patch-hpijs-1.0:configure.in new file mode 100644 index 00000000000..ff76f69888c --- /dev/null +++ b/print/ghostscript8/files/patch-hpijs-1.0:configure.in @@ -0,0 +1,13 @@ +--- hpijs-1.0/configure.in.orig Fri Jan 11 22:01:55 2002 ++++ hpijs-1.0/configure.in Fri Jan 11 22:02:22 2002 +@@ -39,8 +39,8 @@ + CXXFLAGS="-g -Wall" + AC_MSG_RESULT(debug) + else +- CFLAGS="-O2 -Wall" +- CXXFLAGS="-O2 -Wall" ++ CFLAGS="-pipe -Wall" ++ CXXFLAGS="-pipe -Wall" + AC_MSG_RESULT(release) + fi + |