From 97aac0c051501c2d6087243c13d305dc1ccdc180 Mon Sep 17 00:00:00 2001 From: Ricky Pike Date: Thu, 10 Oct 2019 21:12:01 -0500 Subject: [PATCH] add -fPIC option to converse.c --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3668a12..05d8bcc 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ $(EXECUTABLE): $(GOSRCS) converse.o rm -f bin/pam_opie.h converse.o: converse/converse.c - gcc -c converse/converse.c + gcc -c -fPIC converse/converse.c test: go test -race -coverprofile=coverage.txt -covermode=atomic authenticate.go authenticate_test.go