1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

- fix support for non default options

with options NG and usage of APACHE_PKGNAMEPREFIX
bsd.port.pre.mk has to be included before OPTIONS
else OPTIONFILE points a non existing location and
additional options are ignored

no version bump, it affects only non default options
This commit is contained in:
Olli Hauer 2012-07-26 22:20:34 +00:00
parent 267cb3ba37
commit 31817082aa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301585

View File

@ -16,6 +16,10 @@ COMMENT= Apache module that allows downloading and streaming of audio
LICENSE= LGPL21
USE_APACHE= 20+
.include <bsd.port.pre.mk>
OPTIONS_DEFINE= NLS FLAC MP3 MP4 VORBIS LIBARCHIVE FILECACHE MYSQLCACHE
OPTIONS_DEFAULT=NLS MP3 LIBARCHIVE FILECACHE
@ -27,8 +31,6 @@ MYSQLCACHE_DESC= MySQL caching support
MAKE_JOBS_SAFE= yes
USE_APACHE= 20+
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
@ -119,4 +121,4 @@ post-install:
@${CAT} ${PKGMESSAGE}
@${ECHO_MSG} ""
.include <bsd.port.mk>
.include <bsd.port.post.mk>