use neon28 instead of neon26 which is deprecated. neon26 gets only used,

if neon26 is already installed (to prevent neon conflicting)

PR:		126702
Submitted by:	"Josh Paetzel" <josh@tcbug.org>
This commit is contained in:
Oliver Lehmann 2008-08-21 20:01:31 +00:00
parent d7eeb462c1
commit 75720f055f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=218968

View File

@ -310,7 +310,11 @@ PLIST_SUB+= PARANORMALPLUGIN="@comment "
.endif
.if !defined(WITHOUT_NEON)
LIB_DEPENDS+= neon.26:${PORTSDIR}/www/neon26
.if exists(${LOCALBASE}/lib/libneon.so.26)
LIB_DEPENDS+= neon.26:${PORTSDIR}/www/neon26
.else
LIB_DEPENDS+= neon.28:${PORTSDIR}/www/neon28
.endif
CONFIGURE_ARGS+=--enable-neon
PLIST_SUB+= NEONPLUGIN=""
.else