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
No related branches found
No related tags found
No related merge requests found
......@@ -3,10 +3,12 @@ build-fast
build-minimal
build-coverage
build-nanbox
build-freedos
micropython
micropython_fast
micropython_minimal
micropython_coverage
micropython_nanbox
micropython_freedos*
*.py
*.gcov
......@@ -235,7 +235,10 @@ freedos:
PROG=micropython_freedos \
MICROPY_PY_SOCKET=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
coverage:
......
......@@ -37,8 +37,4 @@
// djgpp dirent struct does not have d_ino field
#undef _DIRENT_HAVE_D_INO
// djgpp errno.h have no ENOTSUP
#include <errno.h>
#ifndef ENOTSUP
#define ENOTSUP 88
#endif
#define MICROPY_USE_INTERNAL_ERRNO (1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment