c750282763
Open-source implementation of the Java Platform, Standard Edition.
15 lines
486 B
Makefile
15 lines
486 B
Makefile
# $NetBSD: hacks.mk,v 1.1 2015/02/08 08:41:25 tnn Exp $
|
|
|
|
.if !defined(OPENJDK8_HACKS_MK)
|
|
OPENJDK8_HACKS_MK= # empty
|
|
|
|
### Ensure we do not pickup external jpeg includes: openjdk uses an internal
|
|
### libjpeg with potentially conflicting defines, which breaks at least
|
|
### libjpeg-turbo
|
|
post-wrapper:
|
|
${RM} -f ${BUILDLINK_DIR}/include/jconfig.h
|
|
${RM} -f ${BUILDLINK_DIR}/include/jerror.h
|
|
${RM} -f ${BUILDLINK_DIR}/include/jmorecfg.h
|
|
${RM} -f ${BUILDLINK_DIR}/include/jpeglib.h
|
|
|
|
.endif
|