svn commit: r314501 - in head/devel/pkgconf: . files

Baptiste Daroussin bapt at FreeBSD.org
Sun Mar 17 23:10:19 UTC 2013


Author: bapt
Date: Sun Mar 17 23:10:18 2013
New Revision: 314501
URL: http://svnweb.freebsd.org/changeset/ports/314501

Log:
  - Fix a regression that prevent graphics/dri to correctly build
  
  Reported by:	gpalmer, swills
  Tested by:	zi

Added:
  head/devel/pkgconf/files/
  head/devel/pkgconf/files/patch-pkg.c   (contents, props changed)
Modified:
  head/devel/pkgconf/Makefile

Modified: head/devel/pkgconf/Makefile
==============================================================================
--- head/devel/pkgconf/Makefile	Sun Mar 17 22:16:03 2013	(r314500)
+++ head/devel/pkgconf/Makefile	Sun Mar 17 23:10:18 2013	(r314501)
@@ -2,6 +2,7 @@
 
 PORTNAME=	pkgconf
 PORTVERSION=	0.9.1
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://rabbit.dereferenced.org/~nenolod/distfiles/ \
 		http://files.etoilebsd.net/pkgconf/

Added: head/devel/pkgconf/files/patch-pkg.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pkgconf/files/patch-pkg.c	Sun Mar 17 23:10:18 2013	(r314501)
@@ -0,0 +1,11 @@
+--- ./pkg.c.orig	2013-03-16 02:19:13.000000000 +0100
++++ ./pkg.c	2013-03-17 23:47:38.808630318 +0100
+@@ -890,7 +890,7 @@
+ 		}
+ 
+ 		pkgdep->flags |= PKG_PROPF_SEEN;
+-		eflags = pkg_traverse(pkgdep, func, data, depth - 1, flags);
++		eflags |= pkg_traverse(pkgdep, func, data, depth - 1, flags);
+ 		pkgdep->flags &= ~PKG_PROPF_SEEN;
+ 		pkg_unref(pkgdep);
+ 	}


More information about the svn-ports-all mailing list