pkgsrc/devel/libebml/buildlink3.mk
salo 0f1a2c74c0 Update to version 0.7.3
Changes:

- allow binary element comparison (useful to compare UIDs)
- rename bSaveDefault in bKeepIntact
- don't save empty EbmlMasters by default
- Use malloc() and free() instead of new[] and delete[] where the lib might
  deal with pointers that have been allocated by the app, or where the app
  has allocated the memory. Reason: new[]ed memory cannot be realloc()ed.
- Improved the dependency calculation to be more portable (makedepend doesn't
  exist everywhere, and it doesn't necessarily use the compiler we want).
- Added a "RemoveAll" function.
- better code to handle all VTS VOBs (not yet there)
2005-02-17 10:52:02 +00:00

23 lines
619 B
Makefile

# $NetBSD: buildlink3.mk,v 1.5 2005/02/17 10:52:02 salo Exp $
#
# This Makefile fragment is included by packages that use libebml.
#
BUILDLINK_DEPMETHOD.libebml?= build
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
LIBEBML_BUILDLINK3_MK:= ${LIBEBML_BUILDLINK3_MK}+
.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+= libebml
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibebml}
BUILDLINK_PACKAGES+= libebml
.if !empty(LIBEBML_BUILDLINK3_MK:M+)
BUILDLINK_DEPENDS.libebml+= libebml>=0.7.3
BUILDLINK_PKGSRCDIR.libebml?= ../../devel/libebml
.endif # LIBEBML_BUILDLINK3_MK
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}