From a3121cb6052a5cd0165b8c6b2d29c523e2b058ee Mon Sep 17 00:00:00 2001 From: winckel <winckel@eurecom.fr> Date: Fri, 13 Dec 2013 13:04:58 +0000 Subject: [PATCH] Fixed a compile issue without ENABLE_USE_MME. git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4716 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair2/ENB_APP/enb_app.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/openair2/ENB_APP/enb_app.c b/openair2/ENB_APP/enb_app.c index daa054bf309..02eb6a47c94 100644 --- a/openair2/ENB_APP/enb_app.c +++ b/openair2/ENB_APP/enb_app.c @@ -51,10 +51,11 @@ extern unsigned char NB_eNB_INST; #endif #if defined(ENABLE_ITTI) -# if defined(ENABLE_USE_MME) /*------------------------------------------------------------------------------*/ -#define ENB_REGISTER_RETRY_DELAY 10 +# if defined(ENABLE_USE_MME) +# define ENB_REGISTER_RETRY_DELAY 10 +# endif typedef struct mme_ip_address_s { unsigned ipv4:1; @@ -98,7 +99,9 @@ typedef struct Enb_properties_s { } Enb_properties_t; /*------------------------------------------------------------------------------*/ +# if defined(ENABLE_USE_MME) static uint32_t enb_nb = 1; /* Default number of eNB */ +# endif /* eNB 0 properties */ static Enb_properties_t enb_0_properties = @@ -230,6 +233,7 @@ static void configure_rrc() } } +# if defined(ENABLE_USE_MME) static uint32_t eNB_app_register() { uint32_t eNB_id_start = 0; -- GitLab