pkgsrc/print/hplip/patches/patch-protocol_discovery_mdns.c
schnoebe f7f7382134 Update to 3.16.2:
Release Notes:

Significant Changes:

- Queue configuration using 'hp-setup' command is no more supported for
  HP ScanJets. Scan frontends like xsane, hp-scan, scanimage, simplescan
  will automatically detect usb and network ScanJets.

Added Support for the Following New Printers:

- HP ScanJet Pro 4500 fn1 Network scanner
- HP LaserJet Pro MFP M127fs
- HP DeskJet Ultra Ink Advantage 2029 Printer
- HP DeskJet Ink Advantage Ultra 2529 All-in-One Printer

Added support for the following new Distro's:

- LinuxMint 17.3
- Debian 8.3

Launchpad fixes:

1521687 - /usr/lib/sane/libsane-hpaio.so.1: undefined symbol:
          mdns_probe_nw_scanners
1537467 - udev: 56-hpmud.rules should not run usb_id for all USB devices
          out there
1517494 - Upgrade to HPLIP-3.15.11 fails
1536762 - HPLIP installation fails with non-english locale
1483820 - hp-plugin hangs on 'su'
1484916 - hp-plugin infinite loop
1510950 - hp-plugin not working - stuck on permission
1502025 - HP plugin installation hangs after accepting license
1534404 - Debian 8's hplip version is 3.14.6, not 3.15.2
1532451 - Laserjet Pro MFP M127fs is not supported
2016-02-28 20:37:28 +00:00

14 lines
426 B
C

$NetBSD: patch-protocol_discovery_mdns.c,v 1.2 2016/02/28 20:37:28 schnoebe Exp $
Add <sys/time> to allow building on a wider variety of systems.
--- protocol/discovery/mdns.c.orig 2015-12-05 13:17:06.000000000 +0000
+++ protocol/discovery/mdns.c
@@ -28,6 +28,7 @@
#include <string.h>
#include <syslog.h>
#include <sys/socket.h>
+#include <sys/time.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>