chibipub

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit dc801743c990bae3bbba4618ca32df329f7bfed0
parent 4a5f9dbe0bf279a628d6a09f42add4c570e34509
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 18 Dec 2020 12:30:42 -0800

make: openssl

This will be needed for signature verification

Diffstat:
MMakefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,5 +1,6 @@ -CFLAGS = -Wall -Werror -std=c99 -Isrc +CFLAGS = -Wall -Werror -std=c99 -Isrc $(shell pkg-config --cflags openssl) +LDFLAGS = $(shell pkg-config --libs openssl) OBJS = src/http.o src/base64.o src/inbox.o src/json.o