From acef148b02c5ab0204e1820457cb058f08be5db2 Mon Sep 17 00:00:00 2001 From: Thiago da Silva Date: Fri, 17 Jan 2014 11:30:33 -0500 Subject: remove unused libraries import xdr and glfs were not being used, so they are being removed for now Change-Id: I8db793f66f2f2a6442f3a6b6f53617d52cc52a92 Signed-off-by: Thiago da Silva --- gluster/gfapi.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'gluster') diff --git a/gluster/gfapi.py b/gluster/gfapi.py index 00a7470..516a1f0 100644 --- a/gluster/gfapi.py +++ b/gluster/gfapi.py @@ -10,9 +10,6 @@ from contextlib import contextmanager # Looks like ctypes is having trouble with dependencies, so just force them to # load with RTLD_GLOBAL until I figure that out. -glfs = ctypes.CDLL(find_library("glusterfs"), ctypes.RTLD_GLOBAL, - use_errno=True) -xdr = ctypes.CDLL(find_library("gfxdr"), ctypes.RTLD_GLOBAL, use_errno=True) api = ctypes.CDLL(find_library("gfapi"), ctypes.RTLD_GLOBAL, use_errno=True) # Wow, the Linux kernel folks really play nasty games with this structure. If -- cgit