summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2020-01-07 22:39:29 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2020-01-07 22:51:41 +0100
commitb911b2f6edaa8ee45b1f860ddf0cf061ccc96e1f (patch)
tree04aef1499999672f8e53ee1b7b56023844d519b6 /CMake
parent3732fa6e73c8c0c80e8d2b03c002ad66f4e75183 (diff)
Only define likely/unlikely if APT_COMPILING_APT set
This ensures that we do not leak simple words like that.
Diffstat (limited to 'CMake')
-rw-r--r--CMake/config.h.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMake/config.h.in b/CMake/config.h.in
index b89f7297d..911d42464 100644
--- a/CMake/config.h.in
+++ b/CMake/config.h.in
@@ -64,6 +64,9 @@
/* The mail address to reach upstream */
#define PACKAGE_MAIL "${PACKAGE_MAIL}"
+/* Guard for code that should only be emitted when compiling apt */
+#define APT_COMPILING_APT
+
/* Various directories */
#cmakedefine CMAKE_INSTALL_FULL_BINDIR "${CMAKE_INSTALL_FULL_BINDIR}"
#cmakedefine STATE_DIR "${STATE_DIR}"