Qt version 5 (this breaks unetbootin::lstFtpDirFiles() due to https://bugreports.qt.io/browse/QTBUG-26294) - Comment out all sources that require FTP LIST command - Don't wait until file is fully downloaded before dumping it on disk - Fix some QNetworkReply/QFile resource freeing bugs - Delete unetbootin::dlprogressupdate64() because it's never used - Fix some slot warnings while here Patches by: Valeriy Malov <jazzvoid@gmail.com> Obtained from: https://bugs.gentoo.org/show_bug.cgi?id=644360
23 lines
487 B
Prolog
23 lines
487 B
Prolog
--- unetbootin.pro.orig 2018-04-28 09:30:55 UTC
|
|
+++ unetbootin.pro
|
|
@@ -2,18 +2,18 @@ TEMPLATE = app
|
|
TARGET = unetbootin
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
-CONFIG += release \
|
|
- static
|
|
|
|
HEADERS += unetbootin.h
|
|
FORMS += unetbootin.ui
|
|
SOURCES += main.cpp \
|
|
unetbootin.cpp \
|
|
+ customdistrolst.cpp \
|
|
distrolst.cpp \
|
|
distrover.cpp \
|
|
distrovercust.cpp
|
|
QT += core \
|
|
gui \
|
|
+ widgets \
|
|
network
|
|
ICON = unetbootin.icns
|
|
TRANSLATIONS += unetbootin.ts \
|