]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
* configure.in (asm_path): Use $srcdir when looking for the files.
authorNiels Möller <nisse@lysator.liu.se>
Thu, 14 Mar 2002 11:04:32 +0000 (12:04 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 14 Mar 2002 11:04:32 +0000 (12:04 +0100)
* configure.in (asm_path): For now, disable x86 assembler code.
Bumped version to 1.6.

Rev: src/nettle/configure.in:1.15

configure.in

index 227ad0f73183d137a14dacee429e6cdd92843caa..7ab306f31fcbc2c0407d9638b4ed586cdd767fb8 100644 (file)
@@ -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