public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] glibc-2.14 and changes in rpc support (libtirpc)
@ 2011-06-11 20:11 Mike Frysinger
  2011-08-31 20:29 ` Mike Frysinger
  2011-11-07 20:03 ` [gentoo-dev] glibc-2.14.1 destined for ~arch Mike Frysinger
  0 siblings, 2 replies; 4+ messages in thread
From: Mike Frysinger @ 2011-06-11 20:11 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 846 bytes --]

historically, glibc provided all the ugly rpc support (while not nearly as 
relevant today, it still is used by way of nfs support).  the glibc 
maintainers have opted to stop supporting this.  at first they declined to 
accept new features, but now they've started removing support for new code to 
build against it.

libtirpc started off to support the new features (namely ipv6 support), but 
has now taken on a new roll of supporting all the rpc code.

so if you have a build bug due to glibc-2.14 due to missing rpc/ or rpcsvc/ 
header, you're going to have to convert over to libtirpc.

something like:
	inherit toolchain-funcs
	...
	append-cppflags $($(tc-getPKG_CONFIG) libtirpc --cflags)
	export LIBS+=" $($(tc-getPKG_CONFIG) libtirpc --libs)"

obviously the LIBS part will need tweaking based on your package.
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-dev] glibc-2.14 and changes in rpc support (libtirpc)
  2011-06-11 20:11 [gentoo-dev] glibc-2.14 and changes in rpc support (libtirpc) Mike Frysinger
@ 2011-08-31 20:29 ` Mike Frysinger
  2011-11-07 20:03 ` [gentoo-dev] glibc-2.14.1 destined for ~arch Mike Frysinger
  1 sibling, 0 replies; 4+ messages in thread
From: Mike Frysinger @ 2011-08-31 20:29 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: Text/Plain, Size: 1366 bytes --]

On Saturday, June 11, 2011 16:11:35 Mike Frysinger wrote:
> historically, glibc provided all the ugly rpc support (while not nearly as
> relevant today, it still is used by way of nfs support).  the glibc
> maintainers have opted to stop supporting this.  at first they declined to
> accept new features, but now they've started removing support for new code
> to build against it.
> 
> libtirpc started off to support the new features (namely ipv6 support), but
> has now taken on a new roll of supporting all the rpc code.
> 
> so if you have a build bug due to glibc-2.14 due to missing rpc/ or rpcsvc/
> header, you're going to have to convert over to libtirpc.
> 
> something like:
> 	inherit toolchain-funcs
> 	...
> 	append-cppflags $($(tc-getPKG_CONFIG) libtirpc --cflags)
> 	export LIBS+=" $($(tc-getPKG_CONFIG) libtirpc --libs)"
> 
> obviously the LIBS part will need tweaking based on your package.

after seeing the feedback of broken packages, and libtirpc itself not being 
ready as a full replacement for the rpc symbols, i plan on implementing the 
same kind of hack that fedora is using atm: re-exporting the symbols and 
headers.  this will give us time to migrate packages over to libtirpc without 
being stuck on glibc-2.13 indefinitely.

the ABI will not be adversely affected long or short or any other term.
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-dev] glibc-2.14.1 destined for ~arch
  2011-06-11 20:11 [gentoo-dev] glibc-2.14 and changes in rpc support (libtirpc) Mike Frysinger
  2011-08-31 20:29 ` Mike Frysinger
@ 2011-11-07 20:03 ` Mike Frysinger
  2011-11-22 16:38   ` Mike Frysinger
  1 sibling, 1 reply; 4+ messages in thread
From: Mike Frysinger @ 2011-11-07 20:03 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: Text/Plain, Size: 236 bytes --]

now that glibc-2.14 no longer breaks all rpc packages, i'll be adding 2.14.1 
in a bit and then moving it to ~arch later this week.  a package or two is 
broken by this, but i think we're in a good state to see wider testing.
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [gentoo-dev] glibc-2.14.1 destined for ~arch
  2011-11-07 20:03 ` [gentoo-dev] glibc-2.14.1 destined for ~arch Mike Frysinger
@ 2011-11-22 16:38   ` Mike Frysinger
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger @ 2011-11-22 16:38 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: Text/Plain, Size: 353 bytes --]

On Monday 07 November 2011 15:03:12 Mike Frysinger wrote:
> now that glibc-2.14 no longer breaks all rpc packages, i'll be adding
> 2.14.1 in a bit and then moving it to ~arch later this week.  a package or
> two is broken by this, but i think we're in a good state to see wider
> testing.

as semi-promised, it's now in ~arch.  happy turkey day.
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-11-22 16:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-11 20:11 [gentoo-dev] glibc-2.14 and changes in rpc support (libtirpc) Mike Frysinger
2011-08-31 20:29 ` Mike Frysinger
2011-11-07 20:03 ` [gentoo-dev] glibc-2.14.1 destined for ~arch Mike Frysinger
2011-11-22 16:38   ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox