5a761e4578
What's New In Kaffe 1.1.7 ------------------------------------------------------ * Many cleanups, warning fixes and bug fixes. * Removed support for class library profiles, since --with-glibj-zip offers a more convenient replacement. * Updated to boehm-gc 6.6 * Updated to gjdoc 0.7.7 * Merged in fastjar. * Merged in zlib. There is a new configure option, --with-system-zlib to allow the use of the system zlib, instead of the merged in one. * Merged in GNU Classpath completely. Updated to version 0.90, with additional fixes. * Merged in port to DROPS. * Merged in port to Blackfin CPU. * Support for DragonFly BSD. * Ported to ia64-freebsd and alpha-freebsd. * Ported to powerpc-openbsd. * Improved support for Cygwin and sparc64-openbsd. * Improved stack handling for pthreads on openbsd. * Added simple direct threading interpreter implementation. The patches have been removes, since they were either included upstram or are no more necessary
24 lines
706 B
Makefile
24 lines
706 B
Makefile
# $NetBSD: buildlink3.mk,v 1.13 2006/05/10 16:46:20 tonio Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
KAFFE_BUILDLINK3_MK:= ${KAFFE_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= kaffe
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nkaffe}
|
|
BUILDLINK_PACKAGES+= kaffe
|
|
|
|
.if !empty(KAFFE_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.kaffe+= kaffe>=1.1.7
|
|
BUILDLINK_ABI_DEPENDS.kaffe?= kaffe>=1.1.7
|
|
BUILDLINK_PKGSRCDIR.kaffe?= ../../lang/kaffe
|
|
BUILDLINK_JAVA_PREFIX.kaffe= ${PREFIX}/java/kaffe
|
|
.endif # KAFFE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_CPPFLAGS.kaffe= \
|
|
-I${BUILDLINK_JAVA_PREFIX.kaffe}/include \
|
|
-I${BUILDLINK_JAVA_PREFIX.kaffe}/include/kaffe
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|