diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2012-07-11 00:25:45 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-17 23:49:10 +0200 |
commit | 20b2199d30f9c00abd51ae199d0934f4eb70d870 (patch) | |
tree | b1274b62d4ac50d426a472f34c392c66bb1849e2 /package/libnspr/libnspr.mk | |
parent | 7d8434630b397dab7da3739c9f737fc2fbf0e97d (diff) | |
download | buildroot-novena-20b2199d30f9c00abd51ae199d0934f4eb70d870.tar.gz buildroot-novena-20b2199d30f9c00abd51ae199d0934f4eb70d870.zip |
libnspr: fix 64-bit build
On some architectures (found on x86_64, but probably others too),
libnspr builds with -m32 unless it is configured for 64-bit build. So
force 64-bit build on 64-bit architectures.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libnspr/libnspr.mk')
-rw-r--r-- | package/libnspr/libnspr.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk index c2cc99685..689caa424 100644 --- a/package/libnspr/libnspr.mk +++ b/package/libnspr/libnspr.mk @@ -12,6 +12,8 @@ LIBNSPR_INSTALL_STAGING = YES LIBNSPR_CONF_ENV = HOST_CFLAGS="-g -O2" \ HOST_LDFLAGS="-lc" # NSPR mixes up --build and --host -LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME) +LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME) +LIBNSPR_CONF_OPT += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit +LIBNSPR_CONF_OPT += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6 $(eval $(autotools-package)) |