search for: add_dir

Displaying 7 results from an estimated 7 matches for "add_dir".

2004 Sep 10
2
FLAC 1.0 Debian packages available
...tly with libtool 1.4, I had to apply the following patch: --- flac-1.0.orig/ltmain.sh +++ flac-1.0/ltmain.sh @@ -1862,6 +1862,7 @@ else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" + test -d $ladir/.libs && add_dir="$add_dir -L$ladir/.libs" add="-l$name" fi Without this patch, libtool 1.4 would attempt to re-link the XMMS plugin against an installed libFLAC which was not yet installed...
2004 Sep 10
0
FLAC 1.0 Debian packages available
...y the following patch: > > --- flac-1.0.orig/ltmain.sh > +++ flac-1.0/ltmain.sh > @@ -1862,6 +1862,7 @@ > else > # We cannot seem to hardcode it, guess we'll fake it. > add_dir="-L$libdir" > + test -d $ladir/.libs && add_dir="$add_dir -L$ladir/.libs" > add="-l$name" > fi > > Without this patch, libtool 1.4 would attempt to re-link the XMMS plugin > against an installed libFLA...
2014 Feb 13
2
[LLVMdev] Bad test health
...init__(self): self.exts = dict() def is_test(self, path): path = os.path.abspath(path) if not os.path.isfile(path): return False dir = os.path.dirname(path) ext = os.path.splitext(path)[1] return ext in self.exts_for_dir(dir) def exts_for_dir(self, dir): self.add_dir(dir) return self.exts[dir] def add_dir(self, dir): if dir in self.exts: return exts = self.load_exts_from_config(dir) if exts: self.exts[dir] = exts return parent = os.path.dirname(dir) self.add_dir(parent) self.exts[dir] = self.exts[parent] def...
2012 Feb 02
1
CentOS6 virt-manager fails
...", line 383, in <module> main() File "/usr/share/virt-manager/virt-manager.py", line 315, in main config = virtManager.config.vmmConfig(appname, appversion, glade_dir) File "/usr/share/virt-manager/virtManager/config.py", line 96, in __init__ self.conf.add_dir(self.conf_dir, gconf.CLIENT_PRELOAD_NONE) The /tmp dbus socket doesn't exist, but dbus-daemon is running. The only references to this problem I could find were old and unanswered posts to Fedora lists.
2014 Oct 27
0
Error starting Virtual Machine Manager: Failed to contact configuration server...
...", line 383, in <module> main() File "/usr/share/virt-manager/virt-manager.py", line 315, in main config = virtManager.config.vmmConfig(appname, appversion, glade_dir) File "/usr/share/virt-manager/virtManager/config.py", line 98, in __init__ self.conf.add_dir(self.conf_dir, gconf.CLIENT_PRELOAD_NONE) GError: Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information. (Details - 1: Could not s...
2014 Oct 27
0
How could the admin do to grant me with permission to run virsh as unprivileged user?
...;, line 383, in <module> main() File "/usr/share/virt-manager/virt-manager.py", line 315, in main config = virtManager.config.vmmConfig(appname, appversion, glade_dir) File "/usr/share/virt-manager/virtManager/config.py", line 98, in __init__ self.conf.add_dir(self.conf_dir, gconf.CLIENT_PRELOAD_NONE) GError: Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information. (Details - 1: Could not...
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...rl) + global default_url + + default_url = url + +def get_default_url(): + logging.info("Returning default URL of %s" % default_url) + return default_url + +class VirtManagerConfig: + def __init__(self): + self.__conf = gconf.client_get_default() + self.__conf.add_dir("/apps/virt-manager", gconf.CLIENT_PRELOAD_NONE) + + def get_connection_list(self): + return self.__conf.get_list("/apps/virt-manager/connections/uris", gconf.VALUE_STRING) + + def add_connection(self, connection): + connections = self.get_connection_list() +...