41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2012/10/02 21:25:50 asau Exp $
|
|
#
|
|
|
|
.include "Makefile.common"
|
|
|
|
CATEGORIES= databases
|
|
|
|
COMMENT= Quick Database Manager - library of routines for managing a db
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LIBTOOL= yes
|
|
MAKE_FILE= LTmakefile
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --enable-zlib
|
|
CONFIGURE_ARGS+= --enable-iconv
|
|
CONFIGURE_ARGS+= --enable-bzip
|
|
CONFIGURE_ARGS+= --enable-lzo
|
|
PKGCONFIG_OVERRIDE= qdbm.pc.in
|
|
TEST_TARGET= check
|
|
|
|
INSTALLATION_DIRS+= bin include lib
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../archivers/lzo/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "none"
|
|
CONFIGURE_ARGS+= --without-pthread
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-pthread
|
|
CFLAGS+= ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= ${PTHREAD_LDFLAGS}
|
|
SUBST_CLASSES+= pthread
|
|
SUBST_STAGE.pthread= pre-configure
|
|
SUBST_FILES.pthread= configure
|
|
SUBST_SED.pthread= -e 's|-lpthread|${PTHREAD_LIBS}|'
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|