- 06 1月, 2008 1 次提交
-
-
由 Richard W.M. Jones 提交于
* configure.in: xdr functions may require -lxdr. * configure.in, src/Makefile.am: Extra linking flags for building libvirt DLL. * src/socketcompat.h: Hide Windows Winsock incompatibilities in a separate header file. * src/remote_internal.c: Switch to using socketcompat.h / socket_errno(). * src/test.c: Switch to using socketcompat.h. * gnulib/lib/arpa/.cvsignore: Ignore another generated file. * src/qparams.c: Include <config.h>.
-
- 03 1月, 2008 2 次提交
-
-
由 Daniel P. Berrange 提交于
-
由 Daniel P. Berrange 提交于
-
- 26 12月, 2007 1 次提交
-
-
由 Daniel Veillard 提交于
compilation error #426385 Daniel
-
- 18 12月, 2007 6 次提交
-
-
由 Daniel Veillard 提交于
-
由 Daniel Veillard 提交于
Daniel
-
由 Daniel Veillard 提交于
prepare release of libvirt-0.4.0 Daniel
-
由 Daniel P. Berrange 提交于
-
由 Daniel P. Berrange 提交于
-
由 Richard W.M. Jones 提交于
* src/remote_internal.c: Fixed reversed check of error handling of qparam_get_query call (Dan Berrange).
-
- 17 12月, 2007 2 次提交
-
-
由 Richard W.M. Jones 提交于
* src/qparams.c, src/qparams.h, src/Makefile.am: Added a separate 'qparams' module for handling query parameters. * src/remote_internal.c: Factor out query parameter code so it uses the 'qparams' module.
-
由 Richard W.M. Jones 提交于
* src/buf.c, src/buf.h: Added utility functions virBufferURIEncodeString and virBufferAddChar to the buffer module.
-
- 16 12月, 2007 1 次提交
-
-
由 Daniel P. Berrange 提交于
-
- 14 12月, 2007 2 次提交
-
-
由 Daniel Veillard 提交于
* src/xm_internal.c: patch from Saori Fukuta to fix setting CPU parameters in the config files, the value was overwritten Daniel
-
由 Daniel Veillard 提交于
* src/xs_internal.[ch]: patch from Saori Fukuta to fix the detach-disk command when using Xen tap devices. * docs/libvir.html: typo fix from Jim Meyering Daniel
-
- 13 12月, 2007 1 次提交
-
-
由 Richard W.M. Jones 提交于
* src/buf.c (virBufferEscapeString): '<' escaped as "<"
-
- 12 12月, 2007 4 次提交
-
-
由 Jim Meyering 提交于
* configure.in (PYTHON_SUBDIR): Don't set. Remove all uses. * Makefile.am (SUBDIRS): Hard-code "python" here. (tests): Test equivalent "$(pythondir)", not @PYTHON_SUBDIR@.
-
由 Jim Meyering 提交于
* tests/Makefile.am (TESTS_ENVIRONMENT): Adjust PATH setting to work also with automake-1.9. Can't use $(abs_top_builddir). Author: Jim Meyering <meyering@redhat.com>
-
由 Jim Meyering 提交于
Given code like: T *var = calloc (n, sizeof (T)); Convert to this: T *var = calloc (n, sizeof (*var)); This first-cut change adjusts all malloc, calloc, and realloc statements. The only binary differences are in remote_internal.c (due to the bug fix) and in xmlrpc.c (due to factorization). * python/libvir.c: As above. * qemud/event.c: Likewise. * qemud/mdns.c: Likewise. * qemud/qemud.c: Likewise. * qemud/remote.c: Likewise. * src/bridge.c: Likewise. * src/buf.c: Likewise. * src/conf.c: Likewise. * src/hash.c: Likewise. * src/iptables.c: Likewise. * src/openvz_conf.c: Likewise. * src/qemu_conf.c: Likewise. * src/qemu_driver.c: Likewise. * src/test.c: Likewise. * src/xen_internal.c: Likewise. * src/xen_unified.c: Likewise. * src/xm_internal.c: Likewise. * src/xml.c: Likewise. * tests/qemuxml2argvtest.c: Likewise. * src/xmlrpc.c (xmlRpcValuePtr): Likewise, and minor factorization. * src/remote_internal.c (remoteAuthMakeCredentials): Use the right type when allocating space for an array of cred _pointers_.
-
由 Jim Meyering 提交于
And remove a minor diagnostic inconsistency. * tests/daemon-conf: New test. * tests/Makefile.am (TESTS_ENVIRONMENT): Prepend qemud/ to PATH, so we can invoke libvirtd without an absolute name. (test_scripts): Add daemon-conf. * qemud/qemud.c (remoteConfigGetAuth): Use checkType, rather than open-coding it with a different diagnostic.
-
- 11 12月, 2007 1 次提交
-
-
由 Jim Meyering 提交于
* bootstrap: Re-add --with-tests, now that gnulib-tool arranges to use separate libraries for lib/ and tests/. * configure.in (AC_OUTPUT): Add gnulib/tests/Makefile.in. * Makefile.am (SUBDIRS): Add gnulib/tests. * gnulib/tests/Makefile.am: New file. * gnulib/lib/.cvsignore: Sort. * gnulib/lib/Makefile.am, gnulib/m4/getdelim.m4, gnulib/m4/getline.m4: * gnulib/m4/gnulib-cache.m4, gnulib/m4/gnulib-comp.m4: Regenerate. * gnulib/tests/test-alloca-opt.c: New file, from gnulib. * gnulib/tests/test-arpa_inet.c: Likewise. * gnulib/tests/test-fseeko.c: Likewise. * gnulib/tests/test-fseeko.sh: Likewise. * gnulib/tests/test-getaddrinfo.c: Likewise. * gnulib/tests/test-getdelim.c: Likewise. * gnulib/tests/test-getline.c: Likewise. * gnulib/tests/test-lseek.c: Likewise. * gnulib/tests/test-lseek.sh: Likewise. * gnulib/tests/test-netinet_in.c: Likewise. * gnulib/tests/test-snprintf.c: Likewise. * gnulib/tests/test-stdbool.c: Likewise. * gnulib/tests/test-stdint.c: Likewise. * gnulib/tests/test-stdio.c: Likewise. * gnulib/tests/test-stdlib.c: Likewise. * gnulib/tests/test-string.c: Likewise. * gnulib/tests/test-sys_select.c: Likewise. * gnulib/tests/test-sys_socket.c: Likewise. * gnulib/tests/test-sys_stat.c: Likewise. * gnulib/tests/test-sys_time.c: Likewise. * gnulib/tests/test-unistd.c: Likewise. * gnulib/tests/test-vasnprintf.c: Likewise. * gnulib/tests/test-vasprintf.c: Likewise. * gnulib/tests/test-wchar.c: Likewise. * gnulib/tests/dummy.c: Likewise. * gnulib/tests/intprops.h: Likewise. * gnulib/tests/verify.h: Likewise.
-
- 09 12月, 2007 1 次提交
-
-
由 Daniel P. Berrange 提交于
-
- 07 12月, 2007 16 次提交
-
-
由 Daniel P. Berrange 提交于
-
由 Daniel P. Berrange 提交于
-
由 Richard W.M. Jones 提交于
* proxy/Makefile.am: Include gnulib code when building the proxy.
-
由 Richard W.M. Jones 提交于
* src/console.c, src/console.h, src/virsh.c: Disable text console on Windows. * src/libvirt.c: Use replacement getpass from Gnulib. * src/libvirt.c: Initialize Winsock before use. * src/remote_internal.c: Header file fixes for Windows. Don't fail if AI_ADDRCONFIG isn't defined. Disable unsupported stuff under Windows. * src/uuid.c: ENODATA unavailable on Windows, use EIO instead. * src/virsh.c: No uid_t / getuid on Windows. * src/virsh.c: No O_SYNC on Windows.
-
由 Richard W.M. Jones 提交于
* src/internal.h: Use gnulib gettext library. Define INET_ADDRSTRLEN unless already defined.
-
由 Richard W.M. Jones 提交于
* src/.cvsignore: Ignore *.loT files (generated under Windows). * proxy/libvirt_proxy.c: Bail out earlier --without-xen. * src/proxy_internal.c: Don't build proxy client side if configured --without-xen. * src/iptables.c, src/iptables.h: Disable this code if configured --without-qemu. * src/nodeinfo.c: If no 'uname' function, set model name to empty string (for Windows). * src/xen_unified.h, src/util.c, src/test.c: Include <winsock2.h> on Windows. * src/util.c: Disable virExec* and virFileLinkPointsTo on MinGW.
-
由 Richard W.M. Jones 提交于
* src/sexpr.c: Cosmetic rearrangement of headers.
-
由 Richard W.M. Jones 提交于
-
由 Richard W.M. Jones 提交于
* configure.in: Extra checks for uname and some header files (for MinGW Windows port).
-
由 Richard W.M. Jones 提交于
* bootstrap, Makefile.am, gnulib/*: Import more gnulib modules for use by MinGW Windows port.
-
由 Jim Meyering 提交于
* proxy/libvirt_proxy.c: Likewise. * python/libvir.c: Likewise. * python/types.c: Likewise. * src/event.c: Likewise. * src/xm_internal.c: Likewise. * tests/reconnect.c: Likewise. * tests/testutils.c: Likewise.
-
由 Daniel Veillard 提交于
add a python binding for virNodeGetCellsFreeMemory Daniel
-
由 Jim Meyering 提交于
-
由 Richard W.M. Jones 提交于
* src/virsh.c: The prompt should depend on readonly status, not on the UID.
-
由 Richard W.M. Jones 提交于
* configure.in, qemud/Makefile.am: Added a --without-libvirtd configure option.
-
由 Daniel P. Berrange 提交于
-
- 06 12月, 2007 2 次提交
-
-
由 Daniel P. Berrange 提交于
-
由 Daniel Veillard 提交于
Daniel
-