Skip to content
Snippets Groups Projects
Commit ccecfc93 authored by Niels Möller's avatar Niels Möller
Browse files

New command line option --enable-assembler.

Selects assembler code depending on the host system.

Rev: src/nettle/configure.in:1.11
parent 3a3d2d86
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,8 @@ AC_INIT(arcfour.c) ...@@ -7,6 +7,8 @@ AC_INIT(arcfour.c)
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(nettle, 1.5) AM_INIT_AUTOMAKE(nettle, 1.5)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
...@@ -28,6 +30,14 @@ if test x$with_lib_path != x ; then ...@@ -28,6 +30,14 @@ if test x$with_lib_path != x ; then
LDFLAGS="-L `echo $with_lib_path | sed 's/:/ -L /g'`" LDFLAGS="-L `echo $with_lib_path | sed 's/:/ -L /g'`"
fi fi
AC_ARG_ENABLE(assembler,
AC_HELP_STRING([--enable-assebler],[enable assembler code [default=yes]]),
[ case $enableval in
yes|no) ;;
*) AC_MSG_ERROR([bad value $enableval for --enable-assembler, need yes or no]) ;;
esac],
[enable_assembler=yes])
LSH_RPATH_INIT([`echo $with_lib_path | sed 's/:/ /g'` \ LSH_RPATH_INIT([`echo $with_lib_path | sed 's/:/ /g'` \
`echo $exec_prefix | sed "s@^NONE@$prefix/lib@g" | sed "s@^NONE@$ac_default_prefix/lib@g"` \ `echo $exec_prefix | sed "s@^NONE@$prefix/lib@g" | sed "s@^NONE@$ac_default_prefix/lib@g"` \
/usr/local/lib /sw/local/lib /sw/lib \ /usr/local/lib /sw/local/lib /sw/lib \
...@@ -43,6 +53,37 @@ if test "x$am_cv_prog_cc_stdc" = xno ; then ...@@ -43,6 +53,37 @@ if test "x$am_cv_prog_cc_stdc" = xno ; then
AC_ERROR([the C compiler doesn't handle ANSI-C]) AC_ERROR([the C compiler doesn't handle ANSI-C])
fi fi
# Select assembler code
path=
case "$host" in
[i?86*-*-* | k[5-8]*-*-* | pentium*-*-* | athlon-*-*])
path=x86
;;
*sparc*-*-*)
path=sparc
;;
esac
echo "enable_assembler: $enable_assembler, path: $path"
if test "$enable_assembler" = yes ; then
if test -n "$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
echo found
found=yes
AC_CONFIG_LINKS($tmp_f.asm:$path/$tmp_f.asm)
fi
done
if test "$found" = no; then
enable_assembler=no
AC_MSG_WARN([No assembler files found.])
fi
fi
fi
AC_PATH_PROG(M4, m4, m4) AC_PATH_PROG(M4, m4, m4)
# Checks for typedefs, structures, and compiler characteristics. # Checks for typedefs, structures, and compiler characteristics.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment