summaryrefslogtreecommitdiff
path: root/media-gfx/ttygif/files/ldflags-support.patch
blob: 201f72fb04a69eb992b8d60c7fb58e09a9b49ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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