diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2016-01-12 11:57:04 -0800 |
---|---|---|
committer | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2016-01-12 11:57:04 -0800 |
commit | 8918502fcd23243ea01bfc23949b6c320049104c (patch) | |
tree | 06f797b140d2d0f71babc04a145d668e95bf8504 /Makefile | |
parent | fad9c8237c63290aa9adde5ba6ffa6759f578645 (diff) | |
parent | dd75c260f86ed13c1937cd9369948cdbe8e25d12 (diff) |
Merge pull request #95 from Watcom/nanosleep
revert back to using nanosleep
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -23,6 +23,7 @@ LIBS+=-lconfuse LIBS+=-lyajl LIBS+=-lpulse LIBS+=-lm +LIBS+=-lpthread VERSION:=$(shell git describe --tags --abbrev=0) GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1))" @@ -72,7 +73,7 @@ OBJS:=$(OBJS:.c=.o) ifeq ($(OS),OpenBSD) OBJS:=$(filter-out src/pulse.o, $(OBJS)) -LIBS:=$(filter-out -lpulse, $(LIBS)) -lpthread +LIBS:=$(filter-out -lpulse, $(LIBS)) endif src/%.o: src/%.c include/i3status.h |