Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
ba5856e4
Commit
ba5856e4
authored
Jun 22, 2011
by
Niels Möller
Browse files
Use pwd -P when examining lib directories.
Link in serpent-encrypt.asm, if found. Rev: nettle/configure.ac:1.34
parent
c1a53a88
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
ba5856e4
...
...
@@ -174,9 +174,9 @@ if test "x$ABI" != xstandard ; then
AC_MSG_WARN([Cross compiling for linux. Can't guess if libraries go in lib${ABI} or lib.]); dnl '
else
# The dash builtin pwd tries to be "helpful" and remember
# symlink names. Use
/bin/pwd instead
.
# symlink names. Use
-P option, and hope it's portable enough
.
test -d /usr/lib${ABI} \
&& (cd /usr/lib${ABI} &&
/bin/
pwd | grep >/dev/null "/lib${ABI}"'$') \
&& (cd /usr/lib${ABI} && pwd
-P
| grep >/dev/null "/lib${ABI}"'$') \
&& libdir='${exec_prefix}/'"lib${ABI}"
fi
;;
...
...
@@ -231,7 +231,8 @@ if test "x$enable_assembler" = xyes ; then
found=no
for tmp_f in aes-encrypt-internal.asm aes-decrypt-internal.asm \
arcfour-crypt.asm camellia-crypt-internal.asm \
md5-compress.asm memxor.asm sha1-compress.asm machine.m4; do
md5-compress.asm memxor.asm serpent-encrypt.asm \
sha1-compress.asm machine.m4; do
# echo "Looking for $srcdir/$asm_path/$tmp_f"
if test -f "$srcdir/$asm_path/$tmp_f"; then
# echo found
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment