diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-01-11 10:08:38 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-01-11 10:08:38 +0000 |
commit | 8244fe99bcdbad7a2d0b22d66183394f5ffacd03 (patch) | |
tree | c9a458d29164af55be5bf3330f3f659428ac04ac /lang/mono | |
parent | 365eb51f267a3ad97ff0d4953b9991547b5b8c45 (diff) | |
download | freebsd-ports-8244fe99bcdbad7a2d0b22d66183394f5ffacd03.zip |
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by: portmgr blanket
Diffstat (limited to 'lang/mono')
-rw-r--r-- | lang/mono/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lang/mono/Makefile b/lang/mono/Makefile index ce4f98beb0a8..bc34caef281d 100644 --- a/lang/mono/Makefile +++ b/lang/mono/Makefile @@ -39,8 +39,6 @@ MAKE_ENV= MONO_SHARED_DIR="${MONO_SHARED_DIR}" \ ONLY_FOR_ARCHS= i386 amd64 powerpc PORTSCOUT= limit:^\d+\.\d+\.[1-9]\d* -.include <bsd.port.pre.mk> - post-patch: @${REINPLACE_CMD} -e 's|^#!/bin/bash|#!/usr/bin/env bash|g' \ ${WRKSRC}/scripts/mono-find-provides.in \ @@ -53,14 +51,9 @@ post-patch: post-configure: @${REINPLACE_CMD} -e 's|share\/man|man|g' \ ${WRKSRC}/mcs/jay/Makefile -# Fix build on FreeBSD 9.3 (and maybe other unsupported releases) -.if ${OSVERSION} < 1000000 - @${REINPLACE_CMD} 's/^#define HAVE_LOCALCHARSET_H 1/#undef HAVE_LOCALCHARSET_H/' \ - ${WRKSRC}/eglib/config.h -.endif do-test: @(cd ${WRKSRC}/mono/tests && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_FLAGS} Makefile ${MAKE_ARGS} check) -.include <bsd.port.post.mk> +.include <bsd.port.mk> |