Skip to content
Snippets Groups Projects
Commit efd87567 authored by Niels Möller's avatar Niels Möller
Browse files

* configure.in (asm_path): Use $srcdir when looking for the files.

* configure.in (asm_path): For now, disable x86 assembler code.
Bumped version to 1.6.

Rev: src/nettle/configure.in:1.15
parent 75085c91
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ AC_PREREQ(2.50)
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(nettle, 1.5)
AM_INIT_AUTOMAKE(nettle, 1.6)
AM_CONFIG_HEADER(config.h)
......@@ -71,11 +71,11 @@ if test "$enable_assembler" = yes ; then
if test -n "$asm_path"; then
found=no
for tmp_f in aes.asm machine.m4; do
# echo "Looking for $asm_path/$tmp_f"
if test -f "$asm_path/$tmp_f"; then
# echo "Looking for $srcdir/$asm_path/$tmp_f"
if test -f "$srcdir/$asm_path/$tmp_f"; then
# echo found
found=yes
AC_CONFIG_LINKS($tmp_f:$asm_path/$tmp_f)
AC_CONFIG_LINKS($tmp_f:$srcdir/$asm_path/$tmp_f)
fi
done
if test "$found" = no; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment