diff options
author | jlam <jlam> | 2004-02-04 02:31:40 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-02-04 02:31:40 +0000 |
commit | b689f4f35d68ff4efcd347303448a66d9d61d3c0 (patch) | |
tree | 4253464e697942ab6fd7390e4f09985e01a569fb /devel/libtool-base | |
parent | f640c1ec5d326d08ad85ea3b6895760e7bba35a8 (diff) | |
download | pkgsrc-b689f4f35d68ff4efcd347303448a66d9d61d3c0.tar.gz |
Require both the C and C++ compilers since we usually want libtool to find
the same set.
Diffstat (limited to 'devel/libtool-base')
-rw-r--r-- | devel/libtool-base/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index bc7445b61df..6f1fea43292 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2004/01/07 21:18:12 jlam Exp $ +# $NetBSD: Makefile,v 1.20 2004/02/04 02:31:40 jlam Exp $ # .include "../../devel/libtool/Makefile.common" @@ -10,6 +10,11 @@ COMMENT= Generic shared library support script (the script itself) CONFLICTS+= libtool<=1.3.5nb11 +# We are going to want libtool to find the same version of C and C++ +# compilers. +# +USE_LANGUAGES= c c++ + TEST_TARGET= check .include "../../mk/bsd.prefs.mk" |