rebuilding of library.
* configure.in: Add AC_PROG_ARCHIVE_ADD
* prof_init.c (profile_get_values): If profile is null return
NULL.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5467
dc483132-0cff-0310-8789-
dd5450dbe970
+Mon Apr 24 17:05:27 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
+
+ * Makefile.in (all): Use ARADD to facilitate incremental
+ rebuilding of library.
+
+ * configure.in: Add AC_PROG_ARCHIVE_ADD
+
+ * prof_init.c (profile_get_values): If profile is null return
+ NULL.
+
Sat Apr 22 01:25:58 1995 Theodore Y. Ts'o (tytso@dcl)
* Makefile.in: Rename profile.h.in to profile.hin to, make things
all:: includes libprofile.a test_parse test_profile
libprofile.a: $(OBJS)
- $(ARCHIVE) $@ $(OBJS)
+ $(ARADD) $@ $(OBJS)
$(RANLIB) $@
test_parse: test_parse.o $(OBJS) $(LIBS)
CONFIG_RULES
AC_SET_BUILDTOP
AC_PROG_ARCHIVE
+AC_PROG_ARCHIVE_ADD
AC_PROG_RANLIB
ET_RULES
CopyHeader(profile.h,$(BUILDTOP)/include)
init_list(&values);
+ if (profile == 0) {
+ *ret_values = 0;
+ return 0;
+ }
+
file = profile->first_file;
retval = profile_update_file(file);
if (retval)