summaryrefslogtreecommitdiff
path: root/sysutils/hal/patches
AgeCommit message (Collapse)AuthorFilesLines
2021-01-17hal: remove gtk-doc documentation to fix build with autoconf 2.70wiz6-17/+59
Remove unconditional libblkid include, it is already included for Linux and not needed on NetBSD. Bump PKGREVISION.
2020-03-15hal: fix build on Linuxtnn1-0/+14
2017-04-26hal: help RHEL7 builds along by including <stddef.h> for size_t used bymaya1-2/+13
another header, scsi/sg.h. Blind fix.
2017-01-17Include sys/stat.h for struct stat. Build fix for NetBSD-current.wiz1-0/+14
2016-09-17To fix build on aarch64-linux-gnu, conditionalise imac which is x86 onlyrichard1-4/+19
and support the recent migration of key event codes in linux/input.h to linux/input-event-codes.h.
2012-05-14glib2 now only allows glib.h to be included.sbd13-0/+169
2012-03-31Bump PKGREVISIONryoon8-5/+731
* Fix build on FreeBSD 9.0 ** Patches are borrowed from FreeBSD ports ** Split FreeBSD support from DragonFly/FreeBSD support
2011-10-04Upstream patch to build on Linux systems without V4L1 support.dsainty2-11/+68
http://cgit.freedesktop.org/hal/commit/?id=ae13d96fa2a0612b6000f4b8f6ed9d3564035703 Fixes build on Ubuntu 11.04.
2011-03-30Change condition for check of libvolume_id.obache1-4/+6
it depend on backend, not host. Fixes build with NetBSD-4 (dummy backend), PR#44794.
2011-01-08Bring back DragonFly BSD support.obache8-27/+218
Based on PR#44338 from Rumko, also fixes PLIST.FreeBSD and self-tests by me.
2010-12-29Only look for "blkid" under Linux as we only use the Linux backend undertron1-14/+20
that platform. This should fix the build under DragonFly BSD. Problem reported by Peter Avalos in private e-mail.
2010-12-27Don't check for "blkid" under Mac OS X. It is not necessary and breakstron1-10/+14
the build. The according check in "configure.in" is probably broken. As far as I can tell it should only check for "blkid" if the "linux" backend is used.
2010-12-26Update to 0.5.14.markd10-147/+76
Many bugfixes and support for new features.
2010-01-26make this work on non-x86macallan1-0/+20
OKed long, long ago by jmcneill
2009-12-27When mounting a filesystem on behalf of a user treat __NetBSD__ similarlyabs1-10/+26
to __FreeBSD__ and chown the mountpoint to the user. With this change, and the recent one to policykit automounting works on NetBSD
2009-09-14Prepare configure for changes in the libtool m4 macros of libtool 2.2:joerg1-8/+16
- explicitly request finding the C++ compiler before trying to run it
2009-07-26rename the "ismounted" property to "is_mounted" which seems todrochner1-0/+15
be the official name bump PKGREVISION (this still needs a lot of work)
2009-01-23Couple of hacks to get Sun Studio compile working.sketch1-0/+15
2009-01-03Restrict necessity of libvolume_id to using linux/freebsd/netbsd hald backends.obache1-15/+25
Fixes build failure on platforms using dummy backend, as PR 40291.
2008-12-22PR# pkg/40147: sysutils/hal fails to build on Linuxjmcneill1-2/+2
2008-12-21PR# pkg/40147: sysutils/hal fails to build on Linuxjmcneill1-0/+14
2008-12-20PR# pkg/40230: "libvolume_id" doesn't build under Mac OS Xjmcneill4-18/+27
Fix HAL build on OS X. Tested on 10.5.6 powerpc.
2008-12-01hald-netbsd: add basic support for automounting non-optical media. Stilljmcneill1-8/+63
some bugs to work out, but it's a start. Bump PKGREVISION.
2008-11-27Add reboot, shutdown, suspend support. Bump PKGREVISION.jmcneill2-7/+32
2008-11-25Initial import of NetBSD HAL backend. It doesn't do much useful yet, butjmcneill3-7/+60
keeping things here makes development easier. Bump PKGREVISION.
2008-11-24* Make it work on DragonFly with FreeBSD backend. It's largely untested,hasso6-0/+123
but certainly already usable. * Fix paths to [pci|usb].ids files. * Bump PKGREVISION.
2008-11-24* Add NetBSD support to storage methods fdijmcneill2-0/+147
* Patch CK tracker for updated signatures in version 0.3.0 * Bump PKGREVISION
2008-11-23* Make it build in DragonFlyhasso4-32/+95
* Fix PLIST * Bump PKGREVISION
2008-11-22Import hal version 0.5.11. Uses the 'dummy' backend on NetBSD for now,jmcneill7-0/+243
more to come soon. What is the point of HAL? To merge information from various sources such that desktop applications can locate and use hardware devices. The point is that the exact set of information to merge varies by device and bus type. In order to do this, we need to define a format for the information, hence the HAL specification. We may read some stuff from the hardware itself, then add some info provided by the kernel, then add some metadata from some systemwide files, then add some data that has been obtained by the desktop and stored per-user, then look at some blacklist, and finally we have a complete picture of everything known about that particular device. An extra value is that we can do this in an operating system independent way. Stuff like this is important to the major desktop environments.