Received: from pacific-carrier-annex.mit.edu (PACIFIC-CARRIER-ANNEX.MIT.EDU [18.7.21.83]) by krbdev.mit.edu (8.9.3) with ESMTP id QAA06909; Wed, 6 Aug 2003 16:04:11 -0400 (EDT) Received: from sancho.opendarwin.org (sancho.opendarwin.org [204.152.184.200]) by pacific-carrier-annex.mit.edu (8.12.4/8.9.2) with ESMTP id h76K477J028412 for ; Wed, 6 Aug 2003 16:04:10 -0400 (EDT) Received: from sancho.opendarwin.org (localhost [127.0.0.1]) by sancho.opendarwin.org (8.12.8/8.12.2) with ESMTP id h76K6p9X002985 for ; Wed, 6 Aug 2003 13:06:51 -0700 (PDT) Received: (from bbraun@localhost) by sancho.opendarwin.org (8.12.8/8.12.6/Submit) id h76K6poh002984 for krb5-bugs@mit.edu; Wed, 6 Aug 2003 13:06:51 -0700 (PDT) Date: Wed, 6 Aug 2003 13:06:51 -0700 From: Rob Braun To: krb5-bugs@mit.edu Subject: krb4 & OpenDarwin/x86 Message-Id: <20030806200651.GJ1342@sancho.opendarwin.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-RT-Original-Encoding: us-ascii Content-Length: 563 When building the MIT kerberos libraries for inclusion with OpenDarwin/x86, the krb4 library configure script needed updating. Previous releases of OpenDarwin/x86 are available: http://www.opendarwin.org/downloads/ The change was simply removing the hard coded powerpc reference in the configure.in script (please note: all the world is not a vax, or powerpc in this case): @@ -3,7 +3,7 @@ AC_TYPE_MODE_T AC_TYPE_UID_T case $krb5_cv_host in - powerpc-apple-darwin*) + *-apple-darwin*) KRB_ERR_TXT= KRB_ERR= KRB_ERR_C=krb_err.c Rob