Skip to content
Snippets Groups Projects
Select Git revision
  • d4847b52087253446ccf9a15d3e6e40e77c5950f
  • master default
  • wip-slh-dsa-sha2-128s
  • master-updates
  • release-3.10-fixes
  • getopt-prototype
  • fix-bcrypt-warning
  • refactor-hmac
  • wip-use-alignas
  • trim-sha3-context
  • fix-gitlab-ci
  • check-fat-emulate
  • delete-digest_func-size
  • slh-dsa-shake-128f-nettle
  • slh-dsa-shake-128s-nettle
  • slh-dsa-shake-128s
  • delete-openpgp
  • ppc64-sha512
  • delete-md5-compat
  • cleanup-hmac-tests
  • ppc64-sha256
  • nettle_3.10.2_release_20250626
  • nettle_3.10.1_release_20241230
  • nettle_3.10_release_20240616
  • nettle_3.10rc2
  • nettle_3.10rc1
  • nettle_3.9.1_release_20230601
  • nettle_3.9_release_20230514
  • nettle_3.8.1_release_20220727
  • nettle_3.8_release_20220602
  • nettle_3.7.3_release_20210606
  • nettle_3.7.2_release_20210321
  • nettle_3.7.1_release_20210217
  • nettle_3.7_release_20210104
  • nettle_3.7rc1
  • nettle_3.6_release_20200429
  • nettle_3.6rc3
  • nettle_3.6rc2
  • nettle_3.6rc1
  • nettle_3.5.1_release_20190627
  • nettle_3.5_release_20190626
41 results

chacha-core-internal.c

Blame
  • configure.ac 22.57 KiB
    dnl -*- mode: shell-script; sh-indentation: 2; -*-
    
    dnl Process this file with autoconf to produce a configure script.
    
    AC_INIT([nettle], [2.6], [nettle-bugs@lists.lysator.liu.se])
    AC_PREREQ(2.61)
    AC_CONFIG_SRCDIR([arcfour.c])
    # Needed to stop autoconf from looking for files in parent directories.
    AC_CONFIG_AUX_DIR([.])
    
    AC_CONFIG_HEADER([config.h])
    
    LIBNETTLE_MAJOR=4
    LIBNETTLE_MINOR=5
    
    LIBHOGWEED_MAJOR=2
    LIBHOGWEED_MINOR=3
    
    AC_CANONICAL_HOST
    
    # Command line options
    AC_ARG_WITH(include-path,
      AC_HELP_STRING([--with-include-path], [A colon-separated list of directories to search for include files]),,
      [with_include_path=''])
    
    if test x$with_include_path != x ; then
      CPPFLAGS="$CPPFLAGS -I`echo $with_include_path | sed 's/:/ -I/g'`"
    fi
    
    AC_ARG_WITH(lib-path,
      AC_HELP_STRING([--with-lib-path], [A colon-separated list of directories to search for libraries]),,
      [with_lib_path=''])
    
    if test x$with_lib_path != x ; then
      LDFLAGS="$LDFLAGS -L`echo $with_lib_path | sed 's/:/ -L/g'`"
    fi
    
    AC_ARG_ENABLE(public-key,
      AC_HELP_STRING([--disable-public-key], [Disable public key algorithms]),,
      [enable_public_key=yes])
    
    AC_ARG_ENABLE(assembler,
      AC_HELP_STRING([--disable-assembler],[Disable assembler code]),,
      [enable_assembler=yes])
    
    AC_ARG_ENABLE(static,
      AC_HELP_STRING([--disable-static], [Do not build any static library]),,
      [enable_static=yes])
    
    AC_ARG_ENABLE(shared,
      AC_HELP_STRING([--disable-shared], [Do not build any shared library]),,
      [enable_shared=yes])
    
    AC_ARG_ENABLE(pic,
      AC_HELP_STRING([--disable-pic],
      [Do not try to compile library files as position independent code]),,
      [enable_pic=yes])
    
    AC_ARG_ENABLE(openssl,
      AC_HELP_STRING([--disable-openssl], [Do not include openssl glue in the benchmark program]),,
      [enable_openssl=yes])
    
    AC_ARG_ENABLE(gcov,
      AC_HELP_STRING([--enable-gcov], [Instrument for gcov (requires a modern gcc)]),,
      [enable_gcov=no])
    
    AC_ARG_ENABLE(documentation,
      AC_HELP_STRING([--disable-documentation], [Omit building and installing the documentation. (default=auto)]),,
      [enable_documentation=auto])