Skip to content
Snippets Groups Projects
Commit 5bea6ea8 authored by Nikita Melentev's avatar Nikita Melentev Committed by Damien George
Browse files

unix: Fix freedos port build problems.

parent 8400351d
Branches
Tags
No related merge requests found
...@@ -3,10 +3,12 @@ build-fast ...@@ -3,10 +3,12 @@ build-fast
build-minimal build-minimal
build-coverage build-coverage
build-nanbox build-nanbox
build-freedos
micropython micropython
micropython_fast micropython_fast
micropython_minimal micropython_minimal
micropython_coverage micropython_coverage
micropython_nanbox micropython_nanbox
micropython_freedos*
*.py *.py
*.gcov *.gcov
...@@ -235,7 +235,10 @@ freedos: ...@@ -235,7 +235,10 @@ freedos:
PROG=micropython_freedos \ PROG=micropython_freedos \
MICROPY_PY_SOCKET=0 \ MICROPY_PY_SOCKET=0 \
MICROPY_PY_FFI=0 \ MICROPY_PY_FFI=0 \
MICROPY_PY_JNI=0 MICROPY_PY_JNI=0 \
MICROPY_PY_BTREE=0 \
MICROPY_PY_THREAD=0 \
MICROPY_PY_USSL=0
# build an interpreter for coverage testing and do the testing # build an interpreter for coverage testing and do the testing
coverage: coverage:
......
...@@ -37,8 +37,4 @@ ...@@ -37,8 +37,4 @@
// djgpp dirent struct does not have d_ino field // djgpp dirent struct does not have d_ino field
#undef _DIRENT_HAVE_D_INO #undef _DIRENT_HAVE_D_INO
// djgpp errno.h have no ENOTSUP #define MICROPY_USE_INTERNAL_ERRNO (1)
#include <errno.h>
#ifndef ENOTSUP
#define ENOTSUP 88
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment