This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, fedora/master, updated. glibc-2.13-943-g73206a6


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, fedora/master has been updated
       via  73206a6fb40b2c617eb96b8ba43e4940c1725117 (commit)
       via  f9a4f81455bfb5052f71072cb90efdaaedceb53a (commit)
       via  3e4fa87007da7ef7ae78fadbd6226bb8a76f4dd5 (commit)
       via  b9af13014f3a45e26bff5b554b08979cb89b68a9 (commit)
       via  018b9e368d5c0ae76a6df02ba5ebaeac97363570 (commit)
       via  4e34d5f58955ddfc174b20ae0e5081bb1db983be (commit)
      from  f99799e15a4d2e25ea99e51c2b76e6a689e87b56 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=73206a6fb40b2c617eb96b8ba43e4940c1725117

commit 73206a6fb40b2c617eb96b8ba43e4940c1725117
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri May 6 10:10:48 2011 +0200

    2.13.90-11

diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index dc97687..adff925 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -22,7 +22,7 @@
 Summary: The GNU libc libraries
 Name: glibc
 Version: %{glibcversion}
-Release: 10
+Release: 11
 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
 # Things that are linked directly into dynamically linked programs
 # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
@@ -1046,6 +1046,11 @@ rm -f *.filelist*
 %endif
 
 %changelog
+* Thu May  5 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-11
+- Update from master
+  - Don't use removed rpc headers
+- Install rpc/netdb.h again
+
 * Wed May  4 2011 Andreas Schwab <schwab@redhat.com> - 2.13.90-10
 - Update from master
   - ldconfig: don't crash on empty path in config file (#699784)

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=f9a4f81455bfb5052f71072cb90efdaaedceb53a

commit f9a4f81455bfb5052f71072cb90efdaaedceb53a
Author: Andreas Schwab <schwab@redhat.com>
Date:   Thu May 5 14:39:54 2011 +0200

    Install rpc/netdb.h again

diff --git a/ChangeLog b/ChangeLog
index 4c091a8..7200801 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-05-06  Andreas Schwab  <schwab@redhat.com>
+
+	* sunrpc/Makefile (headers): Add rpc/netdb.h.
+	(headers-not-in-tirpc): Remove rpc/netdb.h
+	* resolv/netdb.h: Revert last change.
+
 2011-05-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
 
 	* Makeconfig (link-libc-static): Use --{start,end}-group to handle
diff --git a/resolv/netdb.h b/resolv/netdb.h
index b70639b..6b76a25 100644
--- a/resolv/netdb.h
+++ b/resolv/netdb.h
@@ -27,6 +27,11 @@
 
 #include <netinet/in.h>
 #include <stdint.h>
+#ifdef __USE_MISC
+/* This is necessary to make this include file properly replace the
+   Sun version.  */
+# include <rpc/netdb.h>
+#endif
 
 #ifdef __USE_GNU
 # define __need_sigevent_t
diff --git a/sunrpc/Makefile b/sunrpc/Makefile
index 19d2cda..5134ce9 100644
--- a/sunrpc/Makefile
+++ b/sunrpc/Makefile
@@ -47,12 +47,13 @@ subdir	:= sunrpc
 rpcsvc = bootparam_prot.x nlm_prot.x rstat.x \
 	 yppasswd.x klm_prot.x rex.x sm_inter.x mount.x \
 	 rusers.x spray.x nfs_prot.x rquota.x key_prot.x
-headers_in_tirpc = $(addprefix rpc/,auth.h auth_unix.h clnt.h pmap_clnt.h \
+headers-in-tirpc = $(addprefix rpc/,auth.h auth_unix.h clnt.h pmap_clnt.h \
 				    pmap_prot.h pmap_rmt.h rpc.h rpc_msg.h \
 				    svc.h svc_auth.h types.h xdr.h auth_des.h \
 				    des_crypt.h)
-headers_not_in_tirpc = $(addprefix rpc/,netdb.h key_prot.h rpc_des.h) \
+headers-not-in-tirpc = $(addprefix rpc/,key_prot.h rpc_des.h) \
 		       $(rpcsvc:%=rpcsvc/%) rpcsvc/bootparam.h
+headers = rpc/netdb.h
 install-others = $(inst_sysconfdir)/rpc
 generated = $(rpcsvc:%.x=rpcsvc/%.h) $(rpcsvc:%.x=x%.c) $(rpcsvc:%.x=x%.stmp) \
 	    $(rpcsvc:%.x=rpcsvc/%.stmp) rpcgen
@@ -87,7 +88,7 @@ rpcgen-objs = rpc_main.o rpc_hout.o rpc_cout.o rpc_parse.o \
 	      rpc_tblout.o rpc_sample.o
 # These headers are part of rpcgen.
 distribute := proto.h rpc_util.h rpc_parse.h rpc_scan.h \
-	      $(headers_in_tirpc) $(headers_not_in_tirpc) \
+	      $(headers-in-tirpc) $(headers-not-in-tirpc) \
 	      $(rpcgen-objs:.o=.c) etc.rpc \
 	      errqueue.h
 extra-objs = $(rpcgen-objs)

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=3e4fa87007da7ef7ae78fadbd6226bb8a76f4dd5

commit 3e4fa87007da7ef7ae78fadbd6226bb8a76f4dd5
Merge: f99799e b9af130
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri May 6 10:09:21 2011 +0200

    Merge remote-tracking branch 'origin/master' into fedora/master


-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |   19 +++++++++++++++++++
 Makeconfig             |    2 +-
 NEWS                   |    7 ++++++-
 fedora/glibc.spec.in   |    7 ++++++-
 inet/protocols/timed.h |    4 +++-
 nis/Makefile           |    4 ++--
 sunrpc/Makefile        |    7 ++++---
 7 files changed, 41 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]