diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2013-12-11 09:11:31 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2013-12-11 09:11:31 +0800 |
commit | 1f3fe531ef9357d236699f7612723fac4b9f903b (patch) | |
tree | ddcd50cb82c122760541c1151f260a7dce60e609 /devel/zziplib | |
parent | cee48a8fcc057a8786c168f86e8f4cf4471cd2dd (diff) | |
download | freebsd-ports-gnome-1f3fe531ef9357d236699f7612723fac4b9f903b.tar.gz freebsd-ports-gnome-1f3fe531ef9357d236699f7612723fac4b9f903b.tar.zst freebsd-ports-gnome-1f3fe531ef9357d236699f7612723fac4b9f903b.zip |
- 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.
Diffstat (limited to 'devel/zziplib')
-rw-r--r-- | devel/zziplib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/zziplib/Makefile b/devel/zziplib/Makefile index 28581460a419..e4a03532bd2f 100644 --- a/devel/zziplib/Makefile +++ b/devel/zziplib/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip 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=":" |