diff options
author | tnn <tnn> | 2008-05-17 20:57:29 +0000 |
---|---|---|
committer | tnn <tnn> | 2008-05-17 20:57:29 +0000 |
commit | 1625b5e3ea7346e57b55cc940129ba1750f26311 (patch) | |
tree | 148e028ca391ed8760d916b68a5ab270d2c6d74b /print/ghostscript | |
parent | 6959279aea68355243de13d712d845ebc7b87b57 (diff) | |
download | pkgsrc-1625b5e3ea7346e57b55cc940129ba1750f26311.tar.gz |
Fix build on IRIX by ensuring -lfontconfig links with -liconv.
Diffstat (limited to 'print/ghostscript')
-rw-r--r-- | print/ghostscript/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/print/ghostscript/Makefile b/print/ghostscript/Makefile index 40a15d89ae3..2d3fd80c185 100644 --- a/print/ghostscript/Makefile +++ b/print/ghostscript/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2008/03/10 12:34:10 wiz Exp $ +# $NetBSD: Makefile,v 1.48 2008/05/17 20:57:29 tnn Exp $ DISTNAME= ghostscript-8.62 PKGREVISION= 2 @@ -45,6 +45,12 @@ SUBST_SED.resdir= -e "s|/Resource/|${GS_RESOURCEDIR}/|g" CONFIGURE_ENV+= ac_cv_func_fopen64=no .endif +# Interim IRIX build fix, the real problem is that fontconfig.pc doesn't +# require linking against libiconv when it should do so. +.if ${OPSYS} == "IRIX" +BUILDLINK_TRANSFORM+= l:fontconfig:fontconfig:iconv +.endif + post-extract: ${MKDIR} ${WRKSRC}/bin ${MKDIR} ${WRKSRC}/obj |