diff options
author | Matt Corallo <git@bluematt.me> | 2017-05-05 13:29:18 -0400 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2017-05-05 13:29:38 -0400 |
commit | 91700aa1df57c1a9209284e743224119396604d5 (patch) | |
tree | 3d6cf163a1cb438d52dce6a5f01ac9ac0671eee4 /contrib/debian | |
parent | c5071e1f03085b4025f2a33fb2c3079d823d660c (diff) |
Re-enable upnp support in contrib/debian
Diffstat (limited to 'contrib/debian')
-rw-r--r-- | contrib/debian/changelog | 6 | ||||
-rw-r--r-- | contrib/debian/control | 1 | ||||
-rwxr-xr-x | contrib/debian/rules | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/contrib/debian/changelog b/contrib/debian/changelog index 1bef910398..33dab9b638 100644 --- a/contrib/debian/changelog +++ b/contrib/debian/changelog @@ -1,3 +1,9 @@ +bitcoin (0.14.1-trusty4) trusty; urgency=medium + + * Re-enable UPnP support. + + -- Matt Corallo (BlueMatt) <matt@mattcorallo.com> Fri, 05 May 2017 13:28:00 -0400 + bitcoin (0.14.1-trusty3) trusty; urgency=medium * Build with qt5 if we are on a non-Ubuntu (ie non-Unity) distro. diff --git a/contrib/debian/control b/contrib/debian/control index 523b4f936b..0d6ad25e24 100644 --- a/contrib/debian/control +++ b/contrib/debian/control @@ -18,6 +18,7 @@ Build-Depends: debhelper, libboost-thread1.48-dev | libboost-thread-dev (>> 1.47), libboost-test1.48-dev | libboost-test-dev (>> 1.47), libboost-chrono1.48-dev | libboost-chrono-dev (>> 1.47), + libminiupnpc8-dev | libminiupnpc-dev, qt4-qmake, libqt4-dev, qttools5-dev-tools, qttools5-dev, libqrencode-dev, diff --git a/contrib/debian/rules b/contrib/debian/rules index 354f15f320..6885e38521 100755 --- a/contrib/debian/rules +++ b/contrib/debian/rules @@ -17,7 +17,7 @@ QT=$(shell dpkg-vendor --derives-from Ubuntu && echo qt4 || echo qt5) # Yea, autogen should be run on the source archive, but I like doing git archive override_dh_auto_configure: ./autogen.sh - ./configure --without-miniupnpc --with-gui=$(QT) + ./configure --with-gui=$(QT) override_dh_auto_test: make check |