svn commit: r336135 - head/devel/zziplib
Dmitry Marakasov
amdmi3 at FreeBSD.org
Wed Dec 11 01:11:31 UTC 2013
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=":"
More information about the svn-ports-all
mailing list