*** empty log message ***

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4834 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1998-05-01 21:32:21 +00:00
parent 47c4e42afc
commit 058476c9ce
3 changed files with 68 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
Fri May 1 23:31:28 1998 Assar Westerlund <assar@sics.se>
* c-attribute.m4, c-function.m4: new files (from arla)
Wed Mar 18 23:11:29 1998 Assar Westerlund <assar@sics.se>
* krb-ipv6.m4: rename HAVE_STRUCT_SOCKADDR_IN6 to HAVE_IPV6

31
cf/c-attribute.m4 Normal file
View File

@@ -0,0 +1,31 @@
dnl
dnl $Id$
dnl
dnl
dnl Test for __attribute__
dnl
AC_DEFUN(AC_C___ATTRIBUTE__, [
AC_MSG_CHECKING(for __attribute__)
AC_CACHE_VAL(ac_cv___attribute__, [
AC_TRY_COMPILE([
#include <stdlib.h>
],
[
static void foo(void) __attribute__ ((noreturn));
static void
foo(void)
{
exit(1);
}
],
ac_cv___attribute__=yes,
ac_cv___attribute__=no)])
if test "$ac_cv___attribute__" = "yes"; then
AC_DEFINE(HAVE___ATTRIBUTE__)
fi
AC_MSG_RESULT($ac_cv___attribute__)
])

33
cf/c-function.m4 Normal file
View File

@@ -0,0 +1,33 @@
dnl
dnl $Id$
dnl
dnl
dnl Test for __FUNCTION__
dnl
AC_DEFUN(AC_C___FUNCTION__, [
AC_MSG_CHECKING(for __FUNCTION__)
AC_CACHE_VAL(ac_cv___function__, [
AC_TRY_RUN([
#include <string.h>
static char *foo()
{
return __FUNCTION__;
}
int main()
{
return strcmp(foo(), "foo") != 0;
}
],
ac_cv___function__=yes,
ac_cv___function__=no,
ac_cv___function__=no)])
if test "$ac_cv___function__" = "yes"; then
AC_DEFINE(HAVE___FUNCTION__)
fi
AC_MSG_RESULT($ac_cv___function__)
])