From 9452a6e87b6c2c70513bc47a2470bf9f1168920e Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 13 Jun 2020 10:39:22 +0100 Subject: gentoo resync : 13.06.2020 --- media-gfx/ttygif/files/ldflags-support.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 media-gfx/ttygif/files/ldflags-support.patch (limited to 'media-gfx/ttygif/files/ldflags-support.patch') diff --git a/media-gfx/ttygif/files/ldflags-support.patch b/media-gfx/ttygif/files/ldflags-support.patch new file mode 100644 index 000000000000..201f72fb04a6 --- /dev/null +++ b/media-gfx/ttygif/files/ldflags-support.patch @@ -0,0 +1,19 @@ +--- a/Makefile 2020-06-09 12:07:21.881455454 -0000 ++++ b/Makefile 2020-06-09 12:08:43.984010587 -0000 +@@ -2,6 +2,7 @@ + VERSION = '"1.4.0"' + CFLAGS += -O2 -Wall -DVERSION=$(VERSION) + PREFIX ?= /usr/local ++LDFLAGS ?= -L/usr/lib + + UNAME := $(shell uname) + ifeq ($(UNAME), Darwin) +@@ -14,7 +15,7 @@ + all: ttygif + + ttygif: ttygif.o io.o string_builder.o utils.o +- $(CC) $(CFLAGS) -o ttygif ttygif.o io.o string_builder.o utils.o ++ $(CC) $(CFLAGS) -o ttygif ttygif.o io.o string_builder.o utils.o $(LDFLAGS) + + install: ttygif + install -d $(PREFIX)/bin -- cgit v1.2.3