1. 11 11月, 2016 5 次提交
  2. 10 11月, 2016 7 次提交
  3. 09 11月, 2016 15 次提交
  4. 08 11月, 2016 9 次提交
  5. 07 11月, 2016 3 次提交
    • A
      wireshark: Use ${exec_prefix} instead of ${prefix} · 7b3b2540
      Andrea Bolognani 提交于
      ${exec_prefix} and ${prefix} point to the same directory in
      most setups, but when that's not the case the former should
      be used for architecture-dependent data such as shared objects,
      which makes it the best fit for our Wireshark dissector.
      
      While at it, change all uses of $(var) to ${var}: they are
      absolutely identicaly as far as make's concerned, but autoconf
      itself seems to prefer the latter form so we might as well
      follow suit.
      7b3b2540
    • A
      wireshark: Make fallback path construction more reliable · 054fd1a7
      Andrea Bolognani 提交于
      We only need to strip $ws_prefix from $ws_plugindir if we've
      retrieved it from pkg-config: if we're building it ourselves
      from $libdir, we can just use it without further processing.
      054fd1a7
    • A
      wireshark: Don't redefine ws_plugindir · 3abb8b69
      Andrea Bolognani 提交于
      autoconf already defines the variable for us, and prints out
      a warning if we try to do it a second time. So let's not :)
      3abb8b69
  6. 04 11月, 2016 1 次提交
    • J
      qemu: Fix build on RHEL-6 · 2d649f80
      Jiri Denemark 提交于
      Commit c29e6d48 cause build failure on RHEL-6:
      
      ../../src/qemu/qemu_capabilities.c: In function 'virQEMUCapsIsValid':
      ../../src/qemu/qemu_capabilities.c:4085: error: declaration of 'ctime'
      shadows a global declaration [-Wshadow]
      /usr/include/time.h:258: error: shadowed declaration is here [-Wshadow]
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      2d649f80