diff options
author | Ingo Bürk <admin@airblader.de> | 2018-07-15 21:47:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-15 21:47:26 +0200 |
commit | 1174bfa7dad3c830b415679b8c704e6d6e82f64b (patch) | |
tree | ab0f1b0d18581788a0351e9db9a013afae34f9fb /Makefile | |
parent | fc9da67e65819cb14071db4fd5b7941ab01a1134 (diff) | |
parent | deca11c0a0f619c3df8c1bb240935b4e38867260 (diff) |
Merge pull request #298 from tuxillo/patch-1
Do not use pulseaudio for DragonFly BSD
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -85,6 +85,11 @@ OBJS:=$(filter-out src/pulse.o, $(OBJS)) LIBS:=$(filter-out -lpulse, $(LIBS)) endif +ifeq ($(OS),DragonFly) +OBJS:=$(filter-out src/pulse.o, $(OBJS)) +LIBS:=$(filter-out -lpulse, $(LIBS)) -lpthread +endif + src/%.o: src/%.c include/i3status.h $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< @echo " CC $<" |