diff options
Diffstat (limited to 'print/teTeX-bin')
-rw-r--r-- | print/teTeX-bin/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/print/teTeX-bin/Makefile b/print/teTeX-bin/Makefile index 61d6b9fa2f1..05aa155c482 100644 --- a/print/teTeX-bin/Makefile +++ b/print/teTeX-bin/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2005/02/04 01:48:51 minskim Exp $ +# $NetBSD: Makefile,v 1.62 2005/03/01 23:03:04 dmcmahill Exp $ DISTNAME= tetex-src-${TETEX_BIN_VERS} PKGNAME= teTeX-bin-${TETEX_BIN_VERS} @@ -29,6 +29,16 @@ REPLACE_PERL= texk/xdvik/t1mapper \ CONFLICTS+= coreutils-[0-9]* .endif +.include "../../mk/compiler.mk" +# +.if ${OPSYS} == "SunOS" +# If we are using gcc3, we need to link against libgcc_s, too. This +# ensures modules can resolve symbols they require from gcc. +. if !empty(CC_VERSION:Mgcc-3*) +LDFLAGS+= -lgcc_s +. endif +.endif + .if defined(PAPERSIZE) LOWER_PAPERSIZE!= ${ECHO} ${PAPERSIZE} | ${TR} '[A-Z]' '[a-z]' .endif |