Skip to content
Snippets Groups Projects
configure.in 398 B
Newer Older
  • Learn to ignore specific revisions
  • dnl Process this file with autoconf to produce a configure script.
    
    
    Niels Möller's avatar
    Niels Möller committed
    # $Id$
    AC_INIT(sha.c)
    
    
    Niels Möller's avatar
    Niels Möller committed
    AC_PROG_CC
    AC_PROG_CPP
    AC_PROG_RANLIB
    
    
    dnl Checks for libraries.
    
    dnl Checks for header files.
    AC_HEADER_STDC
    AC_CHECK_HEADERS(sys/time.h)
    
    dnl Checks for typedefs, structures, and compiler characteristics.
    
    Niels Möller's avatar
    Niels Möller committed
    AC_C_CONST
    
    
    dnl Checks for library functions.
    AC_FUNC_MEMCMP
    
    
    Niels Möller's avatar
    Niels Möller committed
    AC_OUTPUT(Makefile)