1. 29 1月, 2020 1 次提交
  2. 17 1月, 2020 4 次提交
  3. 15 1月, 2020 1 次提交
  4. 21 12月, 2019 1 次提交
  5. 10 12月, 2019 1 次提交
  6. 04 12月, 2019 1 次提交
  7. 03 12月, 2019 2 次提交
  8. 15 11月, 2019 2 次提交
  9. 09 11月, 2019 1 次提交
  10. 06 11月, 2019 1 次提交
  11. 14 10月, 2019 2 次提交
  12. 10 10月, 2019 1 次提交
  13. 09 10月, 2019 1 次提交
  14. 07 10月, 2019 2 次提交
  15. 24 9月, 2019 1 次提交
    • D
      build: force a UTF-8 locale for python · ada26801
      Daniel P. Berrangé 提交于
      Python3 versions less than 3.7 have very unhelpful handling
      of the C locale where they assume data is 7-bit only. This
      violates POSIX which requires the C locale to be 8-bit clean.
      Python3 >= 3.7 now assumes that the C locale is always UTF-8.
      
      Set env variables to force LC_CTYPE to en_US.UTF-8 so that
      we get UTF-8 handling on all python versions. Note we do
      not use C.UTF-8 since not all C libraries support that.
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      ada26801
  16. 18 9月, 2019 1 次提交
  17. 13 9月, 2019 1 次提交
  18. 12 9月, 2019 1 次提交
  19. 04 9月, 2019 2 次提交
  20. 27 8月, 2019 2 次提交
  21. 23 8月, 2019 1 次提交
    • R
      build: Use flat namespace for libvirt on macOS · 740f181c
      Roman Bolshakov 提交于
      >From ld(1):
      
        By default all references resolved to a dynamic library record the
        library to which they were resolved. At runtime, dyld uses that
        information to directly resolve symbols. The alternative is to use the
        -flat_namespace option.  With flat namespace, the library is not
        recorded.  At runtime, dyld will search each dynamic library in load
        order when resolving symbols. This is slower, but more like how other
        operating systems resolve symbols.
      
      That fixes the set of tests that preload a mock library to replace
      library symbols:
        qemublocktest
        qemumonitorjsontest
        viriscsitest
        virmacmaptest
        virnetserverclienttest
      Signed-off-by: NRoman Bolshakov <r.bolshakov@yadro.com>
      740f181c
  22. 22 8月, 2019 1 次提交
  23. 14 8月, 2019 1 次提交
  24. 07 8月, 2019 1 次提交
  25. 06 8月, 2019 1 次提交
  26. 03 7月, 2019 1 次提交
  27. 21 6月, 2019 1 次提交
    • D
      remote: delete the avahi mDNS support · 5a148ce8
      Daniel P. Berrangé 提交于
      Libvirtd has long had integration with avahi for advertising libvirtd
      using mDNS when TCP/TLS listening is enabled. For a long time the
      virt-manager application had support for auto-detecting libvirtds
      on the local network using mDNS, but this was removed last year
      
        commit fc8f8d5d7e3ba80a0771df19cf20e84a05ed2422
        Author: Cole Robinson <crobinso@redhat.com>
        Date:   Sat Oct 6 20:55:31 2018 -0400
      
          connect: Drop avahi support
      
          Libvirtd can advertise itself over avahi. The feature is disabled by
          default though and in practice I hear of no one actually using it
          and frankly I don't think it's all that useful
      
          The 'Open Connection' wizard has a disproportionate amount of code
          devoted to this feature, but I don't think it's useful or worth
          maintaining, so let's drop it
      
      I've never heard of any other applications having support for using
      mDNS to detect libvirtd instances. Though it is theoretically possible
      something exists out there, it is clearly going to be a niche use case
      in the virt ecosystem as a whole.
      
      By removing avahi integration we can cut down the dependency chain for
      the basic libvirtd install and reduce our code maint burden.
      Reviewed-by: NJán Tomko <jtomko@redhat.com>
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      5a148ce8
  28. 03 6月, 2019 1 次提交
  29. 13 5月, 2019 1 次提交
    • A
      docs: Install documentation under $(docdir) · 6716c997
      Andrea Bolognani 提交于
      At the moment we allow the user to specify exactly where
      they want the HTML documentation to be installed with an
      extreme level of precision through the --with-html-dir and
      --with-html-subdir configure options.
      
      Most of the time, of course, the user will stick with the
      default, that is $(datadir)/doc/$(PACKAGE)-$(VERSION)/html.
      
      So close to $(docdir)! Including the version number in
      the path, specifically, seems entirely unnecessary since
      different releases of libvirt are not going to be able to
      coexist on the same system anyway.
      
      Drop all these custom flexibilty for flexibilty's sake
      shenaningans in favor of the standard, well understood
      $(docdir).
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      Acked-by: NMichal Privoznik <mprivozn@redhat.com>
      6716c997
  30. 05 5月, 2019 1 次提交
  31. 15 4月, 2019 1 次提交