alloca.m4 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # alloca.m4 serial 20
  2. dnl Copyright (C) 2002-2004, 2006-2007, 2009-2021 Free Software Foundation,
  3. dnl Inc.
  4. dnl This file is free software; the Free Software Foundation
  5. dnl gives unlimited permission to copy and/or distribute it,
  6. dnl with or without modifications, as long as this notice is preserved.
  7. AC_DEFUN([gl_FUNC_ALLOCA],
  8. [
  9. AC_REQUIRE([AC_FUNC_ALLOCA])
  10. if test $ac_cv_func_alloca_works = no; then
  11. gl_PREREQ_ALLOCA
  12. fi
  13. # Define an additional variable used in the Makefile substitution.
  14. if test $ac_cv_working_alloca_h = yes; then
  15. AC_CACHE_CHECK([for alloca as a compiler built-in], [gl_cv_rpl_alloca], [
  16. AC_EGREP_CPP([Need own alloca], [
  17. #if defined __GNUC__ || defined _AIX || defined _MSC_VER
  18. Need own alloca
  19. #endif
  20. ], [gl_cv_rpl_alloca=yes], [gl_cv_rpl_alloca=no])
  21. ])
  22. if test $gl_cv_rpl_alloca = yes; then
  23. dnl OK, alloca can be implemented through a compiler built-in.
  24. AC_DEFINE([HAVE_ALLOCA], [1],
  25. [Define to 1 if you have 'alloca' after including <alloca.h>,
  26. a header that may be supplied by this distribution.])
  27. ALLOCA_H=alloca.h
  28. else
  29. dnl alloca exists as a library function, i.e. it is slow and probably
  30. dnl a memory leak. Don't define HAVE_ALLOCA in this case.
  31. ALLOCA_H=
  32. fi
  33. else
  34. ALLOCA_H=alloca.h
  35. fi
  36. AC_SUBST([ALLOCA_H])
  37. AM_CONDITIONAL([GL_GENERATE_ALLOCA_H], [test -n "$ALLOCA_H"])
  38. if test $ac_cv_working_alloca_h = yes; then
  39. HAVE_ALLOCA_H=1
  40. else
  41. HAVE_ALLOCA_H=0
  42. fi
  43. AC_SUBST([HAVE_ALLOCA_H])
  44. ])
  45. # Prerequisites of lib/alloca.c.
  46. # STACK_DIRECTION is already handled by AC_FUNC_ALLOCA.
  47. AC_DEFUN([gl_PREREQ_ALLOCA], [:])
  48. m4_version_prereq([2.70], [], [
  49. # This works around a bug in autoconf <= 2.68 and has simplifications
  50. # from 2.70. See:
  51. # https://lists.gnu.org/r/bug-gnulib/2011-06/msg00277.html
  52. # https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=6cd9f12520b0d6f76d3230d7565feba1ecf29497
  53. # https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=15edf7fd8094fd14a89d9891dd72a9624762597a
  54. # _AC_LIBOBJ_ALLOCA
  55. # -----------------
  56. # Set up the LIBOBJ replacement of 'alloca'. Well, not exactly
  57. # AC_LIBOBJ since we actually set the output variable 'ALLOCA'.
  58. # Nevertheless, for Automake, AC_LIBSOURCES it.
  59. m4_define([_AC_LIBOBJ_ALLOCA],
  60. [# The SVR3 libPW and SVR4 libucb both contain incompatible functions
  61. # that cause trouble. Some versions do not even contain alloca or
  62. # contain a buggy version. If you still want to use their alloca,
  63. # use ar to extract alloca.o from them instead of compiling alloca.c.
  64. AC_LIBSOURCES(alloca.c)
  65. AC_SUBST([ALLOCA], [\${LIBOBJDIR}alloca.$ac_objext])dnl
  66. AC_DEFINE(C_ALLOCA, 1, [Define to 1 if using 'alloca.c'.])
  67. AC_CACHE_CHECK([stack direction for C alloca],
  68. [ac_cv_c_stack_direction],
  69. [AC_RUN_IFELSE([AC_LANG_SOURCE(
  70. [AC_INCLUDES_DEFAULT
  71. int
  72. find_stack_direction (int *addr, int depth)
  73. {
  74. int dir, dummy = 0;
  75. if (! addr)
  76. addr = &dummy;
  77. *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1;
  78. dir = depth ? find_stack_direction (addr, depth - 1) : 0;
  79. return dir + dummy;
  80. }
  81. int
  82. main (int argc, char **argv)
  83. {
  84. return find_stack_direction (0, argc + !argv + 20) < 0;
  85. }])],
  86. [ac_cv_c_stack_direction=1],
  87. [ac_cv_c_stack_direction=-1],
  88. [ac_cv_c_stack_direction=0])])
  89. AH_VERBATIM([STACK_DIRECTION],
  90. [/* If using the C implementation of alloca, define if you know the
  91. direction of stack growth for your system; otherwise it will be
  92. automatically deduced at runtime.
  93. STACK_DIRECTION > 0 => grows toward higher addresses
  94. STACK_DIRECTION < 0 => grows toward lower addresses
  95. STACK_DIRECTION = 0 => direction of growth unknown */
  96. #undef STACK_DIRECTION])dnl
  97. AC_DEFINE_UNQUOTED(STACK_DIRECTION, $ac_cv_c_stack_direction)
  98. ])# _AC_LIBOBJ_ALLOCA
  99. ])