diff options
author | asau <asau@pkgsrc.org> | 2016-08-23 20:03:48 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2016-08-23 20:03:48 +0000 |
commit | 038c87465d8ce8db2d4ddda7594d26504b13d435 (patch) | |
tree | e828a1991e47dbb9824688e1814c324da2c2adc3 /lang | |
parent | d2283fa77e41bd2dfb73e731e040e83ceb1a5eb7 (diff) | |
download | pkgsrc-038c87465d8ce8db2d4ddda7594d26504b13d435.tar.gz |
Force the assumption made by i386-specific code.
This fixes build on NetBSD/i386 7.99.34.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/clisp/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index cfd37f863b8..b74cc701046 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.106 2016/02/23 15:19:23 joerg Exp $ +# $NetBSD: Makefile,v 1.107 2016/08/23 20:03:48 asau Exp $ # DISTNAME= clisp-2.49 @@ -49,6 +49,10 @@ TEST_TARGET= check mod-check CONFIGURE_ARGS+= --disable-mmap .endif +.if $(MACHINE_ARCH:Mi386) +CFLAGS+= -falign-functions=4 # force the assumption +.endif + .if ${OPSYS} == "SunOS" USE_TOOLS+= bash CONFIG_SHELL= ${TOOLS_PATH.bash} |