mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
When checking if we have the development files for libsystemd's journal APIs, check for either 'libsystemd >= 209' and 'libsystemd-journal'. If we find 'libsystemd', define the 'journald' tag, which defaults to using the 'libsystemd.pc' file. If we find the older 'libsystemd-journal', define both the 'journald' and 'journald_compat' tags, which causes the 'libsystemd-journal.pc' file to be consulted instead. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com> (github: nalind)
7 lines
128 B
Go
7 lines
128 B
Go
// +build linux,cgo,!static_build,journald,journald_compat
|
|
|
|
package journald
|
|
|
|
// #cgo pkg-config: libsystemd-journal
|
|
import "C"
|