RTEMS/Ada: Remove RTEMS quirk
authorSebastian Huber <sebastian.huber@embedded-brains.de>
Fri, 18 Jan 2019 08:34:00 +0000 (08:34 +0000)
committerSebastian Huber <sh@gcc.gnu.org>
Fri, 18 Jan 2019 08:34:00 +0000 (08:34 +0000)
The new network stack (libbsd) supports IPv6.

gcc/ada

* s-oscons-tmplt.c (AF_INET6): Do not undefine for RTEMS.

From-SVN: r268061

gcc/ada/ChangeLog
gcc/ada/s-oscons-tmplt.c

index d680ef6..d992dc1 100644 (file)
@@ -1,3 +1,7 @@
+2019-01-18  Sebastian Huber  <sebastian.huber@embedded-brains.de>
+
+       * s-oscons-tmplt.c (AF_INET6): Do not undefine for RTEMS.
+
 2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
 
        PR other/16615
index f69b5a1..f63ea52 100644 (file)
@@ -1041,14 +1041,6 @@ CST(PTY_Library, "for g-exptty")
 #endif
 CND(AF_INET, "IPv4 address family")
 
-/**
- ** RTEMS lies and defines AF_INET6 even though there is no IPV6 support.
- ** Its TCP/IP stack is in transition.  It has newer .h files but no IPV6 yet.
- **/
-#if defined(__rtems__)
-# undef AF_INET6
-#endif
-
 #ifndef AF_INET6
 # define AF_INET6 -1
 #else