From patchwork Mon Jan 25 23:50:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Huemer X-Patchwork-Id: 572970 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by ozlabs.org (Postfix) with ESMTP id 3194D1402A0 for ; Tue, 26 Jan 2016 10:50:54 +1100 (AEDT) Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by lists.osmocom.org (Postfix) with ESMTP id E4DEDAD8A; Mon, 25 Jan 2016 23:50:52 +0000 (UTC) X-Original-To: openbsc@lists.osmocom.org Delivered-To: openbsc@lists.osmocom.org Received: from yade.xx.vu (yade.xx.vu [78.47.92.94]) by lists.osmocom.org (Postfix) with ESMTP id D12B5AD72 for ; Mon, 25 Jan 2016 23:50:50 +0000 (UTC) Received: from void.sbg.xx.vu (smtpout2.drei.com [109.126.64.2]) by yade.xx.vu (Postfix) with ESMTPSA id 144D7249837; Tue, 26 Jan 2016 00:50:50 +0100 (CET) From: Alexander Huemer To: openbsc@lists.osmocom.org Subject: [PATCH] gprs: use libgtp cflags Date: Tue, 26 Jan 2016 00:50:35 +0100 Message-Id: <1453765835-23044-2-git-send-email-alexander.huemer@xx.vu> X-Mailer: git-send-email 2.7.0.rc3 In-Reply-To: <1453765835-23044-1-git-send-email-alexander.huemer@xx.vu> References: <1453765835-23044-1-git-send-email-alexander.huemer@xx.vu> X-BeenThere: openbsc@lists.osmocom.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Development of the OpenBSC GSM base station controller List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openbsc-bounces@lists.osmocom.org Sender: "OpenBSC" --- openbsc/src/gprs/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/gprs/Makefile.am b/openbsc/src/gprs/Makefile.am index 295fb86..f406dd7 100644 --- a/openbsc/src/gprs/Makefile.am +++ b/openbsc/src/gprs/Makefile.am @@ -2,7 +2,7 @@ AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir) AM_CFLAGS=-Wall -fno-strict-aliasing $(LIBOSMOCORE_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(LIBOSMOCTRL_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) $(LIBOSMOGB_CFLAGS) $(COVERAGE_CFLAGS) \ - $(LIBCARES_CFLAGS) $(LIBCRYPTO_CFLAGS) + $(LIBCARES_CFLAGS) $(LIBCRYPTO_CFLAGS) $(LIBGTP_CFLAGS) OSMO_LIBS = $(LIBOSMOCORE_LIBS) $(LIBOSMOGSM_LIBS) $(LIBOSMOVTY_LIBS) \ $(LIBOSMOCTRL_LIBS) $(LIBOSMOGB_LIBS)