diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 2002-01-11 21:47:33 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 2002-01-11 21:47:33 +0000 |
commit | ce61e93223226d98832fc268d4d8029df129c5ac (patch) | |
tree | f2afe2fc631f6d6d5a6069742365b9c17cb34def /print/ghostscript-gnu | |
parent | 990cc44a1ed523d823db762620047455ba44c6fb (diff) | |
download | ports-ce61e93223226d98832fc268d4d8029df129c5ac.tar.gz ports-ce61e93223226d98832fc268d4d8029df129c5ac.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.
Notes
Notes:
svn path=/head/; revision=52930
Diffstat (limited to 'print/ghostscript-gnu')
-rw-r--r-- | print/ghostscript-gnu/Makefile | 2 | ||||
-rw-r--r-- | print/ghostscript-gnu/files/patch-hpijs-1.0:configure.in | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/print/ghostscript-gnu/Makefile b/print/ghostscript-gnu/Makefile index d8cc0ad686d6..bcb340444b38 100644 --- a/print/ghostscript-gnu/Makefile +++ b/print/ghostscript-gnu/Makefile @@ -7,7 +7,7 @@ PORTNAME= ghostscript PORTVERSION= 6.52 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_GNU} \ ${MASTER_SITE_SOURCEFORGE} \ diff --git a/print/ghostscript-gnu/files/patch-hpijs-1.0:configure.in b/print/ghostscript-gnu/files/patch-hpijs-1.0:configure.in new file mode 100644 index 000000000000..ff76f69888c3 --- /dev/null +++ b/print/ghostscript-gnu/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 + |