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.26-339-g3ca622e


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  3ca622e4d6054c0b99b2df36580462663edc8d12 (commit)
      from  620ff9eea68d8edf0cdfb1e5cbb653993002484e (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=3ca622e4d6054c0b99b2df36580462663edc8d12

commit 3ca622e4d6054c0b99b2df36580462663edc8d12
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Tue Sep 12 18:52:05 2017 -0300

    posix: Fix compat glob code on s390 and alpha
    
    This patch fixes the compat glob implementation consolidation from
    commit 116f1c64d with the following changes:
    
      - Add a compat implementation on s390 to avoid the architecture
        to build the symbols on default linux oldglob.c by setting
        GLOB_NO_OLD_VERSION.
    
      - Remove the duplicate rule to build oldglob on alpha.
    
    Checked on s390-linux-gnu and alpha-linux-gnu using build-many-glibc.py.
    
    	* sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c: New file.
    	* sysdeps/unix/sysv/linux/alpha/Makefile
    	[$(subdir) = csu] (sysdep_routines): Remove rule.

diff --git a/ChangeLog b/ChangeLog
index e7b77ce..3b74c0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-09-13  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
+
+	* sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c: New file.
+	* sysdeps/unix/sysv/linux/alpha/Makefile
+	[$(subdir) = csu] (sysdep_routines): Remove rule.
+
 2017-09-13  Joseph Myers  <joseph@codesourcery.com>
 
 	* sysdeps/generic/libm-alias-double.h: New file.
diff --git a/sysdeps/unix/sysv/linux/alpha/Makefile b/sysdeps/unix/sysv/linux/alpha/Makefile
index 47bd189..50f4fb1 100644
--- a/sysdeps/unix/sysv/linux/alpha/Makefile
+++ b/sysdeps/unix/sysv/linux/alpha/Makefile
@@ -1,7 +1,3 @@
-ifeq ($(subdir),posix)
-sysdep_routines += oldglob
-endif
-
 ifeq ($(subdir),stdlib)
 gen-as-const-headers += ucontext-offsets.sym
 endif
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c b/sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c
new file mode 100644
index 0000000..56d7d12
--- /dev/null
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c
@@ -0,0 +1,2 @@
+#define GLOB_NO_OLD_VERSION
+#include <sysdeps/unix/sysv/linux/oldglob.c>

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

Summary of changes:
 ChangeLog                                      |    6 ++++++
 sysdeps/unix/sysv/linux/alpha/Makefile         |    4 ----
 sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c |    2 ++
 3 files changed, 8 insertions(+), 4 deletions(-)
 create mode 100644 sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c


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]