From: Ondrej Filip Date: Mon, 31 May 2004 13:34:20 +0000 (+0000) Subject: #ifdef ALLOCA_H X-Git-Tag: v1.2.0~408 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c745adc8003ac816be15e2246fa4685e127d120;p=thirdparty%2Fbird.git #ifdef ALLOCA_H --- diff --git a/nest/rt-attr.c b/nest/rt-attr.c index 8259877cd..cccae2f61 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -44,7 +44,9 @@ * Routing tables always contain only cached &rta's. */ +#ifdef HAVE_ALLOCA_H #include +#endif #include "nest/bird.h" #include "nest/route.h" diff --git a/nest/rt-table.c b/nest/rt-table.c index 06236b642..db70b6665 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -42,7 +42,9 @@ #include "filter/filter.h" #include "lib/string.h" +#ifdef HAVE_ALLOCA_H #include +#endif static slab *rte_slab; static linpool *rte_update_pool;