From 9b0320c8b47c43adce1aa5d9821b67c1fa42e1d6 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Tue, 17 Jan 2023 19:48:26 +0100 Subject: v1.8 Build fix --- plugins/fcgi/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/fcgi/Makefile') diff --git a/plugins/fcgi/Makefile b/plugins/fcgi/Makefile index 81502c4..c597314 100644 --- a/plugins/fcgi/Makefile +++ b/plugins/fcgi/Makefile @@ -6,7 +6,7 @@ CXXFLAGS+= -fvisibility=hidden -fPIC CXXFLAGS+= -I../.. -LDLIBS=\ +LDLIBS+=\ -lreichwein \ -lboost_context \ -lboost_coroutine \ @@ -30,7 +30,7 @@ SRC=$(PROGSRC) all: $(PROJECTNAME).so webapp-runner $(PROJECTNAME).so: $(SRC:.cpp=.o) - $(CXX) $(CXXFLAGS) $^ -shared $(LIBS) -o $@ + $(CXX) $(LDFLAGS) $^ -shared $(LDLIBS) $(LIBS) -o $@ webapp-runner: webapp-runner.o fastcgiprocess.o $(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@ -- cgit v1.2.3