freebsd-ports/irc/znc/Makefile
Martin Wilke dcf0d02873 - Add patch from upstream to fix segfault in modperl on x86
Note:
Fix a crash bug when modperl was loaded on some arches

PERL_SYS_INIT3 was added to modperl in r1155-1158 to fix modperl on arches like
hppa. This added an invalid cast which caused a segfault.

If you have:
  const char *pArgv[];
  Then pArgv will point to the same memory location as &pArgv. This pointer was
  then casted to (char ***) which is one level of pointers too much for this
  pointer.

  Thanks to an anonymous reporter who pointed out the crash.
  Thanks to pippijin for helping me understand the C++ magic.

Reported by:	Elvis Stansvik <elvstone@gmail.com>
2008-11-15 22:56:40 +00:00

65 lines
1.3 KiB
Makefile

# New ports collection makefile for: znc
# Date created: 6 March 2008
# Whom: elvstone@gmail.com
#
# $FreeBSD$
#
PORTNAME= znc
PORTVERSION= 0.060
PORTREVISION= 1
CATEGORIES= irc ipv6
MASTER_SITES= SF
MAINTAINER= miwi@FreeBSD.org
COMMENT= An advanced IRC bouncer
GNU_CONFIGURE= yes
USE_GMAKE= yes
OPTIONS= DEBUG "Enable debugging" off \
IPV6 "Enable IPv6 support" off \
OPENSSL "Enable OpenSSL support" on \
PERL "Enable Perl support" on \
SASL "Enable SASL support" off
.include <bsd.port.pre.mk>
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --enable-debug
.endif
.if defined(WITH_IPV6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
.if defined(WITH_OPENSSL)
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE}
PLIST_SUB+= OPENSSL=""
.else
CONFIGURE_ARGS+= --disable-openssl
PLIST_SUB+= OPENSSL="@comment "
.endif
.if defined(WITH_PERL)
USE_PERL5= yes
PLIST_SUB+= PERL=""
.else
CONFIGURE_ARGS+= --disable-perl
PLIST_SUB+= PERL="@comment "
.endif
.if defined(WITH_SASL)
LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
CONFIGURE_ARGS+= --enable-sasl
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib"
PLIST_SUB+= SASL=""
.else
PLIST_SUB+= SASL="@comment "
.endif
MANCOMPREEED= yes
MAN1= znc.1.gz znc-buildmod.1.gz znc-config.1.gz
.include <bsd.port.post.mk>