real Makefile.in, aix tweeks for malloc decl, eliminate use of krb5.h
authorMark Eichin <eichin@mit.edu>
Fri, 10 Jun 1994 19:53:47 +0000 (19:53 +0000)
committerMark Eichin <eichin@mit.edu>
Fri, 10 Jun 1994 19:53:47 +0000 (19:53 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3728 dc483132-0cff-0310-8789-dd5450dbe970

src/util/et/Makefile.in
src/util/et/com_err.c
src/util/et/error_table.y

index 8043430134df0bda29d3e9aaadf49463272b681c..cadb4f3a2a0850175b8070c3e8b7feea77039ed3 100644 (file)
@@ -1,4 +1,21 @@
-#### insert configury here
+srcdir = @srcdir@
+VPATH = @srcdir@
+DEFS = @DEFS@
+LIBS = @LIBS@
+CFLAGS = -g $(DEFS)
+LDFLAGS = -g
+
+LEX = @LEX@
+LEXLIB = @LEXLIB@
+
+ARCHIVE = @ARCHIVE@
+RANLIB = @RANLIB@
+RM = rm -f
+
+all::
+
 BUILDTOP=../..
 LINTFLAGS=-uhvb 
 LINTFILES= error_message.c et_name.c init_et.c com_err.c
@@ -62,7 +79,7 @@ all:: libcom_err.a
 
 libcom_err.a: $(LIBOBJS)
        $(RM) $@.bak
-       -$(MV) $@ $@.bak
+       -mv $@ $@.bak
        $(ARCHIVE) $@ $(LIBOBJS)
        $(RANLIB) $@
 
index c3aa8556d9b37bc3077058122e48607bd9ba1c9c..fa66a113ca19d23c8bec5f346c06d9364cb46865 100644 (file)
@@ -8,7 +8,7 @@
 #include "mit-sipb-copyright.h"
 
 /* Need <krb5/config.h> for STDARG_PROTOTYPES */
-#include <krb5/krb5.h>
+/* #include <krb5/krb5.h> -- now tested locally*/
 
 #if __STDC__ || defined(STDARG_PROTOTYPES)
 #include <stdarg.h>
index b65532d8f7f7c1e5efe3464394fb2520812a8286..03e705653da6721cedf5a8df52235e6a640bcef2 100644 (file)
@@ -2,7 +2,11 @@
 #include <stdio.h>
 char *str_concat(), *ds(), *quote();
 #ifndef __STDC__
-char *malloc(), *realloc();  
+#ifdef _AIX
+#include <stdlib.h>
+#else
+char *malloc(), *realloc(); 
+#endif
 #endif
 char *current_token = (char *)NULL;
 extern char *table_name;