From ec077448468b27f8b0fcff3b123d0511cd608fd2 Mon Sep 17 00:00:00 2001 From: Willem Jan Withagen Date: Fri, 24 Feb 2017 11:20:16 +0100 Subject: [PATCH] do_freebsd.sh: Remove ENODATA requirement - This was there because cython did not know about ENOATTR But since cython 0.25.2 tus is fixed. And we don't need to edit /usr/include/errno.h Signed-off-by: Willem Jan Withagen --- do_freebsd.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/do_freebsd.sh b/do_freebsd.sh index c3229e79fc5..3f868513559 100755 --- a/do_freebsd.sh +++ b/do_freebsd.sh @@ -12,12 +12,6 @@ fi if [ x"$1"x = x"--deps"x ]; then sudo ./install-deps.sh fi -if ! grep -q ENODATA /usr/include/errno.h; then - echo Need ENODATA in /usr/include/errno.h for cython compilations - echo Please add it manually after ENOATTR with value 87 - echo '#define ENOATTR 87' - exit 1 -fi if [ -x /usr/bin/getopt ] && [ x"`/usr/bin/getopt -v`"x == x" --"x ]; then echo fix getopt path echo Native FreeBSD getopt is not compatible with the Linux getopt that is -- 2.39.5