Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Brian Smith
nettle
Commits
b15b54e5
Commit
b15b54e5
authored
23 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
(asm_path): Renamed "path" to "asm_path". Also look
for a machine.m4. Rev: src/nettle/configure.in:1.13
parent
a61985d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.in
+9
-9
9 additions, 9 deletions
configure.in
with
9 additions
and
9 deletions
configure.in
+
9
−
9
View file @
b15b54e5
...
...
@@ -54,27 +54,27 @@ if test "x$am_cv_prog_cc_stdc" = xno ; then
fi
# Select assembler code
path=
asm_
path=
case "$host" in
[i?86*-*-* | k[5-8]*-*-* | pentium*-*-* | athlon-*-*])
path=x86
asm_
path=x86
;;
*sparc*-*-*)
path=sparc
asm_
path=sparc
;;
esac
# echo "enable_assembler: $enable_assembler, path: $path"
# echo "enable_assembler: $enable_assembler,
asm_
path: $
asm_
path"
if test "$enable_assembler" = yes ; then
if test -n "$path"; then
if test -n "$
asm_
path"; then
found=no
for tmp_f in aes
aes_tables
; do
# echo "Looking for $path/$tmp_f
.asm
"
if test -f "$path/$tmp_f
.asm
"; then
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 found
found=yes
AC_CONFIG_LINKS($tmp_f
.
asm
:$
path/$tmp_f
.asm
)
AC_CONFIG_LINKS($tmp_f
:$
asm
_
path/$tmp_f)
fi
done
if test "$found" = no; then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment