mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
Using a enum is all nice and generic, but at this point it seems unlikely that we'll add further build modes. But having an enum means that we need to include the header file with the enumeration whenerever the conditional is used. I want to use the conditional in log.h, which makes it hard to avoid circular imports.
7 lines
128 B
C
7 lines
128 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "version.h"
|
|
|
|
extern const char* const systemd_features;
|