Skip to content

Commit

Permalink
Merge pull request #799 from rgmiller/792_CFLAGS_and_LIBS
Browse files Browse the repository at this point in the history
Compile and link agains the OpenSSL detectected by the configure script
  • Loading branch information
adammoody authored Oct 9, 2023
2 parents 5884ff1 + 748ef55 commit bf7cb38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ UNIFYFS_COMMON_BASE_SRCS = \

UNIFYFS_COMMON_BASE_FLAGS = \
-DSYSCONFDIR="$(sysconfdir)" \
$(MARGO_CFLAGS)
$(MARGO_CFLAGS) $(OPENSSL_CFLAGS)

UNIFYFS_COMMON_BASE_LIBS = \
$(MARGO_LDFLAGS) $(MARGO_LIBS) -lmercury_util \
$(MARGO_LDFLAGS) $(MARGO_LIBS) $(OPENSSL_LIBS) -lmercury_util \
-lm -lrt -lcrypto -lpthread

UNIFYFS_COMMON_OPT_FLAGS =
Expand Down

0 comments on commit bf7cb38

Please sign in to comment.