- Fix 'make package' when NO_INSTALL_MANPAGES is defined

PR:		ports/146083
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet AT sunpoet.net>
Approved by:	Pavel I Volkov <pol AT opk.ru> (maintainer)
This commit is contained in:
Li-Wen Hsu 2010-08-18 22:02:12 +00:00
parent 6cbf8e5f48
commit 0d064c8d8f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259546

View file

@ -27,8 +27,6 @@ CONFIGURE_ENV+= TCLSH_CMD="${TCLSH}" \
TCLLIBDIR="${PREFIX}/lib/${PORTNAME}" \
ac_cv_search_pthread_create=""
MAN1= sqlite3.1
OPTIONS= DEBUG "Enable debugging & verbose explain" off \
FTS3 "Enable FTS3 (Full Text Search) module" off \
RTREE "Enable R*Tree module" off \
@ -40,6 +38,10 @@ OPTIONS= DEBUG "Enable debugging & verbose explain" off \
.include <bsd.port.pre.mk>
.if !defined(NO_INSTALL_MANPAGES)
MAN1= sqlite3.1
.endif
.if ${OSVERSION} < 700000
EXTRA_PATCHES+= ${FILESDIR}/pthread_equal_stub
.endif