configure.in: Remove standardized set of autoconf macros, which are
authorTheodore Tso <tytso@mit.edu>
Fri, 9 Jun 1995 22:41:51 +0000 (22:41 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 9 Jun 1995 22:41:51 +0000 (22:41 +0000)
now handled by CONFIG_RULES.

kdc.h: Don't define the macros for max and min; they're already
defined in kdc_util.h.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6008 dc483132-0cff-0310-8789-dd5450dbe970

src/include/kerberosIV/ChangeLog
src/include/kerberosIV/configure.in
src/include/kerberosIV/kdc.h

index 318a12a6197e723ae6ffbb6f8ab7e3fada6a728e..b638c18ed06424addd02d33317607537c128db29 100644 (file)
@@ -1,3 +1,13 @@
+Fri Jun  9 18:40:51 1995    <tytso@rsx-11.mit.edu>
+
+       * configure.in: Remove standardized set of autoconf macros, which
+               are now handled by CONFIG_RULES.
+
+Fri Jun  9 15:51:45 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
+
+       * kdc.h: Don't define the macros for max and min; they're already
+               defined in kdc_util.h.
+
 Thu Jun  8 11:22:23 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
 
        * Makefile.in (install): Don't install the install/kerberosIV
index b86f90d14c0cd804e2632a484cfe3a4f794e32ad..f9dafe7fd1f7fe3e9d51c5efcd4417eb242aaee4 100644 (file)
@@ -1,7 +1,4 @@
 AC_INIT(configure.in)
-AC_SET_BUILDTOP
-WITH_CCOPTS
 CONFIG_RULES
-WITH_KRB5ROOT
 AC_PROG_INSTALL
 V5_AC_OUTPUT_MAKEFILE
index 5645c5aeeaaf077ea9666b573cbaaa82d805768e..6a9804eaf82a213350cf4a47af0ae2785c25a5c8 100644 (file)
 
 #define S_AD_SZ                sizeof(struct sockaddr_in)
 
+#ifdef notdef
 #define max(a,b)       (a>b ? a : b)
 #define min(a,b)       (a<b ? a : b)
+#endif
 
 #define TRUE           1
 #define FALSE          0