e9b29da103
Lots of bug fixes in SQL parsing and supports more weildy SQL code like using the right of an AS in athe column list of a SELECT as part of an expression in the WHERE, ORDER BY, GROUP BY and/of HAVING clauses. For a full report see the changelog on http://www.hwaci.com/sw/sqlite/changes.html
29 lines
767 B
Makefile
29 lines
767 B
Makefile
# $NetBSD: Makefile,v 1.10 2002/01/31 20:04:53 reinoud Exp $
|
|
|
|
DISTNAME= sqlite-2.2.5
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.hwaci.com/sw/sqlite/
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://www.hwaci.com/sw/sqlite/
|
|
COMMENT= SQL Database Engine In A C Library
|
|
|
|
WRKSRC= ${WRKDIR}/sqlite-build
|
|
|
|
USE_BUILDLINK_ONLY= YES
|
|
USE_LIBTOOL= YES
|
|
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_SCRIPT= ../sqlite/configure
|
|
CONFIGURE_ARGS+= --without-tcl
|
|
CONFIGURE_ENV+= config_TARGET_READLINE_INC="-I${BUILDLINK_DIR}/include"
|
|
|
|
CFLAGS+= -DUINT32_TYPE=u_int32_t -DUINT16_TYPE=u_int16_t \
|
|
-DUINT8_TYPE=u_int8_t -DINTPTR_TYPE=long
|
|
|
|
post-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
|
|
.include "../../devel/readline/buildlink.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|