From 39cf6f4f365ef4fc9c519790365b5475f97ebc1d Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Mon, 27 Feb 2017 07:56:30 -0800 Subject: [PATCH] vwebp_sdl: fix the makefile.unix The FLAGS_LIBS was dropped at some point. There is still an SDL_Main / main problem though, but it's a separate topic. Change-Id: Ief4d79624e94e7904134df8d84a4ac7c77c48ce7 --- makefile.unix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.unix b/makefile.unix index b001cfe3..1e20578f 100644 --- a/makefile.unix +++ b/makefile.unix @@ -428,7 +428,7 @@ extras/vwebp_sdl: extras/webp_to_sdl.o extras/vwebp_sdl: imageio/libimageio_util.a extras/vwebp_sdl: src/libwebp.a extras/vwebp_sdl: EXTRA_FLAGS += -DWEBP_HAVE_SDL -extras/vwebp_sdl: -lSDL +extras/vwebp_sdl: EXTRA_LIBS += -lSDL $(OUT_EXAMPLES) $(EXTRA_EXAMPLES) $(OTHER_EXAMPLES): $(CC) -o $@ $^ $(LDFLAGS)