Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ COPY aria2 /updater/aria2
COPY .git/modules/aria2 /updater/.git/modules/aria2
WORKDIR /updater/aria2
RUN git clean -dXff
RUN autoreconf -i && OPENSSL_LIBS='-L/openssl/lib64 -lssl -lcrypto -lpthread -ldl' OPENSSL_CFLAGS='-I /openssl/include' ./configure --without-libxml2 --without-libexpat --without-sqlite3 --enable-libaria2 --without-zlib --without-libcares --enable-static --disable-shared --without-libssh2 --disable-metalink --disable-websocket --disable-nls --with-openssl && make -j`nproc`
RUN autoreconf -i && OPENSSL_LIBS='-L/openssl/lib64 -lssl -lcrypto -lpthread -ldl' OPENSSL_CFLAGS='-I /openssl/include' ./configure --without-libxml2 --without-libexpat --without-sqlite3 --enable-libaria2 --without-zlib --without-libcares --enable-static --disable-shared --without-libssh2 --disable-metalink --disable-websocket --disable-nls --with-openssl --without-gnutls --without-nettle && make -j`nproc`

#################
# Build updater #
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Before building the updater itself you need to build aria2 library
```
cd aria2
autoreconf -i
./configure --without-libxml2 --without-libexpat --without-sqlite3 --enable-libaria2 --without-zlib --without-libcares --enable-static --disable-shared --without-libssh2 --disable-metalink --disable-websocket --disable-nls --with-openssl
./configure --without-libxml2 --without-libexpat --without-sqlite3 --enable-libaria2 --without-zlib --without-libcares --enable-static --disable-shared --without-libssh2 --disable-metalink --disable-websocket --disable-nls --with-openssl --without-gnutls --without-nettle
make -j4
cd ..
```
Expand Down
2 changes: 1 addition & 1 deletion updater.pro
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RESOURCES += qml.qrc

win32:LIBS += $$PWD/aria2/src/.libs/libaria2.a
win32:LIBS += -lcrypt32 -lsecur32 -lole32
unix:LIBS += -lz "-L$$PWD/aria2/src/.libs" -laria2
unix:LIBS += -lz "-L$$PWD/aria2/src/.libs" -laria2 -lssl -lcrypto

win32:RC_FILE = updater.rc

Expand Down