diff options
author | Damien George <damien.p.george@gmail.com> | 2018-08-14 17:41:23 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-08-14 17:41:23 +1000 |
commit | b8b2525576ccca9c33629de71557e4204abde766 (patch) | |
tree | 54caeada899969d18a3fe2fc983f7baff558e374 /py | |
parent | 9ab816d676543178773928053906fcb2c2c433f7 (diff) |
extmod/modbtree: Update to work with new mp_stream_posix_XXX signatures.
Diffstat (limited to 'py')
-rw-r--r-- | py/py.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ endif ifeq ($(MICROPY_PY_BTREE),1) BTREE_DIR = lib/berkeley-db-1.xx -BTREE_DEFS = -D__DBINTERFACE_PRIVATE=1 -Dmpool_error=printf -Dabort=abort_ -Dvirt_fd_t=mp_obj_t "-DVIRT_FD_T_HEADER=<py/obj.h>" $(BTREE_DEFS_EXTRA) +BTREE_DEFS = -D__DBINTERFACE_PRIVATE=1 -Dmpool_error=printf -Dabort=abort_ "-Dvirt_fd_t=void*" $(BTREE_DEFS_EXTRA) INC += -I$(TOP)/$(BTREE_DIR)/PORT/include SRC_MOD += extmod/modbtree.c SRC_MOD += $(addprefix $(BTREE_DIR)/,\ |