diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-14 06:30:46 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-14 06:30:46 +0800 |
commit | 9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf (patch) | |
tree | a4727449adbef141160660faeccd9a5a2c6e8e18 /devel/dbus/Makefile | |
parent | 03af88608d2e12393a8552b37580849f27c96035 (diff) | |
download | marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.tar marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.tar.gz marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.tar.bz2 marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.tar.lz marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.tar.xz marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.tar.zst marcuscom-ports-9e5f4fa7e3294e404539c475f12d41c0bfcdbfdf.zip |
Linux is more relaxed when it comes to the timeout argument to poll(2).
Linux will accept aby negative number to mean an infinite timeout. FreeBSD
will only accept -1. Make sure we do not pass an aribtrary negative number
to poll(2) to avoid an infinite EINVAL loop.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13818 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/dbus/Makefile')
-rw-r--r-- | devel/dbus/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index b053849af..ef8c4d98d 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -3,12 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD: ports/devel/dbus/Makefile,v 1.77 2009/11/28 20:05:31 marcus Exp $ -# $MCom: ports/devel/dbus/Makefile,v 1.36 2010/02/13 18:57:59 marcus Exp $ +# $MCom: ports/devel/dbus/Makefile,v 1.37 2010/02/15 13:38:59 kwm Exp $ # PORTNAME= dbus PORTVERSION?= 1.2.20 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel gnome MASTER_SITES= http://dbus.freedesktop.org/releases/dbus/ |