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 master updated. glibc-2.23-172-ge1ef505


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, master has been updated
       via  e1ef505659e9720ebdb116a21e91e0398cd411e5 (commit)
      from  0cdc5e930a95ca2ec3f2fd9327da93a2fbaf8e97 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e1ef505659e9720ebdb116a21e91e0398cd411e5

commit e1ef505659e9720ebdb116a21e91e0398cd411e5
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Apr 11 10:27:02 2016 +0200

    Fix build with HAVE_AUX_VECTOR
    
    	* sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_VECTOR): Define before
    	including <ldsodefs.h>.
    	* sysdeps/nacl/ldsodefs.h (HAVE_AUX_VECTOR): Likewise.

diff --git a/ChangeLog b/ChangeLog
index fc5ffd8..e813e56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
 	[!HAVE_AUX_VECTOR]: Do not define _dl_auxv field.
 	* misc/getauxval.c (__getauxval) [!HAVE_AUX_VECTOR]: Do not go through
 	GLRO(dl_auxv) list.
+	* sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_VECTOR): Define before
+	including <ldsodefs.h>.
+	* sysdeps/nacl/ldsodefs.h (HAVE_AUX_VECTOR): Likewise.
 
 2016-04-09  Nick Alcock  <nick.alcock@oracle.com>
 
diff --git a/sysdeps/nacl/ldsodefs.h b/sysdeps/nacl/ldsodefs.h
index bc7723a..c6307a6 100644
--- a/sysdeps/nacl/ldsodefs.h
+++ b/sysdeps/nacl/ldsodefs.h
@@ -18,14 +18,14 @@
 
 #ifndef	_LDSODEFS_H
 
+/* We have the auxiliary vector.  */
+#define HAVE_AUX_VECTOR	1
+
 /* Get the real definitions.  */
 #include_next <ldsodefs.h>
 
 /* Now define our stuff.  */
 
-/* We have the auxiliary vector.  */
-#define HAVE_AUX_VECTOR	1
-
 /* Used by static binaries to check the auxiliary vector.  */
 extern void _dl_aux_init (ElfW(auxv_t) *av) internal_function;
 
diff --git a/sysdeps/unix/sysv/linux/ldsodefs.h b/sysdeps/unix/sysv/linux/ldsodefs.h
index 1f4d9e3..4c3676e 100644
--- a/sysdeps/unix/sysv/linux/ldsodefs.h
+++ b/sysdeps/unix/sysv/linux/ldsodefs.h
@@ -18,12 +18,12 @@
 
 #ifndef	_LDSODEFS_H
 
-/* Get the real definitions.  */
-#include_next <ldsodefs.h>
-
 /* We have the auxiliary vector.  */
 #define HAVE_AUX_VECTOR
 
+/* Get the real definitions.  */
+#include_next <ldsodefs.h>
+
 /* We can assume that the kernel always provides the AT_UID, AT_EUID,
    AT_GID, and AT_EGID values in the auxiliary vector from 2.4.0 or so on.  */
 #define HAVE_AUX_XID

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

Summary of changes:
 ChangeLog                          |    3 +++
 sysdeps/nacl/ldsodefs.h            |    6 +++---
 sysdeps/unix/sysv/linux/ldsodefs.h |    6 +++---
 3 files changed, 9 insertions(+), 6 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]