diff options
author | default <nobody@localhost> | 2022-10-01 20:57:06 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-01 20:57:06 +0200 |
commit | 8bb758206289ad85ebd4624c2673eef42660df9f (patch) | |
tree | 40525be70f3ff396b308adf9eb018ca1a3756c5e /Makefile | |
parent | 31f29258a144f02b59a4f7d76a120eca415a826d (diff) |
Implemented the helper thread.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ CFLAGS=-g -Wall all: snac snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o - $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@ + $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@ .c.o: $(CC) $(CFLAGS) -I/usr/local/include -c $< |