daa81e9135
(pattern not matched). ugh, bash. fixes build on Linux. reported by minskim@
12 lines
546 B
Makefile
12 lines
546 B
Makefile
# $NetBSD: hacks.mk,v 1.2 2004/12/21 08:57:48 grant 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
|