As a temporary expedient, disable execinfo when on NetBSD. This fixes

the build on -current. A better fix would be to add a -lexecinfo test
to the configure script, but that requires regenerating with an old
version of autoconf... not tonight.
This commit is contained in:
dholland 2012-09-28 03:25:41 +00:00
parent ce8a49b33e
commit c0b955e2c8

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.15 2012/08/08 00:19:11 gdt Exp $
# $NetBSD: Makefile,v 1.16 2012/09/28 03:25:41 dholland Exp $
#
DISTNAME= fldigi-3.03
@ -21,6 +21,12 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-xmlrpc=no
CONFIGURE_ENV+= STRIP=${STRIP}
.include "../../mk/bsd.prefs.mk"
.if ${LOWER_OPSYS} == "netbsd"
CONFIGURE_ENV+= ac_cv_header_execinfo_h=no
.endif
.include "../../audio/libsamplerate/buildlink3.mk"
.include "../../audio/libsndfile/buildlink3.mk"
.include "../../audio/portaudio-devel/buildlink3.mk"