[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Building Heimdal 0.1m on AIX (--without-krb4)
Alexey Melnikov <Alexey.Melnikov@MessagingDirect.com> writes:
> Yes, but after running "configure --without-krb4" it tries to
> compile kafs.
Hmm, yes. This patch for Makefile.am should do it (you need automake
for this, but I guess you already knew that).
/Johan
--- Makefile.am 1999/07/26 11:36:39 1.14
+++ Makefile.am 1999/08/12 01:12:06 1.16
@@ -1,4 +1,4 @@
-# $Id: Makefile.am,v 1.14 1999/07/26 11:36:39 assar Exp $
+# $Id: Makefile.am,v 1.16 1999/08/12 01:12:06 joda Exp $
include $(top_srcdir)/Makefile.am.common
@@ -6,9 +6,6 @@
if KRB4
AFSLIBS = libkafs.la
-else
-AFSLIBS =
-endif
if AIX
AFSL_EXP = $(srcdir)/afsl.exp
@@ -37,6 +34,10 @@
AFSL_EXP =
AIX_SRC =
endif # AIX
+
+else
+AFSLIBS =
+endif # KRB4
lib_LTLIBRARIES = $(AFSLIBS)