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, release/2.16/master, updated. glibc-2.16.0-8-ga7ef7b6


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, release/2.16/master has been updated
       via  a7ef7b6735083a0c6e726cad950f5621517f46d4 (commit)
      from  95e039785ae82800fdd0ae0ba2dcaa2f0e9d9d7a (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=a7ef7b6735083a0c6e726cad950f5621517f46d4

commit a7ef7b6735083a0c6e726cad950f5621517f46d4
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Tue Jul 3 15:22:05 2012 -0400

    sunrpc: fix rpc bootstrap builds
    
    If you build & install glibc w/rpc disabled, you no longer have headers in
    /usr/include/rpc/ (this is expected).  But if you try to build glibc w/rpc
    enabled, this gets into a bad state due to the new rpc helpers that get
    cross-compiled:
    
    $ make
    ...
    x86_64-pc-linux-gnu-gcc -m32   -D_RPC_THREAD_SAFE_ -D_GNU_SOURCE -DIS_IN_build \
    	-include $objdir/config.h rpc_clntout.c -o $objdir/sunrpc/cross-rpc_clntout.o \
    	-MMD -MP -MF $objdir/sunrpc/cross-rpc_clntout.o.dt -MT $objdir/sunrpc/cross-rpc_clntout.o -c
    rpc_clntout.c:34:23: fatal error: rpc/types.h: No such file or directory
    compilation terminated.
    make: *** [$objdir/sunrpc/cross-rpc_clntout.o] Error 1
    
    Signed-off-by: Mike Frysinger <vapier@gentoo.org>
    
    (cherry picked from commit fb21f89b75d0152aa42efb6b620843799a4cd76b)

diff --git a/ChangeLog b/ChangeLog
index 32bb345..27cf01e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-07-06  Mike Frysinger  <vapier@gentoo.org>
+
+	* sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
+
 2012-07-16  Andreas Jaeger  <aj@suse.de>
 
 	* po/ru.po: Update from translation team.
diff --git a/sunrpc/rpc_clntout.c b/sunrpc/rpc_clntout.c
index ec040c7..ce4d2a4 100644
--- a/sunrpc/rpc_clntout.c
+++ b/sunrpc/rpc_clntout.c
@@ -31,7 +31,7 @@
  */
 #include <stdio.h>
 #include <string.h>
-#include <rpc/types.h>
+#include "rpc/types.h"
 #include "rpc_parse.h"
 #include "rpc_util.h"
 #include "proto.h"

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

Summary of changes:
 ChangeLog            |    4 ++++
 sunrpc/rpc_clntout.c |    2 +-
 2 files changed, 5 insertions(+), 1 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]