From 1e3c884636e4d6b1e93aa9f941d1d48b52a1da7a Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Thu, 30 May 2013 14:04:11 +0200 Subject: [PATCH] THRIFT-1981 Not all PHP libraries are installed when building an installing a debian package Patch: Ricky Cormier --- lib/php/Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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 \ -- 2.17.1