Skip to content
Snippets Groups Projects
configure.in 1.12 KiB
Newer Older
  • Learn to ignore specific revisions
  • Niels Möller's avatar
    Niels Möller committed
    dnl -*- mode: shell-script; sh-indentation: 2; -*-
    dnl $Id$
    
    
    dnl Process this file with autoconf to produce a configure script.
    
    
    Niels Möller's avatar
    Niels Möller committed
    AC_INIT(arcfour.c)
    
    Niels Möller's avatar
    Niels Möller committed
    
    
    AM_INIT_AUTOMAKE(nettle, 1.0)
    
    Niels Möller's avatar
    Niels Möller committed
    
    AM_CONFIG_HEADER(config.h)
    
    Niels Möller's avatar
    Niels Möller committed
    dnl Checks for programs.
    
    Niels Möller's avatar
    Niels Möller committed
    AC_PROG_CC
    
    Niels Möller's avatar
    Niels Möller committed
    AC_PROG_MAKE_SET
    
    Niels Möller's avatar
    Niels Möller committed
    AC_PROG_RANLIB
    
    Niels Möller's avatar
    Niels Möller committed
    AM_PROG_CC_STDC
    
    Niels Möller's avatar
    Niels Möller committed
    
    
    Niels Möller's avatar
    Niels Möller committed
    if test "x$am_cv_prog_cc_stdc" = xno ; then
      AC_ERROR([the C compiler doesn't handle ANSI-C])
    fi
    
    Niels Möller's avatar
    Niels Möller committed
    AC_PATH_PROG(M4, m4, m4)
    
    
    dnl Checks for typedefs, structures, and compiler characteristics.
    
    Niels Möller's avatar
    Niels Möller committed
    AC_C_CONST
    
    Niels Möller's avatar
    Niels Möller committed
    AC_C_INLINE
    AC_TYPE_UID_T
    AC_TYPE_SIZE_T
    AC_HEADER_TIME
    
    dnl Needed by the supplied memcmp.c
    AC_C_BIGENDIAN
    
    AC_CHECK_SIZEOF(short, 2)
    AC_CHECK_SIZEOF(int, 4)
    AC_CHECK_SIZEOF(long, 4)
    
    AC_REPLACE_FUNCS(memxor)
    
    # Set these flags *last*, or else the test programs won't compile
    if test x$GCC = xyes ; then
        CFLAGS="$CFLAGS -ggdb3 -Wall -W \
     -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes \
     -Waggregate-return \
     -Wpointer-arith -Wbad-function-cast -Wnested-externs"
    
    # Don't enable -Wcast-align as it results in tons of warnings in the
    # DES code. And when using stdio.
    
    fi
    
    Niels Möller's avatar
    Niels Möller committed
    
    
    Niels Möller's avatar
    Niels Möller committed
    AC_OUTPUT(Makefile testsuite/Makefile examples/Makefile)