~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/alloca.m4

  • Committer: Monty Taylor
  • Date: 2008-10-02 01:27:37 UTC
  • Revision ID: monty@inaugust.com-20081002012737-3uxmdovii2l14uqe
Removed unused crud.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
   ALLOCA=alloca.o
47
47
   AC_DEFINE(C_ALLOCA, 1)
48
48
 
 
49
 AC_CACHE_CHECK(whether alloca needs Cray hooks, ac_cv_os_cray,
 
50
 [AC_EGREP_CPP(webecray,
 
51
 [#if defined(CRAY) && ! defined(CRAY2)
 
52
 webecray
 
53
 #else
 
54
 wenotbecray
 
55
 #endif
 
56
 ], ac_cv_os_cray=yes, ac_cv_os_cray=no)])
 
57
 if test "$ac_cv_os_cray" = "yes"; then
 
58
 for ac_func in _getb67 GETB67 getb67; do
 
59
   AC_CHECK_FUNC($ac_func, [AC_DEFINE_UNQUOTED(CRAY_STACKSEG_END, $ac_func)
 
60
   break])
 
61
 done
 
62
 fi
49
63
 fi
50
64
 AC_SUBST(ALLOCA)dnl
51
65
else