Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Dec 2013 01:11:31 +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: r336135 - head/devel/zziplib
Message-ID:  <201312110111.rBB1BVXl012003@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Wed Dec 11 01:11:31 2013
New Revision: 336135
URL: http://svnweb.freebsd.org/changeset/ports/336135

Log:
  - Fix build with SDL enabled
  
  Seems like our BSD make and gmake differ in some chdir()-related
  behaviour leading to BSD make build not being able to find zzip/zzip.h
  header by relative path (via -I. -I..):
  
  ../../SDL/SDL_rwops_zzip.c:9:10: fatal error: 'zzip/zzip.h' file not found
  
  this is fixed by swithing to gmake.

Modified:
  head/devel/zziplib/Makefile

Modified: head/devel/zziplib/Makefile
==============================================================================
--- head/devel/zziplib/Makefile	Wed Dec 11 01:11:12 2013	(r336134)
+++ head/devel/zziplib/Makefile	Wed Dec 11 01:11:31 2013	(r336135)
@@ -17,7 +17,7 @@ BUILD_DEPENDS=	zip:${PORTSDIR}/archivers
 OPTIONS_DEFINE=	SDL
 
 USE_BZIP2=	yes
-USES=		pathfix pkgconfig
+USES=		pathfix pkgconfig gmake
 USE_PYTHON_BUILD=	yes
 USE_AUTOTOOLS=	libtool
 CONFIGURE_ENV=	ac_cv_path_XMLTO=":"



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