Re: [patch]Uses/iconv.mk, devel/getext has no libiconv linkage.

2013-08-21 Thread Yamaya Takashi
On 2013/08/21 21:33, Daniel Nebdal wrote:
> On Sun, Aug 18, 2013 at 6:04 PM, Yamaya Takashi
>  wrote:
>> On 2013/08/06 07:54, Boris Samorodov wrote:
>>> (CC to the maintainer: gn...@freebsd.org)
>>>
>>> 05.08.2013 20:13, Yamaya Takashi пишет:
 Some ports, e.g. devel/glib20, cannot build because devel/gettext has no
 libiconv linkage.
 msgfmt cannot handle utf-8 and say "invalid multibyte sequence".

 Patch attached file and rebuild devel/gettext, msgfmt works correctly.
>>> Confirmed. The fix works. Thanks!
>>>
>> Please commit my patch.
>> It is not only for devel/gettext.
>> It's for some ports which have USES += iconv.
>>
>>
> This sounds like the underlying problem I have with print/cups-image,
> as well: It depends on iconv, but fails to add it to LDFLAGS when
> compiling.
>
Now, no problem.
Because base system's iconv was broken, but was repaired at r254080.
Discard my patch.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: [patch]Uses/iconv.mk, devel/getext has no libiconv linkage.

2013-08-21 Thread Daniel Nebdal
On Sun, Aug 18, 2013 at 6:04 PM, Yamaya Takashi
 wrote:
> On 2013/08/06 07:54, Boris Samorodov wrote:
>> (CC to the maintainer: gn...@freebsd.org)
>>
>> 05.08.2013 20:13, Yamaya Takashi пишет:
>>> Some ports, e.g. devel/glib20, cannot build because devel/gettext has no
>>> libiconv linkage.
>>> msgfmt cannot handle utf-8 and say "invalid multibyte sequence".
>>>
>>> Patch attached file and rebuild devel/gettext, msgfmt works correctly.
>> Confirmed. The fix works. Thanks!
>>
> Please commit my patch.
> It is not only for devel/gettext.
> It's for some ports which have USES += iconv.
>
>

This sounds like the underlying problem I have with print/cups-image,
as well: It depends on iconv, but fails to add it to LDFLAGS when
compiling.

-- 
Daniel Nebdal
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: [patch]Uses/iconv.mk, devel/getext has no libiconv linkage.

2013-08-18 Thread Yamaya Takashi
On 2013/08/06 07:54, Boris Samorodov wrote:
> (CC to the maintainer: gn...@freebsd.org)
>
> 05.08.2013 20:13, Yamaya Takashi пишет:
>> Some ports, e.g. devel/glib20, cannot build because devel/gettext has no
>> libiconv linkage.
>> msgfmt cannot handle utf-8 and say "invalid multibyte sequence".
>>
>> Patch attached file and rebuild devel/gettext, msgfmt works correctly.
> Confirmed. The fix works. Thanks!
>
Please commit my patch.
It is not only for devel/gettext.
It's for some ports which have USES += iconv.


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: [patch]Uses/iconv.mk, devel/getext has no libiconv linkage.

2013-08-05 Thread Boris Samorodov
(CC to the maintainer: gn...@freebsd.org)

05.08.2013 20:13, Yamaya Takashi пишет:
> 
> Some ports, e.g. devel/glib20, cannot build because devel/gettext has no
> libiconv linkage.
> msgfmt cannot handle utf-8 and say "invalid multibyte sequence".
> 
> Patch attached file and rebuild devel/gettext, msgfmt works correctly.

Confirmed. The fix works. Thanks!

-- 
WBR, Boris Samorodov (bsam)
FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

[patch]Uses/iconv.mk, devel/getext has no libiconv linkage.

2013-08-05 Thread Yamaya Takashi
Hi.

Some ports, e.g. devel/glib20, cannot build because devel/gettext has no
libiconv linkage.
msgfmt cannot handle utf-8 and say "invalid multibyte sequence".

Patch attached file and rebuild devel/gettext, msgfmt works correctly.


Index: Mk/Uses/iconv.mk
===
--- Mk/Uses/iconv.mk	(revision 324274)
+++ Mk/Uses/iconv.mk	(working copy)
@@ -17,5 +17,6 @@
 .endif
 
 LIB_DEPENDS+=	libiconv.so.3:${PORTSDIR}/converters/libiconv
+LDFLAGS+= -L${LOCALBASE}/lib -liconv
 
 .endif
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"