Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 01 Oct 2023 05:14:38 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 274190] mail/claws-mail: links with net/openldap26-client if installed
Message-ID:  <bug-274190-7788-7vXBvLTafS@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-274190-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-274190-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D274190

Xin LI <delphij@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|ports-bugs@FreeBSD.org      |portmaster@bsdforge.com

--- Comment #1 from Xin LI <delphij@FreeBSD.org> ---
The problem is that Makefile.claws is incorrectly overriding CONFIGURE_ARGS=
.=20
This makes all option-derived CONFIGURE_ARGS to get lost.

Something like this would fix it.


=3D=3D=3D
diff --git a/mail/claws-mail/Makefile.claws b/mail/claws-mail/Makefile.claws
index 53ee30e66310..9ea0a1b576fe 100644
--- a/mail/claws-mail/Makefile.claws
+++ b/mail/claws-mail/Makefile.claws
@@ -8,7 +8,7 @@ LICENSE=3D        GPLv3
 USES+=3D         autoreconf gettext-tools gmake iconv libtool pkgconfig ta=
r:xz
 GNU_CONFIGURE=3D yes

-CONFIGURE_ARGS=3D        ${ICONV_CONFIGURE_ARG} --disable-dbus --disable-s=
tatic
+CONFIGURE_ARGS+=3D       ${ICONV_CONFIGURE_ARG} --disable-dbus --disable-s=
tatic

 .include "${.CURDIR}/../claws-mail/Makefile.ver"
 .include "${.CURDIR}/../claws-mail/Makefile.claws.plugins"

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-274190-7788-7vXBvLTafS>