You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ns...@apache.org on 2016/03/29 19:48:36 UTC

[2/9] thrift git commit: THRIFT-3764: Ensure PHP TSimpleJSONProtocol and TMultiplexedProtocol files included during "make install"

THRIFT-3764: Ensure PHP TSimpleJSONProtocol and TMultiplexedProtocol files included during "make install"

This closes #969


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/4ab9a884
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/4ab9a884
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/4ab9a884

Branch: refs/heads/master
Commit: 4ab9a88496413087df1ee3256472b19c5b4be500
Parents: f98d59f
Author: Mark Goldfinch <ma...@modicagroup.com>
Authored: Fri Mar 25 23:28:43 2016 +1300
Committer: Nobuaki Sukegawa <ns...@apache.org>
Committed: Tue Mar 29 12:03:34 2016 +0900

----------------------------------------------------------------------
 lib/php/Makefile.am | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/4ab9a884/lib/php/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/php/Makefile.am b/lib/php/Makefile.am
index 866e053..8e62960 100755
--- a/lib/php/Makefile.am
+++ b/lib/php/Makefile.am
@@ -38,6 +38,8 @@ distclean-local:
 endif
 
 phpdir = $(PHP_PREFIX)/Thrift
+php_DATA = \
+  lib/Thrift/TMultiplexedProcessor.php
 
 phpbasedir = $(phpdir)/Base
 phpbase_DATA = \
@@ -69,7 +71,10 @@ phpprotocol_DATA = \
   lib/Thrift/Protocol/TBinaryProtocol.php \
   lib/Thrift/Protocol/TCompactProtocol.php \
   lib/Thrift/Protocol/TJSONProtocol.php \
-  lib/Thrift/Protocol/TProtocol.php
+  lib/Thrift/Protocol/TMultiplexedProtocol.php \
+  lib/Thrift/Protocol/TProtocol.php \
+  lib/Thrift/Protocol/TProtocolDecorator.php \
+  lib/Thrift/Protocol/TSimpleJSONProtocol.php
 
 phpprotocoljsondir = $(phpprotocoldir)/JSON
 phpprotocoljson_DATA = \
@@ -78,6 +83,14 @@ phpprotocoljson_DATA = \
   lib/Thrift/Protocol/JSON/LookaheadReader.php \
   lib/Thrift/Protocol/JSON/PairContext.php
 
+phpprotocolsimplejsondir = $(phpprotocoldir)/SimpleJSON
+phpprotocolsimplejson_DATA = \
+  lib/Thrift/Protocol/SimpleJSON/CollectionMapKeyException.php \
+  lib/Thrift/Protocol/SimpleJSON/Context.php \
+  lib/Thrift/Protocol/SimpleJSON/ListContext.php \
+  lib/Thrift/Protocol/SimpleJSON/MapContext.php \
+  lib/Thrift/Protocol/SimpleJSON/StructContext.php
+
 phpserializerdir = $(phpdir)/Serializer
 phpserializer_DATA = \
   lib/Thrift/Serializer/TBinarySerializer.php