Hardcode flags for bssl

This commit is contained in:
Henry Case 2019-07-23 16:33:16 +01:00
parent ef59212790
commit 20d43a035a

View File

@ -98,4 +98,8 @@ AS_IF([test "$with_epoll" != "no"],
AC_CHECK_FUNC(epoll_create,
AC_DEFINE([HAVE_EPOLL], 1, [#undef HAVE_EPOLL])))
# Hardcode BSSL location. This is temporary
CFLAGS="${CFLAGS} -DHAVE_SSL -I/home/hdc/repos/cloudflare/boringssl/include"
LDFLAGS="${LDFLAGS} -L/home/hdc/repos/cloudflare/boringssl/build.64bitRel/crypto -L/home/hdc/repos/cloudflare/boringssl/build.64bitRel/ssl -pthread"
AC_OUTPUT(Makefile man/Makefile src/stat/Makefile src/lib/Makefile src/gen/Makefile src/Makefile)