summaryrefslogtreecommitdiff
path: root/media-plugins/tap-plugins/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-11-25 22:39:15 +0000
commitd934827bf44b7cfcf6711964418148fa60877668 (patch)
tree0625f358789b5e015e49db139cc1dbc9be00428f /media-plugins/tap-plugins/files
parent2e34d110f164bf74d55fced27fe0000201b3eec5 (diff)
gentoo resync : 25.11.2020
Diffstat (limited to 'media-plugins/tap-plugins/files')
-rw-r--r--media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch b/media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch
deleted file mode 100644
index 0bfaa5873d23..000000000000
--- a/media-plugins/tap-plugins/files/tap-plugins-0.7.3-cflags-ldflags.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Index: tap-plugins-0.7.3/Makefile
-===================================================================
---- tap-plugins-0.7.3.orig/Makefile
-+++ tap-plugins-0.7.3/Makefile
-@@ -35,8 +35,11 @@ INSTALL_LRDF_DIR = /usr/local/share/lads
- # GENERAL
-
- CC = gcc
--CFLAGS = -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC
--LDFLAGS = -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt
-+OPT_CFLAGS = -O3 -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math
-+CFLAGS = -I. -Wall $(OPT_CFLAGS) -c -fPIC -DPIC
-+EXTRA_LDFLAGS =
-+LDFLAGS = -nostartfiles -shared -Wl,-Bsymbolic $(EXTRA_LDFLAGS)
-+LIBADD = -lc -lm -lrt
- MODULES = $(wildcard *.c)
-
- all: $(MODULES:%.c=%.so)
-@@ -51,7 +54,7 @@ tap_dynamics_st.o: tap_dynamics_presets.
- $(CC) $(CFLAGS) $< -o $@
-
- %.so: %.o
-- $(CC) -o $@ $< $(LDFLAGS)
-+ $(CC) $(LDFLAGS) -o $@ $< $(LIBADD)
-
- # OTHER TARGETS
-