unix: Rename modsocket.c to modusocket.c.

Unix naming is historical, before current conventions were established.
All other ports however have it as "modusocket.c", so rename for
consistency and to avoid confusion.
This commit is contained in:
Paul Sokolovsky 2017-10-23 12:09:37 +03:00
parent 9956fd0710
commit cfff12612f
2 changed files with 1 additions and 1 deletions

View file

@ -97,7 +97,7 @@ SRC_MOD += modtermios.c
endif endif
ifeq ($(MICROPY_PY_SOCKET),1) ifeq ($(MICROPY_PY_SOCKET),1)
CFLAGS_MOD += -DMICROPY_PY_SOCKET=1 CFLAGS_MOD += -DMICROPY_PY_SOCKET=1
SRC_MOD += modsocket.c SRC_MOD += modusocket.c
endif endif
ifeq ($(MICROPY_PY_THREAD),1) ifeq ($(MICROPY_PY_THREAD),1)
CFLAGS_MOD += -DMICROPY_PY_THREAD=1 -DMICROPY_PY_THREAD_GIL=0 CFLAGS_MOD += -DMICROPY_PY_THREAD=1 -DMICROPY_PY_THREAD_GIL=0