ae05e5c199
* Removed unused tre_filter code. * Fixed printf format string and argument types for 64 bit builds. * Fixed params array signedness inconsistencies. * Fixed not to build agrep if --disable-approx is used. * Included GNU getopt implementation from gnulib. * Fixed backtracking matcher to work if malloc(0) returns NULL. * Removed guessing of best optimizing CFLAGS. * Fixed agrep exit status when no matches found. * Fixed regex parser on big-endian 64 bit architectures. * Added support for the -q command line option.
25 lines
699 B
Makefile
25 lines
699 B
Makefile
# $NetBSD: Makefile,v 1.4 2007/07/14 21:53:01 adrianp Exp $
|
|
|
|
DISTNAME= tre-0.7.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://laurikari.net/tre/
|
|
|
|
MAINTAINER= adrianp@NetBSD.org
|
|
HOMEPAGE= http://laurikari.net/tre/
|
|
COMMENT= Lightweight and robust POSIX compliant regexp matching library
|
|
|
|
#
|
|
# Please do not update or modify this package as it has been imported only
|
|
# as a dependency for chat/unrealircd. This package should only be updated
|
|
# when chat/unrealircd requires it.
|
|
#
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --disable-agrep
|
|
CONFIGURE_ARGS+= --disable-shared
|
|
CONFIGURE_ARGS+= --disable-system-abi
|
|
CONFIGURE_ARGS+= --disable-wchar
|
|
CONFIGURE_ARGS+= --disable-multibyte
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|