diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2020-04-21 01:32:16 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2020-04-21 01:32:16 +0000 |
commit | e8ec7dfecc53cdfc8bebf3634dcd7e29ed73854d (patch) | |
tree | 3c4efdd9961accc98eec430259e7e326798c33fa | |
parent | emulators/yuzu: track OpenSSL dependency after r532054 (diff) |
emulators/yuzu-qt5: switch bundled libzip to OpenSSL
Error: /usr/local/bin/yuzu is linked to /usr/local/lib/libgnutls.so.30 from security/gnutls but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libgnutls.so:security/gnutls
Error: /usr/local/bin/yuzu is linked to /usr/local/lib/libnettle.so.7 from security/nettle but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libnettle.so:security/nettle
Notes
Notes:
svn path=/head/; revision=532245
-rw-r--r-- | emulators/yuzu/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emulators/yuzu/Makefile b/emulators/yuzu/Makefile index 3ececf20587a..8e10218779bf 100644 --- a/emulators/yuzu/Makefile +++ b/emulators/yuzu/Makefile @@ -52,6 +52,7 @@ GH_TUPLE= yuzu-emu:unicorn:1.0.1-153-g73f45735:unicorn/externals/unicorn \ USES= cmake compiler:c++17-lang iconv localbase:ldflags \ python:build sdl ssl USE_SDL= sdl2 +CMAKE_OFF= ENABLE_GNUTLS ENABLE_MBEDTLS CXXFLAGS+= -Wno-narrowing # https://github.com/yuzu-emu/yuzu/issues/3407 LDFLAGS+= -Wl,--as-needed # Qt5Network TEST_TARGET= test |