1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 01:03:12 +02:00

Document the sysconf header file.

This commit is contained in:
Sadie Powell
2022-01-13 13:46:29 +00:00
parent 83bf5ba255
commit 15d51ff033
2 changed files with 10 additions and 4 deletions
+9 -3
View File
@@ -11,12 +11,18 @@
#pragma once
#cmakedefine DEBUG_BUILD
// The default umask to use for files.
#cmakedefine DEFUMASK @DEFUMASK@
#cmakedefine01 HAVE_UMASK
// Whether Anope was built in debug mode.
#cmakedefine01 DEBUG_BUILD
// Whether Anope was built with localization support.
#cmakedefine01 HAVE_LOCALIZATION
// Whether the umask() function is available.
#cmakedefine01 HAVE_UMASK
#ifdef _WIN32
# define popen _popen
# define pclose _pclose
+1 -1
View File
@@ -617,7 +617,7 @@ Anope::string Anope::VersionBuildString()
#endif
Anope::string flags;
#ifdef DEBUG_BUILD
#if DEBUG_BUILD
flags += "D";
#endif
#ifdef VERSION_GIT