Subj : .gitlab-ci.yml src/syncterm/conn.h To : Git commit to main/sbbs/master From : Deucе Date : Sat Oct 04 2025 08:29 pm https://gitlab.synchro.net/main/sbbs/-/commit/8d9686a695eab484fbaf31d2 Modified Files: .gitlab-ci.yml src/syncterm/conn.h Log Message: MSVC hates standards The MSVC headers will error out if you #include stdatomic.h (which is shipped as part of the MSVC C libraries) if __STDC_NO_ATOMICS__ is defined (which MSVC unconditionally defines in at least C17 mode). So, for Microsoft C compilers, undef this macro before including stdatomic.h Now we can re-enable the build. .