[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
making heimdal libs{s,l} compatible with kth-krb
Basically it made me sad when zctl quit working when i overrode the
kth-krb libsl and libss with the ones from heimdal. this makes it happy
again.
the extra sources were mostly there but never used before for some reason
Index: Makefile.am
===================================================================
RCS file:
/afs/pdc.kth.se/src/packages/kth-krb/SourceRepository/lib/sl/Makefile.am,v
retrieving revision 1.19
diff -u -r1.19 Makefile.am
--- Makefile.am 2000/08/19 15:00:39 1.19
+++ Makefile.am 2000/10/10 07:12:25
@@ -13,12 +13,12 @@
libsl_la_LIBADD = @LIB_readline@
libss_la_LIBADD = @LIB_readline@
-RENAME_SRC = roken_rename.h strtok_r.c snprintf.c
+RENAME_SRC = roken_rename.h strtok_r.c snprintf.c warnerr.c
-libsl_la_SOURCES = sl_locl.h sl.c
+libsl_la_SOURCES = sl_locl.h sl.c $(EXTRA_libsl_la_SOURCES)
libss_la_SOURCES = $(libsl_la_SOURCES) ss.c ss.h
-EXTRA_libsl_la_SOURCES = strtok_r.c snprintf.c roken_rename.h
+EXTRA_libsl_la_SOURCES = strtok_r.c snprintf.c roken_rename.h warnerr.c
# install these?
@@ -45,3 +45,5 @@
$(LN_S) $(srcdir)/../roken/strtok_r.c .
snprintf.c:
$(LN_S) $(srcdir)/../roken/snprintf.c .
+warnerr.c:
+ $(LN_S) $(srcdir)/../roken/warnerr.c .