1 dnl -*- mode: shell-script; sh-indentation: 2; -*-
3 dnl Process this file with autoconf to produce a configure script.
5 AC_INIT([nettle], [2.7.1], [nettle-bugs@lists.lysator.liu.se])
7 AC_CONFIG_SRCDIR([arcfour.c])
8 # Needed to stop autoconf from looking for files in parent directories.
11 AC_CONFIG_HEADER([config.h])
21 # Command line options
22 AC_ARG_WITH(include-path,
23 AC_HELP_STRING([--with-include-path], [A colon-separated list of directories to search for include files]),,
24 [with_include_path=''])
26 if test x$with_include_path != x ; then
27 CPPFLAGS="$CPPFLAGS -I`echo $with_include_path | sed 's/:/ -I/g'`"
31 AC_HELP_STRING([--with-lib-path], [A colon-separated list of directories to search for libraries]),,
34 if test x$with_lib_path != x ; then
35 LDFLAGS="$LDFLAGS -L`echo $with_lib_path | sed 's/:/ -L/g'`"
38 AC_ARG_ENABLE(public-key,
39 AC_HELP_STRING([--disable-public-key], [Disable public key algorithms]),,
40 [enable_public_key=yes])
42 AC_ARG_ENABLE(assembler,
43 AC_HELP_STRING([--disable-assembler],[Disable assembler code]),,
44 [enable_assembler=yes])
47 AC_HELP_STRING([--disable-static], [Do not build any static library]),,
51 AC_HELP_STRING([--disable-shared], [Do not build any shared library]),,
55 AC_HELP_STRING([--disable-pic],
56 [Do not try to compile library files as position independent code]),,
59 AC_ARG_ENABLE(openssl,
60 AC_HELP_STRING([--disable-openssl], [Do not include openssl glue in the benchmark program]),,
64 AC_HELP_STRING([--enable-gcov], [Instrument for gcov (requires a modern gcc)]),,
67 AC_ARG_ENABLE(documentation,
68 AC_HELP_STRING([--disable-documentation], [Omit building and installing the documentation. (default=auto)]),,
69 [enable_documentation=auto])
71 AC_ARG_ENABLE(arm-neon,
72 AC_HELP_STRING([--enable-arm-neon], [Enable ARM Neon assembly. (default=auto)]),,
73 [enable_arm_neon=auto])
75 LSH_RPATH_INIT([`echo $with_lib_path | sed 's/:/ /g'` \
76 `echo $exec_prefix | sed "s@^NONE@$prefix/lib@g" | sed "s@^NONE@$ac_default_prefix/lib@g"` \
77 /usr/local/lib /sw/local/lib /sw/lib \
78 /usr/gnu/lib /opt/gnu/lib /sw/gnu/lib /usr/freeware/lib /usr/pkg/lib])
80 # Checks for programs.
83 # When $CC foo.c -o foo creates both foo and foo.exe, autoconf picks
84 # up the foo.exe and sets exeext to .exe. That is correct for cygwin,
85 # which has some kind of magic link from foo to foo.exe, but not for
86 # rntcl. A better check for the cygwin case would check if the
87 # contents of foo and foo.exe are equal; in the rntcl case, foo is a
88 # sh script, and foo.exe is a windows executable.
90 if test "x$CC" = xrntcl ; then
91 AC_MSG_NOTICE([Compiling with rntcl; clearing EXEEXT and disabling assembler])
98 # Used by the testsuite only
102 AC_TRY_COMPILE([],[return 0;],[IF_CXX=''], [IF_CXX='#'])
108 AC_CHECK_TOOL(NM, nm, strings)
109 # Used only for the GNU-stack configure test.
110 AC_CHECK_TOOL(OBJDUMP, objdump, false)
111 AC_CHECK_TOOL(AR, ar, false)
113 if test "x$ac_cv_prog_cc_stdc" = xno ; then
114 AC_ERROR([the C compiler doesn't handle ANSI-C]) #'
119 # According to the autoconf manual, needs install-sh from
120 # autoconf-2.60 or automake-1.10 to avoid races.
125 # Compiler tests for the build system
126 GMP_PROG_CC_FOR_BUILD
127 GMP_PROG_EXEEXT_FOR_BUILD
129 LSH_DEPENDENCY_TRACKING
131 if test x$enable_dependency_tracking = xyes ; then
132 # Since the makefiles use include to get the dependency files, we must
133 # make sure that the files exist. We generate some more files than are
136 AC_CONFIG_COMMANDS([dummy-dep-files],
137 [(cd "$srcdir" && find . '(' -name '*.c' -o -name '*.cxx' ')' -print) \
138 | sed 's/\.c\(xx\)\{0,1\}$//' | (while read f; do echo > "$f.o.d"; echo > "$f.po.d"; done)
142 # Figure out ABI. Currently, configurable only by setting CFLAGS.
148 #if defined(__x86_64__) || defined(__arch64__)
159 #if defined(__sparcv9) || defined(__arch64__)
170 if test "x$ABI" != xstandard ; then
171 AC_MSG_NOTICE([Compiler uses $ABI-bit ABI. To change, set CC.])
172 if test "$libdir" = '${exec_prefix}/lib' ; then
173 # Try setting a better default
174 case "$host_cpu:$host_os:$ABI" in
175 *:solaris*:32|*:sunos*:32)
176 libdir='${exec_prefix}/lib'
178 *:solaris*:64|*:sunos*:64)
179 libdir='${exec_prefix}/lib/64'
181 # Linux conventions are a mess... According to the Linux File
182 # Hierarchy Standard, all architectures except IA64 puts 32-bit
183 # libraries in lib, and 64-bit in lib64. Some distributions,
184 # e.g., Fedora and Gentoo, adhere to this standard, while at
185 # least Debian has decided to put 64-bit libraries in lib and
186 # 32-bit libraries in lib32.
188 # We try to figure out the convention, except if we're cross
189 # compiling. We use lib${ABI} if /usr/lib${ABI} exists and
190 # appears to not be a symlink to a different name.
191 *:linux*:32|*:linux*:64)
192 if test "$cross_compiling" = yes ; then
193 AC_MSG_WARN([Cross compiling for linux. Can't guess if libraries go in lib${ABI} or lib.]); dnl '
195 # The dash builtin pwd tries to be "helpful" and remember
196 # symlink names. Use -P option, and hope it's portable enough.
197 test -d /usr/lib${ABI} \
198 && (cd /usr/lib${ABI} && pwd -P | grep >/dev/null "/lib${ABI}"'$') \
199 && libdir='${exec_prefix}/'"lib${ABI}"
202 # On freebsd, it seems 32-bit libraries are in lib32,
203 # and 64-bit in lib. Don't know about "kfreebsd", does
204 # it follow the Linux fhs conventions?
206 libdir='${exec_prefix}/lib32'
209 libdir='${exec_prefix}/lib'
212 AC_MSG_WARN([Don't know where to install $ABI-bit libraries on this system.]); dnl '
215 AC_MSG_NOTICE([Libraries to be installed in $libdir.])
219 # Select assembler code
221 if test "x$enable_assembler" = xyes ; then
223 [i?86* | k[5-8]* | pentium* | athlon])
227 if test "$ABI" = 64 ; then
234 if test "$ABI" = 64 ; then
241 NETTLE_CHECK_ARM_NEON
243 asm_path="arm/v6 arm"
245 if test "x$enable_arm_neon" = xyes ; then
246 asm_path="arm/neon $asm_path"
258 # Files which replace a C source file (or otherwise don't correspond
259 # to a new object file).
260 asm_replace_list="aes-encrypt-internal.asm aes-decrypt-internal.asm \
261 arcfour-crypt.asm camellia-crypt-internal.asm \
262 md5-compress.asm memxor.asm \
263 salsa20-crypt.asm salsa20-core-internal.asm \
264 serpent-encrypt.asm serpent-decrypt.asm \
265 sha1-compress.asm sha256-compress.asm sha512-compress.asm \
266 sha3-permute.asm umac-nh.asm umac-nh-n.asm machine.m4"
268 # Assembler files which generate additional object files if they are used.
271 if test "x$enable_public_key" = "xyes" ; then
272 asm_optional_list="ecc-192-modp.asm ecc-224-modp.asm ecc-256-redc.asm \
273 ecc-384-modp.asm ecc-521-modp.asm"
280 if test "x$enable_assembler" = xyes ; then
281 if test -n "$asm_path"; then
282 AC_MSG_NOTICE([Looking for assembler files in $asm_path.])
283 for tmp_f in $asm_replace_list ; do
284 for asm_dir in $asm_path ; do
285 if test -f "$srcdir/$asm_dir/$tmp_f"; then
286 asm_file_list="$asm_file_list $tmp_f"
287 AC_CONFIG_LINKS($tmp_f:$asm_dir/$tmp_f)
292 dnl Workaround for AC_CONFIG_LINKS, which complains if we use the
293 dnl same destination argument $tmp_f multiple times.
294 for tmp_o in $asm_optional_list ; do
295 for asm_dir in $asm_path ; do
296 if test -f "$srcdir/$asm_dir/$tmp_o"; then
297 asm_file_list="$asm_file_list $tmp_o"
298 AC_CONFIG_LINKS($tmp_o:$asm_dir/$tmp_o)
299 while read tmp_func ; do
300 AC_DEFINE_UNQUOTED(HAVE_NATIVE_$tmp_func)
301 eval HAVE_NATIVE_$tmp_func=yes
303 [`sed -n 's/[^ ]*PROLOGUE(_*\(nettle_\)*\([^)]*\)).*$/\2/p' < "$srcdir/$asm_dir/$tmp_o"`]
305 OPT_ASM_SOURCES="$OPT_ASM_SOURCES $tmp_o"
310 if test -z "$asm_file_list"; then
312 AC_MSG_WARN([No assembler files found.])
317 AC_SUBST([OPT_ASM_SOURCES])
319 AH_VERBATIM([HAVE_NATIVE],
320 [/* Define to 1 each of the following for which a native (ie. CPU specific)
321 implementation of the corresponding routine exists. */
322 #undef HAVE_NATIVE_ecc_192_modp
323 #undef HAVE_NATIVE_ecc_192_redc
324 #undef HAVE_NATIVE_ecc_224_modp
325 #undef HAVE_NATIVE_ecc_224_redc
326 #undef HAVE_NATIVE_ecc_256_modp
327 #undef HAVE_NATIVE_ecc_256_redc
328 #undef HAVE_NATIVE_ecc_384_modp
329 #undef HAVE_NATIVE_ecc_384_redc
330 #undef HAVE_NATIVE_ecc_521_modp
331 #undef HAVE_NATIVE_ecc_521_redc])
333 # Besides getting correct dependencies, the explicit rules also tell
334 # make that the .s files "ought to exist", so they are preferred over
336 AC_CONFIG_COMMANDS([asm.d],
337 [ for f in $asm_file_list
341 echo "`basename $f .asm`.s : $f "'$(srcdir)/asm.m4 machine.m4 config.m4'
346 [ asm_file_list="$asm_file_list" ]
354 LIBNETTLE_FILE_SRC='$(LIBNETTLE_FORLINK)'
355 LIBHOGWEED_FILE_SRC='$(LIBHOGWEED_FORLINK)'
361 # The actual DLLs, e.g. libnettle-$major-$minor.dll, are normally
362 # installed into the bin dir (or more exactly $libdir/../bin, for
363 # automake), while libnettle.dll.a, which is a stub file for
364 # linking to the DLL, is installed into the lib dir.
367 LIBNETTLE_FORLINK='libnettle-$(LIBNETTLE_MAJOR)-$(LIBNETTLE_MINOR).dll'
368 LIBHOGWEED_FORLINK='libhogweed-$(LIBHOGWEED_MAJOR)-$(LIBHOGWEED_MINOR).dll'
371 LIBNETTLE_FORLINK='cygnettle-$(LIBNETTLE_MAJOR)-$(LIBNETTLE_MINOR).dll'
372 LIBHOGWEED_FORLINK='cyghogweed-$(LIBHOGWEED_MAJOR)-$(LIBHOGWEED_MINOR).dll'
375 if test "x$cross_compiling" = xyes ; then
385 if test "x$ABI" = x64 ; then
389 LIBNETTLE_FILE='libnettle.dll.a'
390 LIBNETTLE_FILE_SRC='$(LIBNETTLE_FILE)'
391 LIBNETTLE_LINK='$(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,--out-implib=$(LIBNETTLE_FILE) -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--whole-archive'
392 LIBNETTLE_LIBS='-Wl,--no-whole-archive $(LIBS)'
395 LIBHOGWEED_FILE='libhogweed.dll.a'
396 LIBHOGWEED_FILE_SRC='$(LIBHOGWEED_FILE)'
397 LIBHOGWEED_LINK='$(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,--out-implib=$(LIBHOGWEED_FILE) -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--whole-archive'
398 LIBHOGWEED_LIBS='-Wl,--no-whole-archive $(LIBS) libnettle.dll.a'
402 LIBNETTLE_FORLINK=libnettle.dylib
403 LIBNETTLE_SONAME='libnettle.$(LIBNETTLE_MAJOR).dylib'
404 LIBNETTLE_FILE='libnettle.$(LIBNETTLE_MAJOR).$(LIBNETTLE_MINOR).dylib'
405 LIBNETTLE_LINK='$(CC) $(CFLAGS) -dynamiclib $(LDFLAGS) -install_name ${libdir}/$(LIBNETTLE_SONAME) -compatibility_version $(LIBNETTLE_MAJOR) -current_version $(LIBNETTLE_MAJOR).$(LIBNETTLE_MINOR)'
408 LIBHOGWEED_FORLINK=libhogweed.dylib
409 LIBHOGWEED_SONAME='libhogweed.$(LIBHOGWEED_MAJOR).dylib'
410 LIBHOGWEED_FILE='libhogweed.$(LIBHOGWEED_MAJOR).$(LIBHOGWEED_MINOR).dylib'
411 LIBHOGWEED_LINK='$(CC) $(CFLAGS) -dynamiclib -L. $(LDFLAGS) -install_name ${libdir}/$(LIBHOGWEED_SONAME) -compatibility_version $(LIBHOGWEED_MAJOR) -current_version $(LIBHOGWEED_MAJOR).$(LIBHOGWEED_MINOR)'
412 LIBHOGWEED_LIBS='-lnettle -lgmp'
415 # Sun's ld uses -h to set the soname, and this option is passed
416 # through by both Sun's compiler and gcc. Might not work with GNU
417 # ld, but it's unusual to use GNU ld on Solaris.
418 LIBNETTLE_FORLINK=libnettle.so
419 LIBNETTLE_SONAME='$(LIBNETTLE_FORLINK).$(LIBNETTLE_MAJOR)'
420 LIBNETTLE_FILE='$(LIBNETTLE_SONAME).$(LIBNETTLE_MINOR)'
421 LIBNETTLE_LINK='$(CC) $(CFLAGS) $(LDFLAGS) -G -h $(LIBNETTLE_SONAME)'
424 LIBHOGWEED_FORLINK=libhogweed.so
425 LIBHOGWEED_SONAME='$(LIBHOGWEED_FORLINK).$(LIBHOGWEED_MAJOR)'
426 LIBHOGWEED_FILE='$(LIBHOGWEED_SONAME).$(LIBHOGWEED_MINOR)'
427 LIBHOGWEED_LINK='$(CC) $(CFLAGS) $(LDFLAGS) -L. -G -h $(LIBHOGWEED_SONAME)'
428 LIBHOGWEED_LIBS='-lnettle -lgmp'
431 LIBNETTLE_FORLINK=libnettle.so
432 LIBNETTLE_SONAME='$(LIBNETTLE_FORLINK).$(LIBNETTLE_MAJOR)'
433 LIBNETTLE_FILE='$(LIBNETTLE_SONAME).$(LIBNETTLE_MINOR)'
434 LIBNETTLE_LINK='$(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname=$(LIBNETTLE_SONAME)'
437 LIBHOGWEED_FORLINK=libhogweed.so
438 LIBHOGWEED_SONAME='$(LIBHOGWEED_FORLINK).$(LIBHOGWEED_MAJOR)'
439 LIBHOGWEED_FILE='$(LIBHOGWEED_SONAME).$(LIBHOGWEED_MINOR)'
440 LIBHOGWEED_LINK='$(CC) $(CFLAGS) $(LDFLAGS) -L. -shared -Wl,-soname=$(LIBHOGWEED_SONAME)'
441 # Requested by debian, to make linking with only -lhogweed work
442 # (does not work in general, e.g., with static linking all of
443 # -lhogweed -lgmp -lnettle are still required). Also makes dlopen
444 # of libhogweed.so work, without having to use RTLD_GLOBAL.
445 # Depends on -L. above, to locate nettle.so.
446 LIBHOGWEED_LIBS='-lnettle -lgmp'
450 if test "x$enable_pic" = xyes; then
455 AC_SUBST([CCPIC_MAYBE])
459 # GNU as default is to use @
460 ASM_TYPE_FUNCTION='@function'
461 ASM_TYPE_PROGBITS='@progbits'
462 ASM_MARK_NOEXEC_STACK=''
465 if test x$enable_assembler = xyes ; then
466 AC_CACHE_CHECK([if globals are prefixed by underscore],
467 nettle_cv_asm_underscore,
468 [ # Default is no underscore
469 nettle_cv_asm_underscore=no
471 [AC_LANG_SOURCE([int a_global_symbol;])],
472 [ $NM conftest.$OBJEXT >conftest.out
473 if grep _a_global_symbol conftest.out >/dev/null ; then
474 nettle_cv_asm_underscore=yes
475 elif grep a_global_symbol conftest.out >/dev/null ; then
476 nettle_cv_asm_underscore=no
478 AC_MSG_WARN([nm doesn't list a_global_symbol at all])
480 [AC_MSG_WARN([test program with a single global could not be compiled!?])])])
481 if test x$nettle_cv_asm_underscore = xyes ; then
482 ASM_SYMBOL_PREFIX='_'
485 AC_CACHE_CHECK([for ELF-style .type,%function pseudo-ops],
486 [nettle_cv_asm_type_percent_function],
494 .size foo, .Lend - foo
496 [nettle_cv_asm_type_percent_function=yes],
497 [nettle_cv_asm_type_percent_function=no])])
499 dnl Needs double quote for the # character
500 AC_CACHE_CHECK([[for ELF-style .type,#function pseudo-ops]],
501 [nettle_cv_asm_type_hash_function],
509 .size foo, .Lend - foo
511 [nettle_cv_asm_type_hash_function=yes],
512 [nettle_cv_asm_type_hash_function=no])])
514 if test x$nettle_cv_asm_type_percent_function = xyes ; then
516 ASM_TYPE_FUNCTION='%function'
517 ASM_TYPE_PROGBITS='%progbits'
519 if test x$nettle_cv_asm_type_hash_function = xyes ; then
521 ASM_TYPE_FUNCTION='#function'
522 ASM_TYPE_PROGBITS='#progbits'
526 AC_CACHE_CHECK([if we should use a .note.GNU-stack section],
527 nettle_cv_asm_gnu_stack,
529 nettle_cv_asm_gnu_stack=no
531 cat >conftest.c <<EOF
532 int foo() { return 0; }
534 nettle_compile="$CC $CFLAGS $CPPFLAGS -c conftest.c >conftest.out 2>&1"
535 if AC_TRY_EVAL(nettle_compile); then
536 cat conftest.out >&AC_FD_CC
537 $OBJDUMP -x conftest.o | grep '\.note\.GNU-stack' > /dev/null \
538 && nettle_cv_asm_gnu_stack=yes
540 cat conftest.out >&AC_FD_CC
541 echo "configure: failed program was:" >&AC_FD_CC
542 cat conftest.s >&AC_FD_CC
545 if test x$nettle_cv_asm_gnu_stack = xyes ; then
546 ASM_MARK_NOEXEC_STACK='.section .note.GNU-stack,"",TYPE_PROGBITS'
549 AC_CACHE_CHECK([if .align assembly directive is logarithmic],
550 [nettle_cv_asm_align_log],
554 [nettle_cv_asm_align_log=yes],
555 [nettle_cv_asm_align_log=no])])
556 ASM_ALIGN_LOG="$nettle_cv_asm_align_log"
559 AC_SUBST(ASM_SYMBOL_PREFIX)
560 AC_SUBST(ASM_ELF_STYLE)
561 AC_SUBST(ASM_TYPE_FUNCTION)
562 AC_SUBST(ASM_TYPE_PROGBITS)
563 AC_SUBST(ASM_MARK_NOEXEC_STACK)
564 AC_SUBST(ASM_ALIGN_LOG)
568 AC_SUBST(SHLIBCFLAGS)
570 AC_SUBST(LIBNETTLE_MAJOR)
571 AC_SUBST(LIBNETTLE_MINOR)
572 AC_SUBST(LIBNETTLE_FORLINK)
573 AC_SUBST(LIBNETTLE_SONAME)
574 AC_SUBST(LIBNETTLE_FILE)
575 AC_SUBST(LIBNETTLE_FILE_SRC)
576 AC_SUBST(LIBNETTLE_LINK)
577 AC_SUBST(LIBNETTLE_LIBS)
579 AC_SUBST(LIBHOGWEED_MAJOR)
580 AC_SUBST(LIBHOGWEED_MINOR)
581 AC_SUBST(LIBHOGWEED_FORLINK)
582 AC_SUBST(LIBHOGWEED_SONAME)
583 AC_SUBST(LIBHOGWEED_FILE)
584 AC_SUBST(LIBHOGWEED_FILE_SRC)
585 AC_SUBST(LIBHOGWEED_LINK)
586 AC_SUBST(LIBHOGWEED_LIBS)
588 AC_PATH_PROG(M4, m4, m4)
590 if test "x$enable_gcov" = "xyes"; then
591 CFLAGS="$CFLAGS -ftest-coverage -fprofile-arcs"
594 # Checks for typedefs, structures, and compiler characteristics.
600 AC_CHECK_SIZEOF(long)
601 AC_CHECK_ALIGNOF(uint64_t)
603 ALIGNOF_UINT64_T="$ac_cv_alignof_uint64_t"
604 AC_SUBST(ALIGNOF_UINT64_T)
606 AC_CHECK_HEADERS([openssl/blowfish.h openssl/des.h openssl/cast.h openssl/aes.h],,
613 # Needed by the supplied memcmp.c
615 AC_REPLACE_FUNCS(memxor)
619 # According to Simon Josefsson, looking for uint32_t and friends in
620 # sys/types.h is needed on some systems, in particular cygwin.
621 AX_CREATE_STDINT_H([nettle-stdint.h], [sys/types.h])
623 # Check for file locking. We (AC_PROG_CC?) have already checked for
624 # sys/types.h and unistd.h.
625 AC_CACHE_CHECK([for fcntl file locking],
626 nettle_cv_fcntl_locking,
629 # include <sys/types.h>
639 nettle_cv_fcntl_locking=yes,
640 nettle_cv_fcntl_locking=no)])
642 AH_TEMPLATE([HAVE_FCNTL_LOCKING], [Define if fcntl file locking is available])
643 if test "x$nettle_cv_fcntl_locking" = "xyes" ; then
644 AC_DEFINE(HAVE_FCNTL_LOCKING)
647 # Checks for libraries
648 AC_CHECK_LIB(gmp, __gmpz_getlimbn,,
650 [GNU MP not found, or not 3.1 or up, see http://gmplib.org/.
651 Support for public key algorithms will be unavailable.])]
652 enable_public_key=no)
654 # Add -R flags needed to run programs linked with gmp
657 # Check for gmp limb size
658 nettle_cv_gmp_numb_bits=0
659 if test "$enable_public_key" = yes; then
660 AC_MSG_CHECKING([for GMP limb size])
661 AC_COMPUTE_INT(nettle_cv_gmp_numb_bits, [GMP_NUMB_BITS],
663 [AC_MSG_FAILURE([cannot find value of GMP_NUMB_BITS])])
665 AC_MSG_RESULT([$nettle_cv_gmp_numb_bits bits])
668 GMP_NUMB_BITS="$nettle_cv_gmp_numb_bits"
669 AC_SUBST([GMP_NUMB_BITS])
671 AH_TEMPLATE([HAVE_MPZ_POWM_SEC], [Define if mpz_powm_sec is available (appeared in GMP-5)])
672 AC_CHECK_FUNC(__gmpz_powm_sec, [AC_DEFINE(HAVE_MPZ_POWM_SEC)])
674 AH_TEMPLATE([WITH_HOGWEED], [Defined if public key features are enabled])
676 if test "x$enable_public_key" = xyes ; then
677 AC_DEFINE(WITH_HOGWEED)
683 if test "x$enable_static" = xyes ; then
689 if test "x$enable_shared" = xyes ; then
695 # Documentation tools
696 if test "x$enable_documentation" != "xno"; then
697 AC_PATH_PROG(MAKEINFO, makeinfo, not-found)
699 if test "x$MAKEINFO" != "xnot-found"; then
700 enable_documentation=yes
703 if test "x$enable_documentation" == "xauto" ; then
704 enable_documentation=no
706 AC_MSG_ERROR([Cannot find 'makeinfo', required for documentation.])
711 if test "x$enable_documentation" = "xyes" ; then
720 AC_SUBST(IF_DOCUMENTATION)
725 # Check for openssl's libcrypto (used only for benchmarking)
726 if test x$enable_openssl = xyes ; then
727 AC_CHECK_LIB(crypto, BF_ecb_encrypt,
728 [OPENSSL_LIBFLAGS='-lcrypto'],
732 AH_TEMPLATE([WITH_OPENSSL],
733 [Define if you have openssl's libcrypto (used for benchmarking)]) dnl'
735 if test x$enable_openssl = xyes ; then
736 AC_DEFINE(WITH_OPENSSL)
739 AC_SUBST(OPENSSL_LIBFLAGS)
742 [#if defined(__x86_64__) || defined(__arch64__)
743 # define HAVE_NATIVE_64_BIT 1
745 /* Needs include of <limits.h> before use. */
746 # define HAVE_NATIVE_64_BIT (SIZEOF_LONG * CHAR_BIT >= 64)
750 # clock_gettime is in librt on *-*-osf5.1 and on glibc, so add -lrt to
751 # BENCH_LIBS if needed. On linux (tested on x86_32, 2.6.26),
752 # clock_getres reports ns accuracy, while in a quick test on osf
753 # clock_getres said only 1 millisecond.
756 AC_SEARCH_LIBS(clock_gettime, rt, [
757 AC_DEFINE([HAVE_CLOCK_GETTIME],1,[Define if clock_gettime is available])])
763 # Set these flags *last*, or else the test programs won't compile
764 if test x$GCC = xyes ; then
765 # Using -ggdb3 makes (some versions of) Redhat's gcc-2.96 dump core
766 if $CC --version | grep '^2\.96$' 1>/dev/null 2>&1; then
769 CFLAGS="$CFLAGS -ggdb3"
771 # FIXME: It would be better to actually test if this option works and/or is needed.
772 # Or perhaps use -funsigned-char.
773 if $CC --version | grep 'gcc.* 4\.' 1>/dev/null 2>&1; then
774 CFLAGS="$CFLAGS -Wno-pointer-sign"
776 CFLAGS="$CFLAGS -Wall -W \
777 -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes \
778 -Wpointer-arith -Wbad-function-cast -Wnested-externs"
780 # Don't enable -Wcast-align as it results in tons of warnings in the
781 # DES code. And when using stdio.
782 # Don't enable -Waggregate-return, as that causes warnings for glibc
786 AC_CONFIG_FILES([config.make config.m4 Makefile])
787 AC_CONFIG_FILES([tools/Makefile testsuite/Makefile examples/Makefile])
788 AC_CONFIG_FILES([nettle.pc hogweed.pc])
792 AC_MSG_NOTICE([summary of build options:
794 Version: ${PACKAGE_STRING}
797 Assembly files: ${asm_path:-none}
798 Install prefix: ${prefix}
799 Library directory: ${libdir}
801 Static libraries: ${enable_static}
802 Shared libraries: ${enable_shared}
803 Public key crypto: ${enable_public_key}
804 Documentation: ${enable_documentation}