fix unix detection in wrong place

This commit is contained in:
Sergio R. Caprile 2025-07-01 16:28:13 -03:00
parent e854585802
commit aa27fde9d0
2 changed files with 2 additions and 2 deletions

View File

@ -4147,7 +4147,7 @@ void mg_mgr_init(struct mg_mgr *mgr) {
// clang-format on
#elif MG_ENABLE_FREERTOS_TCP
mgr->ss = FreeRTOS_CreateSocketSet();
#elif defined(__unix) || defined(__unix__) || defined(__APPLE__)
#elif MG_ARCH == MG_ARCH_UNIX
// Ignore SIGPIPE signal, so if client cancels the request, it
// won't kill the whole process.
signal(SIGPIPE, SIG_IGN);

View File

@ -267,7 +267,7 @@ void mg_mgr_init(struct mg_mgr *mgr) {
// clang-format on
#elif MG_ENABLE_FREERTOS_TCP
mgr->ss = FreeRTOS_CreateSocketSet();
#elif defined(__unix) || defined(__unix__) || defined(__APPLE__)
#elif MG_ARCH == MG_ARCH_UNIX
// Ignore SIGPIPE signal, so if client cancels the request, it
// won't kill the whole process.
signal(SIGPIPE, SIG_IGN);