summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/rbutilqt.pro
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2020-08-08 18:46:43 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2020-10-18 19:08:32 +0200
commit2037b837f81485770fcb066adea70b1d22e9b727 (patch)
tree41d15b95f38843dfe5fb45327c25d3a116731b05 /rbutil/rbutilqt/rbutilqt.pro
parent815b289cb3438ed566b3e9dc5074fe12e4b98f46 (diff)
downloadrockbox-2037b837f81485770fcb066adea70b1d22e9b727.tar.gz
rockbox-2037b837f81485770fcb066adea70b1d22e9b727.zip
sbtools: convert crypto to libtomcrypt.
Replace the use of crypto++ with tomcrypt, which is much smaller and C. This gets rid of various build issues for systems that don't ship crypo++ (i.e. everything except Linux.) Change-Id: Ic0799e17b94935c71b14765cf9a2a7ea2b0adc7a
Diffstat (limited to 'rbutil/rbutilqt/rbutilqt.pro')
-rw-r--r--rbutil/rbutilqt/rbutilqt.pro6
1 files changed, 2 insertions, 4 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.pro b/rbutil/rbutilqt/rbutilqt.pro
index d07c1e01bc..9d7da92dbf 100644
--- a/rbutil/rbutilqt/rbutilqt.pro
+++ b/rbutil/rbutilqt/rbutilqt.pro
@@ -85,7 +85,8 @@ extralibs.commands = $$SILENT \
85# Note: order is important for RBLIBS! The libs are appended to the linker 85# Note: order is important for RBLIBS! The libs are appended to the linker
86# flags in this order, put libucl at the end. 86# flags in this order, put libucl at the end.
87RBLIBS = rbspeex ipodpatcher sansapatcher mkamsboot mktccboot \ 87RBLIBS = rbspeex ipodpatcher sansapatcher mkamsboot mktccboot \
88 mkmpioboot chinachippatcher mkimxboot mks5lboot bspatch ucl 88 mkmpioboot chinachippatcher mkimxboot mks5lboot bspatch ucl \
89 rbtomcrypt
89# NOTE: Linking bzip2 causes problems on Windows (Qt seems to export those 90# NOTE: Linking bzip2 causes problems on Windows (Qt seems to export those
90# symbols as well, similar to what we have with zlib.) Only link that on 91# symbols as well, similar to what we have with zlib.) Only link that on
91# non-Windows for now. 92# non-Windows for now.
@@ -139,9 +140,6 @@ for(rblib, RBLIBS) {
139 LIBS += -l$$rblib 140 LIBS += -l$$rblib
140} 141}
141 142
142# We need libcrypto++
143LIBS += -lcryptopp
144
145# on win32 libz is linked implicitly. 143# on win32 libz is linked implicitly.
146!win32 { 144!win32 {
147 LIBS += -lz 145 LIBS += -lz