configure.in
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. dnl Process this file with autoconf to produce a configure script.
  2. dnl $Id: configure.in,v 1.9 1999/12/06 13:22:43 mrsam Exp $
  3. dnl
  4. dnl Copyright 1998 - 1999 Double Precision, Inc.  See COPYING for
  5. dnl distribution information.
  6. AC_INIT(md5.h)
  7. AM_INIT_AUTOMAKE(libmd5, 1.10, 0)
  8. AM_CONFIG_HEADER(config.h)
  9. AM_CONDITIONAL(HMACC, test -d ${srcdir}/../libhmac)
  10. dnl Checks for programs.
  11. AC_PROG_AWK
  12. AC_PROG_INSTALL
  13. AC_PROG_LN_S
  14. AC_PROG_RANLIB
  15. AC_PROG_CC
  16. if test "$GCC" = yes
  17. then
  18. CFLAGS="-Wall $CFLAGS"
  19. fi
  20. dnl Checks for libraries.
  21. dnl Checks for header files.
  22. AC_HEADER_STDC
  23. AC_CHECK_HEADERS(sys/types.h synch.h)
  24.  
  25. AC_TRY_COMPILE([
  26. #if HAVE_SYS_TYPES_H
  27. #include <sys/types.h>
  28. #endif
  29. ],[
  30. u_int32_t i=0;
  31. ], AC_DEFINE(HAVE_U_INT32_T,1),
  32. AC_TRY_COMPILE([
  33. #if HAVE_SYNCH_H
  34. #include <synch.h>
  35. #endif
  36. ],[
  37. uint32_t i=0;
  38. ], AC_DEFINE(HAVE_UINT32_T,1))
  39. )
  40. dnl Checks for typedefs, structures, and compiler characteristics.
  41. AC_C_CONST
  42. dnl Checks for library functions.
  43. AC_OUTPUT(Makefile)