[1124] in arla-drinkers
Re: Two bugs in arla-0.27 build on Solaris 7 / X86
daemon@ATHENA.MIT.EDU (Love)
Fri Sep 3 09:59:25 1999
From owner-arla-drinkers@stacken.kth.se Fri Sep 03 13:59:25 1999
Return-Path: <owner-arla-drinkers@stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 28282 invoked from network); 3 Sep 1999 13:59:24 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 3 Sep 1999 13:59:24 -0000
Received: (from majordom@localhost)
by sundance.stacken.kth.se (8.8.8/8.8.8) id PAA05553
for arla-drinkers-list; Fri, 3 Sep 1999 15:47:48 +0200 (MET DST)
Received: from elixir.e.kth.se (elixir.e.kth.se [130.237.48.5])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id PAA05547
for <arla-drinkers@stacken.kth.se>; Fri, 3 Sep 1999 15:47:44 +0200 (MET DST)
Received: from anchor.s3.kth.se (anchor.s3.kth.se [130.237.43.59])
by elixir.e.kth.se (8.9.3/8.9.3) with ESMTP id PAA07992;
Fri, 3 Sep 1999 15:47:42 +0200 (MET DST)
Received: (from lha@localhost)
by anchor.s3.kth.se (8.9.3/8.9.3) id PAA10321;
Fri, 3 Sep 1999 15:47:41 +0200 (MET DST)
To: Rainer Schoepf <schoepf@uni-mainz.de>
Cc: arla-drinkers@stacken.kth.se
Subject: Re: Two bugs in arla-0.27 build on Solaris 7 / X86
References: <14287.51744.745254.783752@perdita.zdv.Uni-Mainz.de>
From: Love <lha@stacken.kth.se>
Date: 03 Sep 1999 15:47:41 +0200
In-Reply-To: Rainer Schoepf's message of "Fri, 3 Sep 1999 15:16:16 +0200 (MEST)"
Message-ID: <amwvu8hzsy.fsf@anchor.s3.kth.se>
Lines: 40
User-Agent: Gnus/5.0700000000000003 (Pterodactyl Gnus v0.91) Emacs/20.2
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Sender: owner-arla-drinkers@stacken.kth.se
Precedence: bulk
Rainer Schoepf <schoepf@uni-mainz.de> writes:
> I'm trying to build arla-0.27 on a PC running Solaris 7, with krb4-0.9.9.
>
> 1. xfs/solaris/xfs_syscalls.c fails to compile because the preprocessors
> symbols
This was allready fixed by assar in the cvs-tree. It happed after we tagged
the tree and I guess assar forgot to pull it up to the 0.27 branch.
> 2. xfs/solaris/bin/test-fhopen fails to link:
Fixed it. Thanks. Patch below.
Love
Index: Makefile.in
===================================================================
RCS file: /afs/stacken.kth.se/src/SourceRepository/arla/xfs/solaris/bin/Makefile.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -w -u -w -r1.7 -r1.8
--- Makefile.in 1999/03/26 23:54:31 1.7
+++ Makefile.in 1999/09/03 13:38:34 1.8
@@ -24,6 +24,7 @@
@KRB_INC_FLAGS@
LIBS = -L../../../lib/roken -lroken @LIBS@
KAFS_LIBS = @KAFS_LIBS@
+KRB_LIB_FLAGS = @KRB_LIB_FLAGS@
MOUNT_PROG = mount_xfs
MOUNT_SRCS = mount_xfs.c
@@ -45,7 +46,7 @@
$(CC) -o $(MOUNT_PROG) $(MOUNT_OBJS) $(LIBS)
$(TEST_FHOPEN_PROG): $(TEST_FHOPEN_OBJS)
- $(CC) -o $(TEST_FHOPEN_PROG) $(TEST_FHOPEN_OBJS) $(KAFS_LIBS) $(LIBS)
+ $(CC) -o $(TEST_FHOPEN_PROG) $(TEST_FHOPEN_OBJS) $(KAFS_LIBS) $(KRB_LIB_FLAGS) $(LIBS)
check: $(TEST_FHOPEN_PROG)