From 9c417bacd51da6d8b57fa9f37425161d30d4b95b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 28 Nov 2020 20:40:51 +0000 Subject: gentoo resync : 28.11.2020 --- .../i3status/files/i3status-2.11-pulseaudio.patch | 42 ---------------------- 1 file changed, 42 deletions(-) delete mode 100644 x11-misc/i3status/files/i3status-2.11-pulseaudio.patch (limited to 'x11-misc/i3status/files') diff --git a/x11-misc/i3status/files/i3status-2.11-pulseaudio.patch b/x11-misc/i3status/files/i3status-2.11-pulseaudio.patch deleted file mode 100644 index 2447f16f9339..000000000000 --- a/x11-misc/i3status/files/i3status-2.11-pulseaudio.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff --git a/Makefile b/Makefile -index 3084ae7..7ea1964 100644 ---- a/Makefile -+++ b/Makefile -@@ -58,6 +57,10 @@ ifeq ($(OS),NetBSD) - LIBS+=-lprop - endif - -+ifeq ($(OS),OpenBSD) -+LIBS+=-lpthread -+endif -+ - # This probably applies for any pkgsrc based system - ifneq (, $(filter $(OS), NetBSD DragonFly)) - CFLAGS+=-I/usr/pkg/include/ -@@ -79,9 +82,12 @@ CFLAGS += -idirafter yajl-fallback - OBJS:=$(sort $(wildcard src/*.c *.c)) - OBJS:=$(OBJS:.c=.o) - --ifeq ($(OS),OpenBSD) -+PULSE ?= 1 -+ifeq ($(PULSE),0) - OBJS:=$(filter-out src/pulse.o, $(OBJS)) - LIBS:=$(filter-out -lpulse, $(LIBS)) -+else -+CPPFLAGS+=-DPULSE - endif - - src/%.o: src/%.c include/i3status.h -diff --git a/src/print_volume.c b/src/print_volume.c -index 51e84f3..9e015c0 100644 ---- a/src/print_volume.c -+++ b/src/print_volume.c -@@ -61,7 +61,7 @@ void print_volume(yajl_gen json_gen, char *buffer, const char *fmt, const char * - free(instance); - } - --#ifndef __OpenBSD__ -+#if !defined(__OpenBSD__) && defined(PULSE) - /* Try PulseAudio first */ - - /* If the device name has the format "pulse[:N]" where N is the -- cgit v1.2.3