Python CPP implementation now requires c++ libprotobuf installed before running
setup.py to fix RPATH problem.
diff --git a/python/setup.py b/python/setup.py
index 77cfdd3..2c460cc 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -114,10 +114,8 @@
         [ "google/protobuf/pyext/python_descriptor.cc",
           "google/protobuf/pyext/python_protobuf.cc",
           "google/protobuf/pyext/python-proto2.cc" ],
-        include_dirs = [ "../src", ".", ],
-        libraries = [ "protobuf" ],
-        runtime_library_dirs = [ "../src/.libs" ],
-        library_dirs = [ "../src/.libs" ]))
+        include_dirs = [ "." ],
+        libraries = [ "protobuf" ]))
 
   setup(name = 'protobuf',
         version = '2.4.1-pre',