summaryrefslogtreecommitdiff
path: root/mail/procmail/hacks.mk
blob: 01855ab68d1832dca1ffc3f1cb83e063333c5ccd (plain)
1
2
3
4
5
6
7
8
9
10
# $NetBSD: hacks.mk,v 1.1 2005/12/23 04:36:45 jlam Exp $

### [Fri Dec 23 04:33:11 UTC 2005 : jlam]
### Inlining functions seems to cause strstr() to enter an infinite loop
### on Solaris, so disable it.  This fixes PR pkg/30999.
###
.if ${OPSYS} == "SunOS"
PKG_HACKS+=	solaris-inline
CFLAGS+=	-fno-inline-functions
.endif