Skip to content
Snippets Groups Projects
Select Git revision
  • hkdf-support
  • master default protected
  • siv-mode
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • master-updates
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • x86_64-sha_ni-sha256
  • ecc-params-tweak
  • delete-old-aes
  • cmac-support
  • x86_64-sha_ni-sha1
  • gcm-ctr-opt
  • ctr-opt
  • skein
  • api-opaque-fix
  • curve448
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
  • nettle_3.1rc3
  • nettle_3.1rc2
  • nettle_3.1rc1
  • nettle_3.0_release_20140607
  • nettle_2.7.1_release_20130528
  • nettle_2.7_release_20130424
  • nettle_2.6_release_20130116
  • nettle_2.5_release_20120707
  • converted-master-branch-to-git
  • nettle_2.4_release_20110903
  • nettle_2.3_release_20110902
41 results

camellia-table.c

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    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])