diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-07-19 17:32:07 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-07-19 17:32:07 +0000 |
commit | e5ac873451ba953cdb9035e88f3d65eddf472f01 (patch) | |
tree | 44b5b779dd479ab85f2b2e16ee8b6b415491d76d /audio/sdl_mixer | |
parent | 105fd559d30fc5b151d54a068625609ea7d921d8 (diff) | |
download | ports-e5ac873451ba953cdb9035e88f3d65eddf472f01.tar.gz ports-e5ac873451ba953cdb9035e88f3d65eddf472f01.zip |
Notes
Diffstat (limited to 'audio/sdl_mixer')
-rw-r--r-- | audio/sdl_mixer/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/sdl_mixer/Makefile b/audio/sdl_mixer/Makefile index b60d4ce05eb3..9c7daf3a17d9 100644 --- a/audio/sdl_mixer/Makefile +++ b/audio/sdl_mixer/Makefile @@ -26,9 +26,15 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" INSTALLS_SHLIB= yes +.include <bsd.port.pre.mk> + +.if defined(WITH_MIKMOD) +LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod +.endif + post-configure: @${REINPLACE_CMD} -e \ 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ ${WRKSRC}/libtool -.include <bsd.port.mk> +.include <bsd.port.post.mk> |