]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Drop references to Windows in doc/dev
authorTony Finch <fanf@isc.org>
Wed, 9 Mar 2022 17:18:21 +0000 (17:18 +0000)
committerTony Finch <fanf@isc.org>
Wed, 9 Mar 2022 18:01:28 +0000 (18:01 +0000)
Windows is not a supported platform any more.

doc/dev/dev.md
doc/dev/style.md

index 7150bcf79fbc41769bfd4d201fce6bd722d3e42b..bf7aa94020e10629a9d1e214411731d174d2d914 100644 (file)
@@ -108,9 +108,7 @@ comments; they must be clearly written and consistent with existing style.
 * Copies of code that could be unified in a helper function
 * Premature optimizations
 * Compiler warnings introduced
-* Portability issues:
- * Use of non-POSIX library calls or options
- * API changes correctly reflected in Windows `*.def` files
+* Portability issues, such as the use of non-POSIX library calls or options
 * DNS/protocol problems
 * Cut/pasted code that may have been modified in one place but needs to be modified in other places as well
 * No tests or inadequate tests
@@ -999,9 +997,9 @@ the program.  File descriptor destinations are never closed, have no
 maximum size limit, and do not do version control.
 
 Syslog destinations are associated with the standard syslog facilities
-available on your system: generally `syslogd` on UNIX and Linux systems
-and the Application log in the Event Viewer on Windows systems.  They too
-have no maximum size limit and do no version control.
+available on your system: generally `syslogd` on UNIX and Linux
+systems. They too have no maximum size limit and do no version
+control.
 
 Since null channels go nowhere, no additional destination
 specification is necessary.
index 72a8ef15a5e4c9cce9d5af876715dc0e9ea9dc05..244ee2bb29165bd91b8606c0f8f6353761387ca8 100644 (file)
@@ -24,8 +24,7 @@ below.
 
 A C11 compiler, library with C11 extensions and POSIX:2001 are assumed.  Feel
 free to use any C11 feature, but make sure to provide compatibility shims for
-all supported platforms, e.g. Windows MSVC that doesn't support all of the C11
-features.
+all supported platforms that don't support all of the C11 features.
 
 #### Warnings