alloca.m4 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # alloca.m4 serial 9
  2. dnl Copyright (C) 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_FUNC_ALLOCA],
  7. [
  8. dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
  9. AC_REQUIRE([AC_PROG_CPP])
  10. AC_REQUIRE([AC_PROG_EGREP])
  11. AC_REQUIRE([AC_FUNC_ALLOCA])
  12. if test $ac_cv_func_alloca_works = no; then
  13. gl_PREREQ_ALLOCA
  14. fi
  15. # Define an additional variable used in the Makefile substitution.
  16. if test $ac_cv_working_alloca_h = yes; then
  17. AC_CACHE_CHECK([for alloca as a compiler built-in], [gl_cv_rpl_alloca], [
  18. AC_EGREP_CPP([Need own alloca], [
  19. #if defined __GNUC__ || defined _AIX || defined _MSC_VER
  20. Need own alloca
  21. #endif
  22. ], [gl_cv_rpl_alloca=yes], [gl_cv_rpl_alloca=no])
  23. ])
  24. if test $gl_cv_rpl_alloca = yes; then
  25. dnl OK, alloca can be implemented through a compiler built-in.
  26. AC_DEFINE([HAVE_ALLOCA], [1],
  27. [Define to 1 if you have 'alloca' after including <alloca.h>,
  28. a header that may be supplied by this distribution.])
  29. ALLOCA_H=alloca.h
  30. else
  31. dnl alloca exists as a library function, i.e. it is slow and probably
  32. dnl a memory leak. Don't define HAVE_ALLOCA in this case.
  33. ALLOCA_H=
  34. fi
  35. else
  36. ALLOCA_H=alloca.h
  37. fi
  38. AC_SUBST([ALLOCA_H])
  39. ])
  40. # Prerequisites of lib/alloca.c.
  41. # STACK_DIRECTION is already handled by AC_FUNC_ALLOCA.
  42. AC_DEFUN([gl_PREREQ_ALLOCA], [:])