From: Evan Broder Date: Mon, 27 Jul 2009 05:45:57 +0000 (-0700) Subject: PyAFS doesn't seem to be using libafsutil - tests still pass if it's X-Git-Tag: 0.1.0~21 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/e74c8621802c9c8387baf674dd827b1e7740b09d?ds=inline PyAFS doesn't seem to be using libafsutil - tests still pass if it's dropped. And it's not one of the libraries built with a PIC version in openafs bbab48b047000db0d1821e2f65917c2e8c2c7768. Signed-off-by: Evan Broder --- diff --git a/setup.py b/setup.py index 912231c..187733a 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ include_dirs = [os.path.join(os.path.dirname(__file__), 'afs'), '%s/include' % root] library_dirs = ['%s/lib' % root, '%s/lib/afs' % root] -libraries = ['afsauthent', 'afsrpc', 'afsutil', 'resolv'] +libraries = ['afsauthent', 'afsrpc', 'resolv'] define_macros = [('AFS_PTHREAD_ENV', None)] def PyAFSExtension(module):