Skip to content

Commit

Permalink
do_freebsd.sh: Remove ENODATA requirement
Browse files Browse the repository at this point in the history
 - 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 <[email protected]>
  • Loading branch information
wjwithagen committed Feb 24, 2017
1 parent c1c1f2e commit ec07744
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions do_freebsd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec07744

Please sign in to comment.