From owner-freebsd-stable@FreeBSD.ORG Sun Nov 17 13:08:12 2013 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 147ED563 for ; Sun, 17 Nov 2013 13:08:12 +0000 (UTC) Received: from forward4h.mail.yandex.net (forward4h.mail.yandex.net [IPv6:2a02:6b8:0:f05::4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBF0D2D2F for ; Sun, 17 Nov 2013 13:08:11 +0000 (UTC) Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward4h.mail.yandex.net (Yandex) with ESMTP id 81B631B217A1; Sun, 17 Nov 2013 17:08:07 +0400 (MSK) Received: from smtp3h.mail.yandex.net (localhost [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id 15E8D1B41B84; Sun, 17 Nov 2013 17:08:06 +0400 (MSK) Received: from 46.38.32.182.tel.ru (46.38.32.182.tel.ru [46.38.32.182]) by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id wcmKO2ebcD-86sGdvwG; Sun, 17 Nov 2013 17:08:06 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) Message-ID: <5288BFB6.3010709@passap.ru> Date: Sun, 17 Nov 2013 17:08:06 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130806 Thunderbird/17.0.7 MIME-Version: 1.0 To: Tomoaki AOKI Subject: Re: Please revert r258230 in stable/10 References: <20131117114223.9af2adf49a93b5dd7f77f472@dec.sakura.ne.jp> In-Reply-To: <20131117114223.9af2adf49a93b5dd7f77f472@dec.sakura.ne.jp> Content-Type: multipart/mixed; boundary="------------030607090404010300060009" Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Nov 2013 13:08:12 -0000 This is a multi-part message in MIME format. --------------030607090404010300060009 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 17.11.2013 06:42, Tomoaki AOKI пишет: > As some port requires libiconv.so.3 Are you speaking in general or do you have other (than japanese/mozc-tools) examples? > At least, japanese/mozc-tools (I and maybe many Japanese desktop users > strongly need japanese/mozc-* ports, and it unconditionally requires > libiconv.so.3) didn't build in head after r257583 I just tried to build japanese/mozc-tools. Do you speak about this?: ----- LINK(target) out_linux/Release/mozc_tool /usr/bin/ld: cannot find -liconv c++: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [out_linux/Release/mozc_tool] Error 1 ----- If yes, I'd say that it's not a hard dependency upon libiconv but just a configure error. Please, try the attached patch (build tested only) and report back. We will be interested at run time behaviour (is it OK or not). Seems that the patch has an effect only on mozc-tools, but to be on a safe side I'd rebuild all mozc-* ports. Thank you for the report. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve --------------030607090404010300060009 Content-Type: text/x-diff; name="mozc-tool.iconv-fix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mozc-tool.iconv-fix.diff" Index: /usr/ports/japanese/mozc-server/Makefile =================================================================== --- /usr/ports/japanese/mozc-server/Makefile (revision 334072) +++ /usr/ports/japanese/mozc-server/Makefile (working copy) @@ -82,6 +82,7 @@ post-patch: ${MKDIR} ${WRKSRC}/mozc_build_tools/linux ${LN} -sf ${LOCALBASE}/bin/protoc ${WRKSRC}/mozc_build_tools/linux/ + ${REINPLACE_CMD} 's,-liconv,${ICONV_LIB},g' ${WRKSRC}/gui/qt_libraries.gypi .if ${BUILD_MOZC_LIST:Mfcitx_mozc} == "fcitx_mozc" ${REINPLACE_CMD} 's,/po/mo},%po}mo,g' \ ${WRKSRC}/unix/fcitx/gen_fcitx_mozc_i18n.sh --------------030607090404010300060009--