pkgsrc/devel/ptlib/buildlink3.mk
jmcneill c8021ea592 Update to 3.4.2:
* Fix static linking for mingw.
* Move the defaults so we can overwrite them depending on the
  platform.
* Finally fix static and dynamic plugins on mingw.
* Fixed being able to pass a ip%interface form of address string to
  a PIPSocket::Address and it still works correctly, using the ip
  part if there.
* Add the joined Makefile to the stable branch. Do not use it yet.
* Also delete static lib on make clean.
* Fixed correct upper/lower case comparisons as per RFC952 for
  domain names, which is not locale dependent, remove use of
  toupper().
* Killed the ununsed .major and .major.minor symlinks.
  The SONAME has always referred to the .major.minor.build lib.
* Switch the Makefiles in v2_4 like it was already done in trunk.
* Removed obsolete comment...
* Fixed gcc warning. Backport from TRUNK.
* Fixed Windows Speech API search directory to be more flexible.
* Make vfw configurable.
* STUN was not working with Open NAT.
* Applied patch for VXML not starting if not yet loaded and then
  not being started if later does get loaded. Thanks Antonio
  Rivera.
* Fixed incorrect port displayed in trace log for STUN, very
  confusing.
* Make sure CreateSocketPair also works with open nat.
* Fixed problem with "interface only" ip addresses not being parsed
  correctly on Windows Mobile systems.
* Windows Mobile build fixes
* More fixes to VXML, thank you Antonio Rivera
* Ensure Windows video output devices are available when using MSVC
  and not just MingW
  Backport from trunk
* Allow video file output device to work with new files
  Backport from trunk
* Fixed problem with PSafeCollection destructor deleting objects
  even if they still have a PSafePtr referencing them.
* Fix compilation without vfw.
2008-10-25 18:12:34 +00:00

25 lines
775 B
Makefile

# $NetBSD: buildlink3.mk,v 1.4 2008/10/25 18:12:34 jmcneill Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
PTLIB_BUILDLINK3_MK:= ${PTLIB_BUILDLINK3_MK}+
.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+= ptlib
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nptlib}
BUILDLINK_PACKAGES+= ptlib
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}ptlib
.if !empty(PTLIB_BUILDLINK3_MK:M+)
BUILDLINK_API_DEPENDS.ptlib+= ptlib>=2.4.2
BUILDLINK_ABI_DEPENDS.ptlib?= ptlib>=2.4.2
BUILDLINK_PKGSRCDIR.ptlib?= ../../devel/ptlib
.endif # PTLIB_BUILDLINK3_MK
.include "../../devel/SDL/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../textproc/expat/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}