1. 31 10月, 2011 1 次提交
  2. 15 10月, 2011 2 次提交
  3. 08 10月, 2011 1 次提交
  4. 06 10月, 2011 1 次提交
  5. 01 10月, 2011 1 次提交
  6. 24 9月, 2011 1 次提交
  7. 23 9月, 2011 1 次提交
  8. 21 9月, 2011 2 次提交
  9. 16 9月, 2011 1 次提交
  10. 11 9月, 2011 1 次提交
  11. 09 9月, 2011 2 次提交
  12. 06 9月, 2011 1 次提交
  13. 04 9月, 2011 1 次提交
  14. 02 9月, 2011 3 次提交
  15. 01 9月, 2011 3 次提交
  16. 22 8月, 2011 3 次提交
  17. 21 8月, 2011 1 次提交
  18. 12 8月, 2011 1 次提交
    • S
      configure: Disable guest_agent for mingw32 · 83b2f0a0
      Stefan Weil 提交于
      guest_agent is not supported for mingw32, so the default value
      should be 'no', not 'yes'.
      
      This removes the dependencies to glib-2.0 and python which
      makes native and cross builds for w32 much easier (no need
      to get and install these extra packages).
      
      It also avoids the problems caused by different bitfield alignment
      which is required by glib-2.0.
      
      It is still possible to set guest_agent=yes via configure option.
      Signed-off-by: NStefan Weil <weil@mail.berlios.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      83b2f0a0
  19. 08 8月, 2011 1 次提交
  20. 06 8月, 2011 1 次提交
  21. 05 8月, 2011 4 次提交
  22. 03 8月, 2011 1 次提交
  23. 01 8月, 2011 1 次提交
  24. 29 7月, 2011 2 次提交
  25. 27 7月, 2011 1 次提交
  26. 26 7月, 2011 2 次提交
    • A
      libcacard: add pc file, install it + includes · 0f94d6da
      Alon Levy 提交于
      Additionally:
       + add --includedir configure parameters
       + make install-libcacard install vscclient as well
      0f94d6da
    • A
      xen: make xen_enabled even more clever · 59d21e53
      Alexander Graf 提交于
      When using xen_enabled() we're currently only checking if xen is enabled
      at all during the build. But what if you want to build multiple targets
      out of which only one can potentially run xen code?
      
      That means that for generic code we'll still have to fall back to the
      variable and potentially slow the code down, but it's not as important as
      that is mostly xen device emulation which is not touched for non-xen targets.
      
      The target specific code however can with this patch see that it's unable to
      ever execute xen code. We can thus always return 0 on xen_enabled(), giving
      gcc enough hints to evict the mapcache code from the target memory management
      code.
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      Acked-by: NAnthony PERARD <anthony.perard@citrix.com>
      59d21e53