This is an automated email from the git hooks/post-receive script. sergiodj-guest pushed a commit to branch patch-queue/master in repository sleepyhead.
commit 76b824b386d09e7f911c3dd295f75b044ec39aa5 Author: Sergio Durigan Junior <[email protected]> Date: Sat Oct 3 20:28:59 2015 -0400 Do not use bundled libraries Upstream ships with bundled libraries (e.g., quazip), but we do not need to use them because Debian already provides their packages. Gbp-Pq: Name 0001-Do-not-use-bundled-libraries.patch --- sleepyhead/sleepyhead.pro | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 9133c60..3054615 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -300,9 +300,12 @@ mac { QT += serialport #} -include(../3rdparty/quazip/quazip/quazip.pri) -INCLUDEPATH += $$PWD/../3rdparty/quazip -DEPENDPATH += $$PWD/../3rdparty/quazip +# Debian provides quazip, so we do not need the bundled version shipped by +# upstream. +#include(../3rdparty/quazip/quazip/quazip.pri) +#INCLUDEPATH += $$PWD/../3rdparty/quazip +#DEPENDPATH += $$PWD/../3rdparty/quazip +LIBS += -lquazip5 #bundlelibs = $$cat($$PWD/../Bundle3rdParty) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/sleepyhead.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
