diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-17 19:48:26 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-17 19:48:26 +0100 |
commit | 9b0320c8b47c43adce1aa5d9821b67c1fa42e1d6 (patch) | |
tree | fcfbd844e6e179ddc3b2a89f4248db1f3fd0fc19 /plugins/fcgi/Makefile | |
parent | db915a76b83f3e9a4009702d28d068e399d2c7e8 (diff) |
v1.8 Build fix
Diffstat (limited to 'plugins/fcgi/Makefile')
-rw-r--r-- | plugins/fcgi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 $@ |