Bug in 0.35.4: libroken
Dr A V Le Blanc
LeBlanc at mcc.ac.uk
Tue Jun 12 20:37:30 CEST 2001
I have been compiling arla-0.35.4 on a machine which has KTH
kerberos 1.0.8 installed. Because I compile other programs
against this which require functions from libroken, I have
installed libroken from that as well. Unfortunately in
compiling amon, this version of arla is linking against
the libroken from the kerberos distribution; the problem is
that @LIB_roken@ is expanding to something including -lroken.
I can fix this with the following patch:
diff -ru2N arla-0.35.4/appl/amon/Makefile.in arla-MCC/appl/amon/Makefile.in
--- arla-0.35.4/appl/amon/Makefile.in Mon May 28 12:31:55 2001
+++ arla-MCC/appl/amon/Makefile.in Tue Jun 12 19:25:35 2001
@@ -61,5 +61,5 @@
$(KAFS_LIBS) \
$(RXKAD_LIBS) \
- @LIB_roken@ @LIBS@
+ ../../lib/roken/libroken.a @LIBS@
AMON_LIBS = @X_LIBS@ \
diff -ru2N arla-0.35.4/tests/Makefile.in arla-MCC/tests/Makefile.in
--- arla-0.35.4/tests/Makefile.in Thu May 17 08:39:13 2001
+++ arla-MCC/tests/Makefile.in Tue Jun 12 19:34:41 2001
@@ -15,5 +15,5 @@
DEFS = @DEFS@
LDFLAGS = @LDFLAGS@
-LIBS = @LIB_roken@ @LIBS@
+LIBS = ../lib/roken/libroken.a @LIBS@
KAFS_LIBS = @AFS_EXTRA_LIBS@ @KAFS_LIBS@
KRB_LIBS = @KRB4_LIB_FLAGS@
I presume this will go away when the new functions eventually make
their way into the kerberos libroken.a.
-- Owen
LeBlanc at mcc.ac.uk
More information about the Arla-drinkers
mailing list