Files
systray/systray_linux_appindicator.go
Seth Wright a957efe6e5 Fix +build lines, remove extraneous pkg-config directive
This commit should make systray build on Ubuntu 20.04 and (hopefully) Debian
11 again. I fumbled the legacy "+build" tag syntax, apparently, and forgot
to remove a pkg-config directive that unconditionally required
libappindicator3 to be installed.
2022-03-02 12:14:44 -05:00

13 lines
219 B
Go

// +build linux,legacy_appindicator
//go:build linux && legacy_appindicator
package systray
/*
#cgo linux pkg-config: appindicator3-0.1
#cgo linux CFLAGS: -DUSE_LEGACY_APPINDICATOR
#include "systray.h"
*/
import "C"