From efd875677d8e8987da73c29744e5603bc42c5d4a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Thu, 14 Mar 2002 12:04:32 +0100
Subject: [PATCH] * 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
---
 configure.in | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configure.in b/configure.in
index 227ad0f7..7ab306f3 100644
--- a/configure.in
+++ b/configure.in
@@ -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
-- 
GitLab