Date: Mon, 7 Nov 2022 10:45:59 GMT From: Gleb Popov <arrowd@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 53dca644f64f - main - devel/efl: Do not depend unconditionally on libunwind. Message-ID: <202211071045.2A7Ajx5M038734@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=53dca644f64f7c464e8dbeb49029e90503baddcb commit 53dca644f64f7c464e8dbeb49029e90503baddcb Author: Gleb Popov <arrowd@FreeBSD.org> AuthorDate: 2022-11-07 10:45:22 +0000 Commit: Gleb Popov <arrowd@FreeBSD.org> CommitDate: 2022-11-07 10:45:55 +0000 devel/efl: Do not depend unconditionally on libunwind. Reported by: fluffy --- devel/efl/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/devel/efl/Makefile b/devel/efl/Makefile index edb01a0d3c71..729b187c0f80 100644 --- a/devel/efl/Makefile +++ b/devel/efl/Makefile @@ -19,8 +19,7 @@ LIB_DEPENDS= libgif.so:graphics/giflib \ libfontconfig.so:x11-fonts/fontconfig \ libdbus-1.so:devel/dbus \ libcurl.so:ftp/curl \ - libsndfile.so:audio/libsndfile \ - libunwind.so:devel/libunwind + libsndfile.so:audio/libsndfile # lib/libeio.so.1 CONFLICTS_INSTALL= libeio @@ -213,6 +212,10 @@ MESON_ARGS+= -Dbindings="${EFL_BINDINGS:ts,}" MESON_ARGS+= -Db_asneeded=false .endif +.if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le +LIB_DEPENDS+= libunwind.so:devel/libunwind +.endif + .if ${ARCH:Marmv?} BUILD_DEPENDS+= as:devel/binutils CFLAGS+= -no-integrated-as
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211071045.2A7Ajx5M038734>