From: Ruben Kerkhof Date: Sat, 12 Mar 2016 18:13:29 +0000 (+0100) Subject: pdns-recursor: fix build failure on OSX X-Git-Tag: dnsdist-1.0.0-beta1~112^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3558%2Fhead;p=thirdparty%2Fpdns.git 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. --- diff --git a/pdns/recursordist/Makefile.am b/pdns/recursordist/Makefile.am index 7af1cf179f..4766ac726f 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)\" \