You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2022/12/12 23:22:08 UTC

[mynewt-nimble] 03/03: portling/linux: Fix build on latest Fedora

This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 58a71bad16b6cbc8514bdbe77699c3492484b6be
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Fri Dec 9 17:06:15 2022 +0100

    portling/linux: Fix build on latest Fedora
    
    This leads to implicit include of unistd.h which provides link symbol
    that collide with mesh internal symbols. If needed c files may include
    it directly.
---
 porting/npl/linux/include/nimble/os_types.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/porting/npl/linux/include/nimble/os_types.h b/porting/npl/linux/include/nimble/os_types.h
index a5d8bf54..aa24745f 100644
--- a/porting/npl/linux/include/nimble/os_types.h
+++ b/porting/npl/linux/include/nimble/os_types.h
@@ -21,7 +21,6 @@
 #define _NPL_OS_TYPES_H
 
 #include <time.h>
-#include <signal.h>
 #include <stdbool.h>
 #include <pthread.h>
 #include <semaphore.h>