adm_defs.h (ADM5_DEFAULT_PORT): Add definition of default
authorTheodore Tso <tytso@mit.edu>
Fri, 24 Mar 1995 22:24:45 +0000 (22:24 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 24 Mar 1995 22:24:45 +0000 (22:24 +0000)
administration port.

Makefile.in (install): Delete the destination header files
before copying in the new ones.  Also install autoconf.h.
Only install header files if the header file has changed.

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

src/include/krb5/ChangeLog
src/include/krb5/Makefile.in
src/include/krb5/adm_defs.h

index 394b89ee950fdf5a35bb08027970171f4e75182d..bb005272c630d417e69d92c168b62a914162f989 100644 (file)
@@ -1,8 +1,17 @@
+Fri Mar 24 14:15:51 1995    <tytso@rsx-11.mit.edu>
+
+       * adm_defs.h (ADM5_DEFAULT_PORT): Add definition of default
+               administration port.
+
+       * Makefile.in (install): Delete the destination header files
+               before copying in the new ones.  Also install autoconf.h.
+               Only install header files if the header file has changed.
+
 Wed Mar 22 11:37:24 1995 Keith Vetter (keithv@fusion.com)
 
        * k5-config.h: added HAVE_SYS_TYPES_H. Cleaned up the loading
            of sys/types.h which john added earlier. Specifically, we always
-           have it and it's missing some typedefs used by this code.            
+           have it and it's missing some typedefs used by this code.
 
 Tue Mar 21 18:42:23 1995 Keith Vetter (keithv@fusion.com)
 
index 4d77c085a3756bbe12ea1a79bedc177c8e2dd1f8..bf1652a5dd1661228415cb172444c6f6436ccec0 100644 (file)
@@ -36,13 +36,19 @@ clean::
 
 depend::
 
-install::
-       @set -x; for f in $(KRB5_HEADERS); \
-       do $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
-       done; \
-       for f in $(BUILT_HEADERS) $(ET_HEADERS); \
-       do $(INSTALL_DATA) $$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
-       done
+install:: $(KRB5_HEADERS) config.h osconf.h autoconf.h 
+       @set -x; for f in $(KRB5_HEADERS) ; \
+       do if cmp -s $$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f; \
+       then true; else \
+               $(RM) $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f; \
+               cp $(srcdir)/$$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
+       fi; done
+       @set -x; for f in config.h osconf.h autoconf.h ; \
+       do if cmp -s $$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f; \
+       then true; else \
+               $(RM) $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f; \
+               cp $$f $(DESTDIR)$(KRB5_INCDIR)/krb5/$$f ; \
+       fi; done
 
 PROCESS_REPLACE = -e "s+@KRB5ROOT+$(KRB5ROOT)+" \
                  -e "s+@KDB5DIR+$(KDB5DIR)+" \
index d701334f661ba13d6362a788eb5f6b8e380f9611..6bca9c0b782bf0465dd654e8b7e0c15160e1cab0 100644 (file)
@@ -31,6 +31,7 @@
 #define ADM5_VERSIZE           strlen(ADM5_VERSTR)
 /* This used to be kerberos_master */
 #define ADM5_PORTNAME          "kerberos-adm"
+#define ADM5_DEFAULT_PORT      752
 #define ADM5_CPW_VERSION       "V5CPWS01"
 #define ADM5_ADM_VERSION       "V5ADMS01"
 #define CPWNAME                        "kadmin"