From 95da942f2ec0252cadfa295a082ceea662a7ecb1 Mon Sep 17 00:00:00 2001 From: redtide Date: Fri, 28 May 2021 18:14:40 +0200 Subject: [PATCH] Fixed build, missing reproc dependency (#227) --- .gitignore | 1 + build.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 573a6242..24b465ce 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ build* subprojects/lua subprojects/libagg subprojects/reproc +lite diff --git a/build.sh b/build.sh index 6f605797..eb1d420a 100755 --- a/build.sh +++ b/build.sh @@ -3,7 +3,7 @@ cflags+="-Wall -O3 -g -std=gnu11 -fno-strict-aliasing -Isrc -Ilib/font_renderer" cflags+=" $(pkg-config --cflags lua5.2) $(sdl2-config --cflags)" lflags="-static-libgcc -static-libstdc++" -for package in libagg freetype2 lua5.2 x11 libpcre2-8; do +for package in libagg freetype2 lua5.2 x11 libpcre2-8 reproc; do lflags+=" $(pkg-config --libs $package)" done lflags+=" $(sdl2-config --libs) -lm"