diff options
author | dholland <dholland> | 2012-09-28 03:25:41 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-09-28 03:25:41 +0000 |
commit | 3d41263e281674705b91f2e105e5a13320367340 (patch) | |
tree | 0a79c862626163df0df8f5e9cd3efe3287574068 /ham | |
parent | 63b5ae3f3357a26eb7d3f92a39f073158cc12f76 (diff) | |
download | pkgsrc-3d41263e281674705b91f2e105e5a13320367340.tar.gz |
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.
Diffstat (limited to 'ham')
-rw-r--r-- | ham/fldigi/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ham/fldigi/Makefile b/ham/fldigi/Makefile index 14358a8cffd..b434d5ed5b2 100644 --- a/ham/fldigi/Makefile +++ b/ham/fldigi/Makefile @@ -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" |