diff options
| author | Michael Stapelberg | 2019-07-11 15:23:08 +0200 | 
|---|---|---|
| committer | Michael Stapelberg | 2019-07-11 15:23:08 +0200 | 
| commit | 1999d5cf555c6f373549840d40f8565dcabad93b (patch) | |
| tree | cb8ac50e9f896f30a874c2c4764cb0db2bc9ea93 | |
| parent | Extend battery handling on OpenBSD (#351) (diff) | |
conditionally compile pulse.c only when using pulseaudio
fixes #352
| -rw-r--r-- | Makefile.am | 7 | ||||
| -rw-r--r-- | configure.ac | 3 | 
2 files changed, 8 insertions, 2 deletions
| diff --git a/Makefile.am b/Makefile.am index bb251f0..c2c1c0a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -68,8 +68,11 @@ i3status_SOURCES = \  	src/print_volume.c \  	src/print_wireless_info.c \  	src/print_file_contents.c \ -	src/process_runs.c \ -	src/pulse.c +	src/process_runs.c + +if PULSE +i3status_SOURCES += src/pulse.c +endif  dist_sysconf_DATA = \  	i3status.conf diff --git a/configure.ac b/configure.ac index cf9e430..95009ac 100644 --- a/configure.ac +++ b/configure.ac @@ -80,16 +80,19 @@ AC_CANONICAL_HOST  PKG_CHECK_MODULES([CONFUSE], [libconfuse])  PKG_CHECK_MODULES([YAJL], [yajl]) +pulse=false  case $host_os in  	linux*)  	PKG_CHECK_MODULES([NLGENL], [libnl-genl-3.0])  	PKG_CHECK_MODULES([ALSA], [alsa])  	PKG_CHECK_MODULES([PULSE], [libpulse]) +	pulse=true  	;;  	netbsd*)  	AC_SEARCH_LIBS([prop_string_create], [prop])  	;;  esac +AM_CONDITIONAL([PULSE], [test x$pulse = xtrue])  dnl TODO: check for libbsd for GNU/kFreeBSD | 
