1From 54a66b5728ec98f44a1768f064509be4fd3f2ef6 Mon Sep 17 00:00:00 2001
2From: Thomas Tuegel <ttuegel@gmail.com>
3Date: Sat, 10 Oct 2015 13:09:48 -0500
4Subject: [PATCH 1/3] use system utf8proc
5
6---
7 src/flisp/Makefile | 6 +++---
8 1 file changed, 3 insertions(+), 3 deletions(-)
9
10diff --git a/src/flisp/Makefile b/src/flisp/Makefile
11index bec8624..5437b5c 100644
12--- a/src/flisp/Makefile
13+++ b/src/flisp/Makefile
14@@ -24,9 +24,9 @@ DOBJS = $(SRCS:%.c=$(BUILDDIR)/%.dbg.obj)
15 LLTDIR = ../support
16 LLT_release = $(BUILDDIR)/$(LLTDIR)/libsupport.a
17 LLT_debug = $(BUILDDIR)/$(LLTDIR)/libsupport-debug.a
18-LIBFILES_release = $(LLT_release) $(LIBUV) $(LIBUTF8PROC)
19-LIBFILES_debug = $(LLT_debug) $(LIBUV) $(LIBUTF8PROC)
20-LIBS =
21+LIBFILES_release = $(LLT_release) $(LIBUV)
22+LIBFILES_debug = $(LLT_debug) $(LIBUV)
23+LIBS = $(LIBUTF8PROC)
24 ifneq ($(OS),WINNT)
25 LIBS += -lpthread
26 endif
27--
282.5.2
29