Mon Feb 29 17:52:18 2016 UTC ()
Work around mktime configure test failure which leads to a build issue
on Darwin/64-bit.


(jperkin)
diff -r1.53 -r1.54 pkgsrc/security/libprelude/Makefile

cvs diff -r1.53 -r1.54 pkgsrc/security/libprelude/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/security/libprelude/Attic/Makefile 2015/08/23 14:30:36 1.53
+++ pkgsrc/security/libprelude/Attic/Makefile 2016/02/29 17:52:18 1.54
@@ -1,28 +1,33 @@ @@ -1,28 +1,33 @@
1# $NetBSD: Makefile,v 1.53 2015/08/23 14:30:36 wiz Exp $ 1# $NetBSD: Makefile,v 1.54 2016/02/29 17:52:18 jperkin Exp $
2# 2#
3 3
4COMMENT= LibPrelude libraries and c++ easy bindings 4COMMENT= LibPrelude libraries and c++ easy bindings
5PKGREVISION= 11 5PKGREVISION= 11
6 6
7.include "../../security/libprelude/Makefile.common" 7.include "../../security/libprelude/Makefile.common"
8 8
9CONF_FILES+= ${PREFIX}/share/examples/libprelude/client.conf ${PKG_SYSCONFDIR}/default/client.conf 9CONF_FILES+= ${PREFIX}/share/examples/libprelude/client.conf ${PKG_SYSCONFDIR}/default/client.conf
10CONF_FILES+= ${PREFIX}/share/examples/libprelude/global.conf ${PKG_SYSCONFDIR}/default/global.conf 10CONF_FILES+= ${PREFIX}/share/examples/libprelude/global.conf ${PKG_SYSCONFDIR}/default/global.conf
11CONF_FILES+= ${PREFIX}/share/examples/libprelude/idmef-client.conf ${PKG_SYSCONFDIR}/default/idmef-client.conf 11CONF_FILES+= ${PREFIX}/share/examples/libprelude/idmef-client.conf ${PKG_SYSCONFDIR}/default/idmef-client.conf
12CONF_FILES+= ${PREFIX}/share/examples/libprelude/tls.conf ${PKG_SYSCONFDIR}/default/tls.conf 12CONF_FILES+= ${PREFIX}/share/examples/libprelude/tls.conf ${PKG_SYSCONFDIR}/default/tls.conf
13 13
14CONFIGURE_ARGS+= --without-python --without-lua --without-perl --without-ruby 14CONFIGURE_ARGS+= --without-python --without-lua --without-perl --without-ruby
15 15
 16# Work around mktime configure test failure leading to build issue
 17.if !empty(MACHINE_PLATFORM:MDarwin-*-x86_64)
 18CONFIGURE_ENV+= ac_cv_func_working_mktime=yes
 19.endif
 20
16PKGCONFIG_OVERRIDE+= src/libprelude.pc.in 21PKGCONFIG_OVERRIDE+= src/libprelude.pc.in
17 22
18PKG_OPTIONS_VAR= PKG_OPTIONS.libprelude 23PKG_OPTIONS_VAR= PKG_OPTIONS.libprelude
19PKG_SUPPORTED_OPTIONS= debug 24PKG_SUPPORTED_OPTIONS= debug
20 25
21.include "../../mk/bsd.options.mk" 26.include "../../mk/bsd.options.mk"
22 27
23.if !empty(PKG_OPTIONS:Mdebug) 28.if !empty(PKG_OPTIONS:Mdebug)
24CFLAGS= -O0 -ggdb 29CFLAGS= -O0 -ggdb
25.endif 30.endif
26 31
27.include "../../devel/libltdl/convenience.mk" 32.include "../../devel/libltdl/convenience.mk"
28.include "../../security/gnutls/buildlink3.mk" 33.include "../../security/gnutls/buildlink3.mk"