From aac7577396d08603c7812c6c024b06fb0cb9059a Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sat, 12 Mar 2016 19:13:29 +0100 Subject: [PATCH] pdns-recursor: fix build failure on OSX Using OpenSSL from Homebrew, by doing ./configure --with-openssl=/Users/ruben/homebrew/Cellar/openssl/1.0.2g Results in: /Library/Developer/CommandLineTools/usr/bin/make all-am CXX base64.o base64.cc:7:10: fatal error: 'openssl/bio.h' file not found ^ 1 error generated. --- pdns/recursordist/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pdns/recursordist/Makefile.am b/pdns/recursordist/Makefile.am index 7af1cf179..4766ac726 100644 --- a/pdns/recursordist/Makefile.am +++ b/pdns/recursordist/Makefile.am @@ -5,7 +5,8 @@ AM_CPPFLAGS = $(LUA_CFLAGS) $(YAHTTP_CFLAGS) $(BOOST_CPPFLAGS) $(SANITIZER_FLAGS AM_CPPFLAGS += \ -I$(top_srcdir)/ext/json11 \ -I$(top_srcdir)/ext/rapidjson/include \ - $(YAHTTP_CFLAGS) + $(YAHTTP_CFLAGS) \ + $(OPENSSL_INCLUDES) AM_CXXFLAGS = \ -DSYSCONFDIR=\"$(sysconfdir)\" \ -- 2.40.0