diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2005-03-01 23:03:04 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2005-03-01 23:03:04 +0000 |
commit | 47af862419208169e1ef2ec9622421058d092a3d (patch) | |
tree | 03692eec49b2f6c987a36e568548c5e348717941 /print/teTeX-bin | |
parent | c3c5765875076bcf1bd9f14f938f0dd5089e2635 (diff) | |
download | pkgsrc-47af862419208169e1ef2ec9622421058d092a3d.tar.gz |
add -lgcc_s on solaris with gcc
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 |