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.9000-1208-g1f89ac7


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  1f89ac719018bf7cd372c4f73aa067ced5f7ecd4 (commit)
      from  80463dc69d0018d03740d440bdcaff2a0d054aee (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=1f89ac719018bf7cd372c4f73aa067ced5f7ecd4

commit 1f89ac719018bf7cd372c4f73aa067ced5f7ecd4
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Jan 29 01:48:24 2018 +0100

    hurd: Fix includes
    
    	* sysdeps/mach/hurd/net/ethernet.h: Include <stdint.h>.
    	* sysdeps/mach/hurd/net/if_arp.h: Include <stdint.h>.
    	* sysdeps/mach/hurd/net/if_ppp.h: Do not include non-existing
    	<net/ppp_defs.h>.

diff --git a/ChangeLog b/ChangeLog
index 6ee1d44..d391807 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -101,6 +101,10 @@
 	* sysdeps/mach/configure (mach_interface_list): Regenerate.
 	* sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_VDISABLE): Set to '\0'
 	instead of invalid -1.
+	* sysdeps/mach/hurd/net/ethernet.h: Include <stdint.h>.
+	* sysdeps/mach/hurd/net/if_arp.h: Include <stdint.h>.
+	* sysdeps/mach/hurd/net/if_ppp.h: Do not include non-existing
+	<net/ppp_defs.h>.
 
 2008-12-18  Thomas Schwinge  <tschwinge@gnu.org>
 
diff --git a/sysdeps/mach/hurd/net/ethernet.h b/sysdeps/mach/hurd/net/ethernet.h
index fecf68c..31f15cb 100644
--- a/sysdeps/mach/hurd/net/ethernet.h
+++ b/sysdeps/mach/hurd/net/ethernet.h
@@ -23,6 +23,7 @@
 
 #include <sys/cdefs.h>
 #include <sys/types.h>
+#include <stdint.h>
 #include <net/if_ether.h>     /* IEEE 802.3 Ethernet constants */
 
 __BEGIN_DECLS
diff --git a/sysdeps/mach/hurd/net/if_arp.h b/sysdeps/mach/hurd/net/if_arp.h
index 949ec2a..01c8b62 100644
--- a/sysdeps/mach/hurd/net/if_arp.h
+++ b/sysdeps/mach/hurd/net/if_arp.h
@@ -26,6 +26,7 @@
 
 #include <sys/types.h>
 #include <sys/socket.h>
+#include <stdint.h>
 
 __BEGIN_DECLS
 
diff --git a/sysdeps/mach/hurd/net/if_ppp.h b/sysdeps/mach/hurd/net/if_ppp.h
index 8ee620b..dbfa152 100644
--- a/sysdeps/mach/hurd/net/if_ppp.h
+++ b/sysdeps/mach/hurd/net/if_ppp.h
@@ -53,7 +53,6 @@
 
 #include <net/if.h>
 #include <sys/ioctl.h>
-#include <net/ppp_defs.h>
 
 __BEGIN_DECLS
 

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

Summary of changes:
 ChangeLog                        |    4 ++++
 sysdeps/mach/hurd/net/ethernet.h |    1 +
 sysdeps/mach/hurd/net/if_arp.h   |    1 +
 sysdeps/mach/hurd/net/if_ppp.h   |    1 -
 4 files changed, 6 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]