From patchwork Tue Aug 25 10:42:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ciaby X-Patchwork-Id: 510440 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.osmocom.org (tmp.osmocom.org [144.76.43.76]) by ozlabs.org (Postfix) with ESMTP id 96B1C1401E7 for ; Tue, 25 Aug 2015 20:42:41 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=autistici.org header.i=@autistici.org header.b=ta0+xZ63; dkim-atps=neutral Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by lists.osmocom.org (Postfix) with ESMTP id 162A48277; Tue, 25 Aug 2015 10:42:38 +0000 (UTC) X-Original-To: openbsc@lists.osmocom.org Delivered-To: openbsc@lists.osmocom.org Received: from perdizione.investici.org (perdizione.investici.org [94.23.50.208]) by lists.osmocom.org (Postfix) with ESMTP id 8D8208270 for ; Tue, 25 Aug 2015 10:42:36 +0000 (UTC) Received: from [94.23.50.208] (perdizione [94.23.50.208]) (Authenticated sender: ciaby@autistici.org) by localhost (Postfix) with ESMTPSA id 3E361120F2D for ; Tue, 25 Aug 2015 10:42:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1440499354; bh=kluiaOLnF6WUPj/zAQhYrTDW1Qm/OqZoMYowgeDo2Rw=; h=Date:From:To:Subject; b=ta0+xZ632nbfk8VqIZWPtgSATo7Tu2nBQU89BbkXTW/2dCSZg2uFHxAQULxHjwdme QYoVtA8WIeo1eT/kPlPM5dO4e4LHuJlNo3YDCuPZC8gbjj9aNAbrys822xCZqgEsQi ihewozP9g/tbELECetFc4/i2ulwI38DCF5KtO4OE= Message-ID: <55DC4691.5020301@autistici.org> Date: Tue, 25 Aug 2015 12:42:25 +0200 From: Ciaby User-Agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.8.0 MIME-Version: 1.0 To: OpenBSC Mailing List Subject: [PATCH] Add SMPP support in the debian build, include libsmpp34-dev as a dependency. 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" This is the last out-of-tree patch that we're still using to package OpenBSC in Rhizomatica. Adding SMPP support in the Debian packages shouldn't be an issue, right? Cheers Ciaby From 3ef052fc9ae9869be6c5b15a1421364202c427d7 Mon Sep 17 00:00:00 2001 From: Ciaby Date: Tue, 25 Aug 2015 12:35:49 +0200 Subject: [PATCH] Add SMPP support in the debian build, include libsmpp34-dev as a dependency. --- debian/control | 2 +- debian/rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index eb2e965..2447d29 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: openbsc Section: net Priority: optional Maintainer: Harald Welte -Build-Depends: debhelper (>= 7.0.0~), autotools-dev, pkg-config, libgtp0-dev, libosmocore-dev, libosmo-sccp-dev, libdbi0-dev, dh-autoreconf, libosmo-abis-dev, libosmo-netif-dev, libdbd-sqlite3, libpcap-dev, libssl-dev, libc-ares-dev +Build-Depends: debhelper (>= 7.0.0~), autotools-dev, pkg-config, libgtp0-dev, libosmocore-dev, libosmo-sccp-dev, libdbi0-dev, dh-autoreconf, libosmo-abis-dev, libosmo-netif-dev, libdbd-sqlite3, libpcap-dev, libssl-dev, libc-ares-dev, libsmpp34-dev Standards-Version: 3.8.4 Homepage: http://openbsc.osmocom.org/ Vcs-Git: git://bs11-abis.gnumonks.org/openbsc.git diff --git a/debian/rules b/debian/rules index 14e8cec..8047b79 100755 --- a/debian/rules +++ b/debian/rules @@ -37,5 +37,5 @@ override_dh_strip: override_dh_auto_configure: echo $(VERSION) > openbsc/.tarball-version - dh_auto_configure --sourcedirectory=openbsc -- --enable-nat --enable-osmo-bsc + dh_auto_configure --sourcedirectory=openbsc -- --enable-nat --enable-osmo-bsc --enable-smpp -- 1.7.9.5