mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
On the port side, this update brings: - libvulkan enabled by default - more unit tests enabled - no longer dependent on Python 2.7 Security: https://vuxml.freebsd.org/freebsd/e0914087-9a09-11ec-9e61-3065ec8fd3ec.html
18 lines
649 B
C++
18 lines
649 B
C++
--- net/dns/dns_reloader.cc.orig 2022-02-28 16:54:41 UTC
|
|
+++ net/dns/dns_reloader.cc
|
|
@@ -6,7 +6,7 @@
|
|
|
|
#include "build/build_config.h"
|
|
|
|
-#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_APPLE) && !BUILDFLAG(IS_OPENBSD) && \
|
|
+#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_APPLE) && !BUILDFLAG(IS_BSD) && \
|
|
!BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_FUCHSIA)
|
|
|
|
#include <resolv.h>
|
|
@@ -113,5 +113,5 @@ void DnsReloaderMaybeReload() {
|
|
|
|
} // namespace net
|
|
|
|
-#endif // BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_APPLE) && !BUILDFLAG(IS_OPENBSD)
|
|
+#endif // BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_APPLE) && !BUILDFLAG(IS_BSD) &&
|
|
// && !BUILDFLAG(IS_ANDROID)
|