diff options
author | jwise <jwise> | 2003-10-15 15:16:32 +0000 |
---|---|---|
committer | jwise <jwise> | 2003-10-15 15:16:32 +0000 |
commit | 2ce15bd3cb33c4e5ff2b3318dd1d3a266131aad8 (patch) | |
tree | a30f4390d71c7a0fc0d7df04968d37972ac40101 /textproc | |
parent | 9e721190b536695c65faa4280fe9f533aab3830a (diff) | |
download | pkgsrc-2ce15bd3cb33c4e5ff2b3318dd1d3a266131aad8.tar.gz |
At least on -current, we still need -lm with -lstdc++.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/sablotron/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/sablotron/Makefile b/textproc/sablotron/Makefile index 0f1758f7115..e375f9e849a 100644 --- a/textproc/sablotron/Makefile +++ b/textproc/sablotron/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2003/10/11 13:40:19 grant Exp $ +# $NetBSD: Makefile,v 1.20 2003/10/15 15:16:32 jwise Exp $ DISTNAME= Sablot-1.0 PKGNAME= ${DISTNAME:S/Sablot/sablotron/} @@ -34,7 +34,7 @@ LIBS+= -lCrun -lm .elif !empty(CC_VERSION:Mgcc-2*) LIBS+= -lstdc++ -lm .elif !empty(CC_VERSION:Mgcc-3*) -LIBS+= -lstdc++ +LIBS+= -lstdc++ -lm .endif .include "../../converters/libiconv/buildlink2.mk" |