Skip to content
Snippets Groups Projects
Commit 1ccb60fb authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fix for Linux/IA64.

Rev: src/modules/Image/configure.in:1.14
parent 6de1dcf0
No related branches found
No related tags found
No related merge requests found
# $Id: configure.in,v 1.13 2000/05/29 09:58:24 per Exp $ # $Id: configure.in,v 1.14 2000/07/14 21:23:10 grubba Exp $
AC_INIT(image.c) AC_INIT(image.c)
AC_CONFIG_HEADER(image_machine.h) AC_CONFIG_HEADER(image_machine.h)
...@@ -20,9 +20,14 @@ ASSEMBLY_OBJECTS="" ...@@ -20,9 +20,14 @@ ASSEMBLY_OBJECTS=""
AC_MSG_CHECKING( [if nasm can be used] ) AC_MSG_CHECKING( [if nasm can be used] )
if nasm -f elf -o assembly.o $srcdir/assembly.s ; then if nasm -f elf -o assembly.o $srcdir/assembly.s ; then
ASSEMBLY_OBJECTS=assembly.o # nasm/ia64 can compile ia32 code...
AC_DEFINE(ASSEMBLY_OK) if test "`uname -m`" = "ia64"; then
AC_MSG_RESULT(yes) AC_MSG_RESULT([yes, but we are on an IA64 machine])
else
ASSEMBLY_OBJECTS=assembly.o
AC_DEFINE(ASSEMBLY_OK)
AC_MSG_RESULT(yes)
fi
else else
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment