32f10d642e
0.2.8 (2014-01-10) ===== - Fix compiler warnings in test suites. - Fix edge-case error on alphabet set of size 255. (Thanks Naoki Youshinaga for the report, test case, and analysis.) - Fail trie operations on non-alphabet inputs, rather than silently allowing them to sneak in as false keys. (Thanks Naoki Youshinaga for the suggestion.) - Improved documentation. 0.2.7.1 (2013-10-22) ======= - Bump library versioning to reflect API addition. (Change missing in previous release) 0.2.7 (2013-10-21) ===== - Fix portability issue with non-GCC compilers. [Thanks Gabi Daver for the report and fix (via Mikhail Korobov).] - Fix compiler warnings. - New utility API for comparing AlphaChar strings. - Add test suites. - Update doxygen doc generation.
26 lines
687 B
Makefile
26 lines
687 B
Makefile
# $NetBSD: Makefile,v 1.13 2014/02/27 12:42:05 obache Exp $
|
|
#
|
|
|
|
DISTNAME= libdatrie-0.2.8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://linux.thai.net/pub/thailinux/software/libthai/ \
|
|
ftp://linux.thai.net/pub/ThaiLinux/software/libthai/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://linux.thai.net/~thep/datrie/datrie.html
|
|
COMMENT= Implementation of Double-Array Trie
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
CONFIGURE_ENV+= ICONV_LIBS=${BUILDLINK_LDADD.iconv:Q}
|
|
|
|
PKGCONFIG_OVERRIDE+= datrie-0.2.pc.in
|
|
|
|
CONFIGURE_ARGS+= --disable-doxygen-doc
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|