diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2013-05-12 12:46:05 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-13 08:38:17 +0200 |
commit | 7c58258e212c45fadf6d01ea969798210f767557 (patch) | |
tree | df4e423678578f3be14bb72ae0011c4c169947c1 /package/libsigsegv | |
parent | 7c6232658a61c33d4746ace8f479916f957a5a6b (diff) | |
download | buildroot-novena-7c58258e212c45fadf6d01ea969798210f767557.tar.gz buildroot-novena-7c58258e212c45fadf6d01ea969798210f767557.zip |
libsigsegv: fix build on x86_64 (probably others too)
The configure script doesn't detect that the target is posix-compliant
and tries to use a custom version of segfault analysis that actually
doesn't build. Most likely, it's because the configure script doesn't
support linux-3.x. Anyway, we can just tell configure that we're
posix-compliant.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libsigsegv')
-rw-r--r-- | package/libsigsegv/libsigsegv.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libsigsegv/libsigsegv.mk b/package/libsigsegv/libsigsegv.mk index b8f84da8d..ac72c6dd2 100644 --- a/package/libsigsegv/libsigsegv.mk +++ b/package/libsigsegv/libsigsegv.mk @@ -7,6 +7,7 @@ LIBSIGSEGV_VERSION = 2.6 LIBSIGSEGV_SITE = $(BR2_GNU_MIRROR)/libsigsegv LIBSIGSEGV_INSTALL_STAGING = YES +LIBSIGSEGV_CONF_ENV = sv_cv_fault_posix=yes LIBSIGSEGV_LICENSE = GPLv2+ LIBSIGSEGV_LICENSE_FILES = COPYING |