summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2018-01-23 21:00:44 +0100
committerNiels Möller <nisse@lysator.liu.se>2018-01-23 21:00:44 +0100
commit215ed3328dac8d8e1ed641194076549e04f8edc7 (patch)
tree1169a3232b110be664c51c2ec5304f0d6cb55b83 /configure.ac
parente15e7faed58f0095872f3a9c5198ea11153dfe54 (diff)
downloadnettle-215ed3328dac8d8e1ed641194076549e04f8edc7.tar.gz
Recognize "x86" as cpu name.
* configure.ac (asm_path): Recognize "x86", in addition to "i?86", for 32-bit x86 processors. Reportedly needed for x86 android builds.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8fb1cb2a..41bf0998 100644
--- a/configure.ac
+++ b/configure.ac
@@ -396,7 +396,7 @@ OPT_NETTLE_SOURCES=""
asm_path=
if test "x$enable_assembler" = xyes ; then
case "$host_cpu" in
- [i?86* | k[5-8]* | pentium* | athlon])
+ [x86 | i?86* | k[5-8]* | pentium* | athlon])
asm_path=x86
;;
[x86_64 | amd64])