summaryrefslogtreecommitdiff
path: root/security/libgcrypt/hacks.mk
blob: 4419a7bf184c3b6bdd612ae3e1867db13b73f302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# $NetBSD: hacks.mk,v 1.4 2008/03/26 20:09:43 tron Exp $

# config.h #defines socklen_t if it is not defined, but libgcrypt does
# not propogate this to the installed gcrypt.h, so packages using it
# subsequently fail.
#
# hack around this by using the same #define (if present) in gcrypt.h.
post-configure:
	socklen=`${GREP} '^#define socklen_t' ${WRKSRC}/config.h || ${TRUE}`; \
		${MV} ${WRKSRC}/src/gcrypt.h ${WRKSRC}/src/gcrypt.h.old; \
		${SED} -e "s,^/\* socklen_t \*/,$$socklen," \
			${WRKSRC}/src/gcrypt.h.old > ${WRKSRC}/src/gcrypt.h