From: Pavel Tvrdik Date: Fri, 5 Dec 2014 08:25:38 +0000 (+0100) Subject: Better Clang compatibility X-Git-Tag: v1.5.0~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=85a3639d99a39a79b65c2dbc2a136baee6ba2a2b;p=thirdparty%2Fbird.git Better Clang compatibility --- diff --git a/lib/lists.h b/lib/lists.h index 37c56efbc..80a4dc937 100644 --- a/lib/lists.h +++ b/lib/lists.h @@ -50,6 +50,14 @@ typedef struct list { /* In fact two overlayed nodes */ #define EMPTY_LIST(list) (!(list).head->next) + +#ifndef _BIRD_LISTS_C_ +#define LIST_INLINE static inline +#include "lib/lists.c" +#undef LIST_INLINE + +#else /* _BIRD_LISTS_C_ */ +#define LIST_INLINE void add_tail(list *, node *); void add_head(list *, node *); void rem_node(node *); @@ -57,13 +65,6 @@ void rem2_node(node *); void add_tail_list(list *, list *); void init_list(list *); void insert_node(node *, node *); - -#ifndef _BIRD_LISTS_C_ -#define LIST_INLINE extern inline -#include "lib/lists.c" -#undef LIST_INLINE -#else -#define LIST_INLINE #endif #endif diff --git a/tools/mergedirs b/tools/mergedirs index 883e6f17a..fb48c6c79 100755 --- a/tools/mergedirs +++ b/tools/mergedirs @@ -4,7 +4,7 @@ if [ -z "$4" ] ; then echo "Usage: mergedirs " exit 1 fi -cpp=${CPP:-gcc -E} +cpp=${CPP:-cc -E} SRCDIR=$1 shift SRCREL=$1