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.24-320-g960294f


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  960294f00a33559af40143ac056f68d21c006d27 (commit)
      from  1b16ff0b1e6906d4f5a4380c4ca5750e87c5e52d (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=960294f00a33559af40143ac056f68d21c006d27

commit 960294f00a33559af40143ac056f68d21c006d27
Author: Carlos O'Donell <carlos@redhat.com>
Date:   Fri Oct 28 16:17:30 2016 -0400

    Add include/crypt.h.
    
    To support tests that include crypt.h we add a wrapper.

diff --git a/ChangeLog b/ChangeLog
index d49f221..cbd4409 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-10-28  Carlos O'Donell  <carlos@redhat.com>
+
+	* elf/Makefile (CFALGS-tst-linkall-static): Remove.
+	* include/crypt.h: New file.
+
 2016-10-28  Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
 
 	* dlfcn/bug-atexit3-lib.cc (write_message): New function, copied
diff --git a/elf/Makefile b/elf/Makefile
index 057a19f..82c7e05 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -1280,7 +1280,6 @@ $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig
 
 $(objpfx)tst-dlsym-error: $(libdl)
 
-CFLAGS-tst-linkall-static.c = -I../crypt
 $(objpfx)tst-linkall-static: \
   $(common-objpfx)math/libm.a \
   $(common-objpfx)crypt/libcrypt.a \
diff --git a/include/crypt.h b/include/crypt.h
new file mode 100644
index 0000000..544551d
--- /dev/null
+++ b/include/crypt.h
@@ -0,0 +1,3 @@
+#ifndef _CRYPT_H
+# include <crypt/crypt.h>
+#endif /* _CRYPT_H */

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

Summary of changes:
 ChangeLog       |    5 +++++
 elf/Makefile    |    1 -
 include/crypt.h |    3 +++
 3 files changed, 8 insertions(+), 1 deletions(-)
 create mode 100644 include/crypt.h


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]