From: Roger Meier Date: Thu, 30 May 2013 12:04:11 +0000 (+0200) Subject: THRIFT-1981 Not all PHP libraries are installed when building an installing a debian... X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=1e3c884636e4d6b1e93aa9f941d1d48b52a1da7a;p=common%2Fthrift.git THRIFT-1981 Not all PHP libraries are installed when building an installing a debian package Patch: Ricky Cormier --- diff --git a/lib/php/Makefile.am b/lib/php/Makefile.am index fdb85588..011740fa 100755 --- a/lib/php/Makefile.am +++ b/lib/php/Makefile.am @@ -40,6 +40,10 @@ phpbasedir = $(phpdir)/Base phpbase_DATA = \ lib/Thrift/Base/TBase.php +phpclassloaderdir = $(phpdir)/ClassLoader +phpclassloader_DATA = \ + lib/Thrift/ClassLoader/ThriftClassLoader.php + phpexceptiondir = $(phpdir)/Exception phpexception_DATA = \ lib/Thrift/Exception/TApplicationException.php \ @@ -75,6 +79,20 @@ phpserializerdir = $(phpdir)/Serializer phpserializer_DATA = \ lib/Thrift/Serializer/TBinarySerializer.php +phpserverdir = $(phpdir)/Server +phpserver_DATA = \ + lib/Thrift/Server/TServerSocket.php \ + lib/Thrift/Server/TForkingServer.php \ + lib/Thrift/Server/TServer.php \ + lib/Thrift/Server/TServerTransport.php \ + lib/Thrift/Server/TSimpleServer.php + +phpstringfuncdir = $(phpdir)/StringFunc +phpstringfunc_DATA = \ + lib/Thrift/StringFunc/Mbstring.php \ + lib/Thrift/StringFunc/Core.php \ + lib/Thrift/StringFunc/TStringFunc.php + phptransportdir = $(phpdir)/Transport phptransport_DATA = \ lib/Thrift/Transport/TBufferedTransport.php \