From: Aki Tuomi Date: Wed, 17 Jun 2015 18:08:34 +0000 (+0300) Subject: Add rules for json11 library X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~58^2~21^2~5^2~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76c758c41ddbeab154f664658082a07e38d8fbe7;p=pdns Add rules for json11 library --- diff --git a/configure.ac b/configure.ac index 050826fa1..9d3c3179c 100644 --- a/configure.ac +++ b/configure.ac @@ -355,6 +355,7 @@ AC_CONFIG_FILES([ ext/polarssl/Makefile ext/polarssl/library/Makefile ext/rapidjson/Makefile + ext/json11/Makefile modules/bindbackend/Makefile modules/geoipbackend/Makefile modules/gmysqlbackend/Makefile diff --git a/ext/Makefile.am b/ext/Makefile.am index 172c0b968..1edc0d348 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -2,13 +2,15 @@ SUBDIRS = \ $(POLARSSL_SUBDIR) \ $(ED25519_SUBDIR) \ yahttp \ - rapidjson + rapidjson \ + json11 DIST_SUBDIRS = \ polarssl \ ed25519 \ yahttp \ - rapidjson + rapidjson \ + json11 EXTRA_DIST = \ luawrapper/include/LuaContext.hpp diff --git a/ext/json11/Makefile.am b/ext/json11/Makefile.am new file mode 100644 index 000000000..df5f85665 --- /dev/null +++ b/ext/json11/Makefile.am @@ -0,0 +1,2 @@ +noinst_LTLIBRARIES = libjson11.la +libjson11_la_SOURCES = json11.cpp json11.hpp