Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Oct 2014 23:40:53 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r370262 - in head/graphics/devil: . files
Message-ID:  <201410062340.s96NerSw086418@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Mon Oct  6 23:40:52 2014
New Revision: 370262
URL: https://svnweb.freebsd.org/changeset/ports/370262
QAT: https://qat.redports.org/buildarchive/r370262/

Log:
  - Fix segfault (1)
  - Fix duplicate PORTREVISION
  
  PR:		194061 (1)
  Submitted by:	rndfax@yandex.ru
  MFH:		2014Q4

Added:
  head/graphics/devil/files/patch-src-IL__src__il_alloc.c   (contents, props changed)
Modified:
  head/graphics/devil/Makefile

Modified: head/graphics/devil/Makefile
==============================================================================
--- head/graphics/devil/Makefile	Mon Oct  6 23:29:28 2014	(r370261)
+++ head/graphics/devil/Makefile	Mon Oct  6 23:40:52 2014	(r370262)
@@ -3,9 +3,8 @@
 
 PORTNAME=	devil
 PORTVERSION=	1.7.8
-PORTREVISION=	36
+PORTREVISION=	18
 PORTEPOCH=	1
-PORTREVISION=	17
 CATEGORIES=	graphics
 MASTER_SITES=	SF/openil/DevIL/${PORTVERSION}
 DISTNAME=	DevIL-${PORTVERSION}

Added: head/graphics/devil/files/patch-src-IL__src__il_alloc.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/devil/files/patch-src-IL__src__il_alloc.c	Mon Oct  6 23:40:52 2014	(r370262)
@@ -0,0 +1,11 @@
+--- src-IL/src/il_alloc.c.orig	2009-03-08 10:10:09.000000000 +0300
++++ src-IL/src/il_alloc.c	2014-10-07 01:39:56.201078445 +0400
+@@ -123,7 +123,7 @@
+ {
+ 	if (ptr)
+ 	{
+-#ifdef MM_MALLOC
++#if defined(VECTORMEM) && defined(MM_MALLOC)
+ 	    _mm_free((void*)ptr);
+ #else
+ #if defined(VECTORMEM) & !defined(POSIX_MEMALIGN) & !defined(VALLOC) & !defined(MEMALIGN) & !defined(MM_MALLOC)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410062340.s96NerSw086418>