diff options
author | obache <obache> | 2013-06-09 07:02:14 +0000 |
---|---|---|
committer | obache <obache> | 2013-06-09 07:02:14 +0000 |
commit | a4c4067ea70b3e2aabc855518d1cbb31daad8d4a (patch) | |
tree | ccce71ecd91d90e73b17ac35513976d288661194 /textproc | |
parent | 77c85f4cccb0c11fc06677d2f972ddc1438af2fa (diff) | |
download | pkgsrc-a4c4067ea70b3e2aabc855518d1cbb31daad8d4a.tar.gz |
gmake is required for SunOS.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/CRF++/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/CRF++/Makefile b/textproc/CRF++/Makefile index 3d5fa51d31c..35944be4c87 100644 --- a/textproc/CRF++/Makefile +++ b/textproc/CRF++/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2013/05/22 13:07:47 obache Exp $ +# $NetBSD: Makefile,v 1.2 2013/06/09 07:02:14 obache Exp $ # DISTNAME= CRF++-0.58 @@ -14,6 +14,12 @@ GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_LANGUAGES= c c++ +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "SunOS" +USE_TOOLS+= gmake +.endif + PTHREAD_AUTO_VARS= yes SUBST_CLASSES+= pthread_flags SUBST_STAGE.pthread_flags= pre-configure |