blob: 01d0b2150f6463c39a4e14c2a7e44f790d7413ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $NetBSD: Makefile,v 1.24 2012/08/05 10:02:09 obache Exp $
#
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../databases/libpqxx/Makefile.common"
COMMENT= C++ interface to postgresql-lib
PKGREVISION= 4
NOT_FOR_PLATFORM= NetBSD-*-pc532
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
PKGCONFIG_OVERRIDE+= libpqxx.pc.in
GNU_CONFIGURE= yes
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
# No strerror_r
CONFIGURE_ARGS+= --disable-thread-safety
.endif
.include "../../mk/pgsql.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|