Sha256: b4c03b02b59cb51d62445d57ea005b012c5ed6064fe36c56b494d7b6ae0569bf
Contents?: true
Size: 1011 Bytes
Versions: 2
Compression:
Stored size: 1011 Bytes
Contents
dnl Copyright (C) 2009 Sun Microsystems dnl This file is free software; Sun Microsystems dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. #-------------------------------------------------------------------- # Check what direction the stack runs in #-------------------------------------------------------------------- AC_DEFUN([PANDORA_STACK_DIRECTION],[ AC_REQUIRE([AC_FUNC_ALLOCA]) AC_CACHE_CHECK([stack direction], [ac_cv_c_stack_direction],[ AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include <stdlib.h> int find_stack_direction () { static char *addr = 0; auto char dummy; if (addr == 0) { addr = &dummy; return find_stack_direction (); } else return (&dummy > addr) ? 1 : -1; } ]],[[ exit (find_stack_direction() < 0); ]])],[ ac_cv_c_stack_direction=1 ],[ ac_cv_c_stack_direction=-1 ]) ]) AC_DEFINE_UNQUOTED(STACK_DIRECTION, $ac_cv_c_stack_direction) ])
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
couchbase-memcached-1.2.9 | ext/libmemcached-0.50/m4/pandora_stack_direction.m4 |
couchbase-memcached-1.2.8 | ext/libmemcached-0.50/m4/pandora_stack_direction.m4 |