Skip to content

Commit

Permalink
Merge pull request #5067 from cynthia/master
Browse files Browse the repository at this point in the history
FreeBSD build notes and compile fixes.
  • Loading branch information
pieterlexis committed Mar 17, 2017
2 parents c3f767c + 2bf9682 commit 46d1612
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ FREEBSD NOTES
-------------
You need to compile using gmake - regular make only appears to work, but doesn't in fact. Use gmake, not make.

The clang compiler installed through FreeBSD's package manager does not expose all of the C++11 features needed under `std=gnuc++11`. Force the compiler to use `std=c++11` mode instead.

export CXXFLAGS=-std=c++11

MAC OS X NOTES
--------------
PowerDNS Authoritative Server is available through Homebrew:
Expand Down
1 change: 1 addition & 0 deletions ext/json11/json11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <cstdlib>
#include <cstdio>
#include <limits>
#include <string>

namespace json11 {

Expand Down

0 comments on commit 46d1612

Please sign in to comment.