aboutsummaryrefslogtreecommitdiff
path: root/src/aclocal.m4
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2001-04-26 07:41:52 +0000
committerKen Raeburn <raeburn@mit.edu>2001-04-26 07:41:52 +0000
commitfde32c0ac9009d8909a31150d539a134f2ac05c6 (patch)
treeb58bbf8b9efc18c3f4da19fe94123819d7829067 /src/aclocal.m4
parent8083f205ad500b43019048a74ccb21ab5765e88c (diff)
downloadkrb5-fde32c0ac9009d8909a31150d539a134f2ac05c6.zip
krb5-fde32c0ac9009d8909a31150d539a134f2ac05c6.tar.gz
krb5-fde32c0ac9009d8909a31150d539a134f2ac05c6.tar.bz2
assume ANSI C: delete no-volatile support, and most no-prototype support
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13201 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/aclocal.m4')
-rw-r--r--src/aclocal.m432
1 files changed, 0 insertions, 32 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 012b01e..1a9d38f 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -600,38 +600,6 @@ AC_ARG_WITH([netlib],
[AC_LIBRARY_NET]
)])dnl
dnl
-dnl HAS_ANSI_VOLATILE
-dnl
-define(HAS_ANSI_VOLATILE,[
-AC_MSG_CHECKING([volatile])
-AC_CACHE_VAL(krb5_cv_has_ansi_volatile,
-[AC_TRY_COMPILE(
-[volatile int x();], [],
-krb5_cv_has_ansi_volatile=yes, krb5_cv_has_ansi_volatile=no)])
-AC_MSG_RESULT($krb5_cv_has_ansi_volatile)
-if test $krb5_cv_has_ansi_volatile = no; then
-ADD_DEF(-Dvolatile=)
-fi
-])dnl
-dnl
-dnl
-dnl Check for prototype support - used by application not including k5-int.h
-dnl
-define(KRB5_CHECK_PROTOS,[
-AC_MSG_CHECKING([prototype support])
-AC_CACHE_VAL(krb5_cv_has_prototypes,
-[AC_TRY_COMPILE(
-[int x(double y, int z);], [],
-krb5_cv_has_prototypes=yes, krb5_cv_has_prototypes=no)])
-AC_MSG_RESULT($krb5_cv_has_prototypes)
-if test $krb5_cv_has_prototypes = no; then
-AC_DEFINE(KRB5_NO_PROTOTYPES)
-else
-AC_DEFINE(KRB5_PROVIDE_PROTOTYPES)
-fi
-dnl *never* set NARROW_PROTOTYPES
-])dnl
-dnl
dnl Check if stdarg or varargs is available *and compiles*; prefer stdarg.
dnl (This was sent to djm for incorporation into autoconf 3/12/1996. KR)
dnl