diff options
author | Theodore Tso <tytso@mit.edu> | 1995-02-03 22:08:14 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1995-02-03 22:08:14 +0000 |
commit | 4f90d65be71c9407c96311195e67fe7df9ed92ad (patch) | |
tree | 837862ec0c7641ff731df546d2d542b06325f5a7 /src/include/krb5 | |
parent | af594b7570f0e4a81b665b4ed67ef6c3b4748316 (diff) | |
download | krb5-4f90d65be71c9407c96311195e67fe7df9ed92ad.tar.gz krb5-4f90d65be71c9407c96311195e67fe7df9ed92ad.tar.xz krb5-4f90d65be71c9407c96311195e67fe7df9ed92ad.zip |
Use politically correct name of AC_CHECK_SIZEOF instead of
AC_SIZEOF_TYPE.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4908 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r-- | src/include/krb5/ChangeLog | 3 | ||||
-rw-r--r-- | src/include/krb5/configure.in | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog index ab4aaf74ce..045a982650 100644 --- a/src/include/krb5/ChangeLog +++ b/src/include/krb5/ChangeLog @@ -1,5 +1,8 @@ Fri Feb 3 07:57:31 1995 Theodore Y. Ts'o (tytso@dcl) + * configure.in: Use politically correct name of AC_CHECK_SIZEOF + instead of AC_SIZEOF_TYPE. + * configure.in: * wordsize.h: Don't use BITS16, BITS32, etc. anymore. Use autoconf's SIZEOF_INT and SIZEOF_LONG definitions to make diff --git a/src/include/krb5/configure.in b/src/include/krb5/configure.in index 655fe339b1..18ba005706 100644 --- a/src/include/krb5/configure.in +++ b/src/include/krb5/configure.in @@ -119,9 +119,9 @@ fi dnl dnl Word sizes... -AC_SIZEOF_TYPE(short) -AC_SIZEOF_TYPE(int) -AC_SIZEOF_TYPE(long) +AC_CHECK_SIZEOF(short) +AC_CHECK_SIZEOF(int) +AC_CHECK_SIZEOF(long) dnl then from osconf.h, we have AC_TIME_WITH_SYS_TIME |