ports/graphics/imlib2-webp/files/patch-makefile
Li-Wen Hsu 7917b97073 Add graphics/imlib2-webp, an imlib2 plugin for webp images
PR:		232871
Submitted by:	Greg V <greg@unrelenting.technology>
2018-12-11 17:38:50 +00:00

11 lines
387 B
Text

--- makefile.orig 2018-10-31 22:21:03 UTC
+++ makefile
@@ -2,7 +2,7 @@ include commands.mk
OPTS := -O2
CFLAGS := -std=c99 $(OPTS) $(shell imlib2-config --cflags) -fPIC -Wall
-LDFLAGS := $(shell imlib2-config --libs) -lwebp
+LDFLAGS := $(shell imlib2-config --libs) $(shell pkg-config --libs libwebp)
SRC = $(wildcard *.c)
OBJ = $(foreach obj, $(SRC:.c=.o), $(notdir $(obj)))