From 76c758c41ddbeab154f664658082a07e38d8fbe7 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Wed, 17 Jun 2015 21:08:34 +0300 Subject: [PATCH] Add rules for json11 library --- configure.ac | 1 + ext/Makefile.am | 6 ++++-- ext/json11/Makefile.am | 2 ++ 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 ext/json11/Makefile.am diff --git a/configure.ac b/configure.ac index 050826fa1e..9d3c3179cb 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 172c0b9684..1edc0d3486 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 0000000000..df5f856652 --- /dev/null +++ b/ext/json11/Makefile.am @@ -0,0 +1,2 @@ +noinst_LTLIBRARIES = libjson11.la +libjson11_la_SOURCES = json11.cpp json11.hpp -- 2.47.2