]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Add preprocessor checks to <experimental/internet> [PR100285]
authorJonathan Wakely <jwakely@redhat.com>
Fri, 9 Jun 2023 11:15:21 +0000 (12:15 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 9 Jun 2023 12:15:39 +0000 (13:15 +0100)
We can't define endpoints and resolvers without the relevant OS support.
If IPPROTO_TCP and IPPROTO_UDP are both udnefined then we won't need
basic_endpoint and basic_resovler anyway, so make them depend on those
macros.

libstdc++-v3/ChangeLog:

PR libstdc++/100285
* include/experimental/internet [IPPROTO_TCP || IPPROTO_UDP]
(basic_endpoint, basic_resolver_entry, resolver_base)
(basic_resolver_results, basic_resolver): Only define if the tcp
or udp protocols will be defined.

libstdc++-v3/include/experimental/internet

index 1f63c61ce85a891522ec8703e8921b23867deeac..bd9a05f12aa9ae0e75197b7028c99eb7c96119f6 100644 (file)
@@ -1502,6 +1502,7 @@ namespace ip
     operator<<(basic_ostream<_CharT, _Traits>& __os, const network_v6& __net)
     { return __os << __net.to_string(); }
 
+#if defined IPPROTO_TCP || defined  IPPROTO_UDP
   /// An IP endpoint.
   template<typename _InternetProtocol>
     class basic_endpoint
@@ -2187,6 +2188,7 @@ namespace ip
       __ec = std::make_error_code(errc::operation_not_supported);
 #endif
     }
+#endif // IPPROTO_TCP || IPPROTO_UDP
 
   /** The name of the local host.
    * @{