summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYAMAMOTO Takashi <yamamoto@midokura.com>2024-02-13 16:31:40 +0900
committerDamien George <damien@micropython.org>2024-02-15 16:54:17 +1100
commit809d113dbc37a032e87accc95c140f189733e0c4 (patch)
treead0dedb323af80e3753197acf72930dbca9fcf93
parentf9704ce36e2396001b34d86a01b75af607901f94 (diff)
unix: Don't include system headers when features are disabled.
Because the target system may not have these headers at all. Signed-off-by: YAMAMOTO Takashi <yamamoto@midokura.com>
-rw-r--r--ports/unix/modsocket.c6
-rw-r--r--ports/unix/modtermios.c4
-rw-r--r--ports/unix/mpbtstackport_h4.c6
-rw-r--r--ports/unix/mpbtstackport_usb.c6
4 files changed, 14 insertions, 8 deletions
diff --git a/ports/unix/modsocket.c b/ports/unix/modsocket.c
index 737550b42..5c935d229 100644
--- a/ports/unix/modsocket.c
+++ b/ports/unix/modsocket.c
@@ -25,6 +25,10 @@
* THE SOFTWARE.
*/
+#include "py/mpconfig.h"
+
+#if MICROPY_PY_SOCKET
+
#include <stdio.h>
#include <assert.h>
#include <string.h>
@@ -49,8 +53,6 @@
#include "extmod/vfs.h"
#include <poll.h>
-#if MICROPY_PY_SOCKET
-
/*
The idea of this module is to implement reasonable minimum of
socket-related functions to write typical clients and servers.
diff --git a/ports/unix/modtermios.c b/ports/unix/modtermios.c
index 4f9751e27..8a79bc3a5 100644
--- a/ports/unix/modtermios.c
+++ b/ports/unix/modtermios.c
@@ -24,6 +24,8 @@
* THE SOFTWARE.
*/
+#if MICROPY_PY_TERMIOS
+
#include <sys/types.h>
#include <termios.h>
#include <unistd.h>
@@ -33,8 +35,6 @@
#include "py/runtime.h"
#include "py/mphal.h"
-#if MICROPY_PY_TERMIOS
-
STATIC mp_obj_t mod_termios_tcgetattr(mp_obj_t fd_in) {
struct termios term;
int fd = mp_obj_get_int(fd_in);
diff --git a/ports/unix/mpbtstackport_h4.c b/ports/unix/mpbtstackport_h4.c
index dacfff9a4..a2038c16a 100644
--- a/ports/unix/mpbtstackport_h4.c
+++ b/ports/unix/mpbtstackport_h4.c
@@ -24,14 +24,16 @@
* THE SOFTWARE.
*/
+#include "py/mpconfig.h"
+
+#if MICROPY_PY_BLUETOOTH && MICROPY_BLUETOOTH_BTSTACK && MICROPY_BLUETOOTH_BTSTACK_H4
+
#include <pthread.h>
#include "py/runtime.h"
#include "py/mperrno.h"
#include "py/mphal.h"
-#if MICROPY_PY_BLUETOOTH && MICROPY_BLUETOOTH_BTSTACK && MICROPY_BLUETOOTH_BTSTACK_H4
-
#include "lib/btstack/src/hci_transport_h4.h"
#include "lib/btstack/chipset/zephyr/btstack_chipset_zephyr.h"
diff --git a/ports/unix/mpbtstackport_usb.c b/ports/unix/mpbtstackport_usb.c
index b8c7b758d..1793e2bac 100644
--- a/ports/unix/mpbtstackport_usb.c
+++ b/ports/unix/mpbtstackport_usb.c
@@ -24,6 +24,10 @@
* THE SOFTWARE.
*/
+#include "py/mpconfig.h"
+
+#if MICROPY_PY_BLUETOOTH && MICROPY_BLUETOOTH_BTSTACK && MICROPY_BLUETOOTH_BTSTACK_USB
+
#include <pthread.h>
#include <unistd.h>
@@ -31,8 +35,6 @@
#include "py/mperrno.h"
#include "py/mphal.h"
-#if MICROPY_PY_BLUETOOTH && MICROPY_BLUETOOTH_BTSTACK && MICROPY_BLUETOOTH_BTSTACK_USB
-
#include "lib/btstack/src/btstack.h"
#include "lib/btstack/src/hci_transport_usb.h"
#include "lib/btstack/platform/embedded/btstack_run_loop_embedded.h"