[thrift] add show_pid option to thrift.app.src (Erlang)

Summary: we've been using this option in our apps but we never added it to thrift's own config

Reviewed By: eletuchy

Test Plan: ok

Other Notes: contributed by Jason Ganetsky (jason@amiestreet.com)


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665411 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/erl/src/thrift.app.src b/lib/erl/src/thrift.app.src
index e1d6be1..79055ca 100644
--- a/lib/erl/src/thrift.app.src
+++ b/lib/erl/src/thrift.app.src
@@ -7,21 +7,20 @@
   % The version of the applicaton
   {vsn, "%VSN%"},
 
-  % All modules used by the application. 
-  {modules,
-   [
-	%MODULES%
+  % All modules used by the application.
+  {modules, [
+       %MODULES%
    ]},
 
   % All of the registered names the application uses. This can be ignored.
   {registered, []},
 
   % Applications that are to be started prior to this one. This can be ignored
-  % leave it alone unless you understand it well and let the .rel files in 
-  % your release handle this. 
+  % leave it alone unless you understand it well and let the .rel files in
+  % your release handle this.
   {applications,
    [
-    kernel, 
+    kernel,
     stdlib
    ]},
 
@@ -37,6 +36,7 @@
     {force_one_line, false},
     {omit_fmt, ["thrift ~p:new(~s) = ~s"]},
     {gen_server_messages, true},
+    {show_pid, true},
     {lookup, false}                 % DNS
   ]},