From 45a1349bb8e0c029c2b07daa523868e256ad7a63 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sat, 12 Mar 2016 12:59:22 +0100 Subject: [PATCH] pdns: Fix build on OSX Using OpenSSL from Homebrew, by doing ./configure --with-openssl=/Users/ruben/homebrew/Cellar/openssl/1.0.2g Results in: Making all in pdns /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/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pdns/Makefile.am b/pdns/Makefile.am index 20c3638659..9a05e81b98 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -3,7 +3,8 @@ JSON11_LIBS = $(top_builddir)/ext/json11/libjson11.la AM_CPPFLAGS += \ -I$(top_srcdir)/ext/json11 \ $(YAHTTP_CFLAGS) \ - $(LIBEDIT_CFLAGS) + $(LIBEDIT_CFLAGS) \ + $(OPENSSL_INCLUDES) AM_CXXFLAGS = \ -DSYSCONFDIR=\"$(sysconfdir)\" \ -- 2.47.2