ae5dce2428
VIA PadLock Security Engine: - The new option is turned on by default. - The new option is only available on i386 systems except Mac OS X (which doesn't work on VIA CPU). - The new option isn't available on system which uses GCC 3.x because it causes build failures. This fixes PR pkg/38197. Approved by Dieter Baron.
12 lines
545 B
Makefile
12 lines
545 B
Makefile
# $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
|