diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2013-12-11 01:11:31 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2013-12-11 01:11:31 +0000 |
commit | a47436b412daa2426d94395758455fc42d77b7d4 (patch) | |
tree | ddcd50cb82c122760541c1151f260a7dce60e609 | |
parent | - Add stage support (diff) |
- 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.
Notes
Notes:
svn path=/head/; revision=336135
-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=":" |