Return-Path: Received: from sj-iport-6.cisco.com (sj-iport-6.cisco.com [171.71.176.117]) by krbdev.mit.edu (Postfix) with ESMTPS id 774113DC2A for ; Sat, 14 Aug 2010 05:01:44 -0400 (EDT) Authentication-Results: sj-iport-6.cisco.com; dkim=neutral (message not signed) header.i=none X-Ironport-Anti-Spam-Filtered: true X-Ironport-Anti-Spam-Result: AtoFAGb4ZUxAaMHG/2dsb2JhbACTNI0OcZ8Vm0iFOgSEK4geh1A X-Ironport-Av: E=Sophos;i="4.55,367,1278288000"; d="scan'208";a="573399559" Received: from syd-core-1.cisco.com ([64.104.193.198]) by sj-iport-6.cisco.com with ESMTP; 14 Aug 2010 09:01:42 +0000 Received: from xbh-bgl-412.cisco.com (xbh-bgl-412.cisco.com [72.163.129.202]) by syd-core-1.cisco.com (8.13.8/8.14.3) with ESMTP id o7E91fiA003803; Sat, 14 Aug 2010 09:01:41 GMT Received: from xmb-bgl-41b.cisco.com ([72.163.129.217]) by xbh-bgl-412.cisco.com with Microsoft SMTPSVC(6.0.3790.4675); Sat, 14 Aug 2010 14:31:40 +0530 X-Mimeole: Produced By Microsoft Exchange V6.5 Content-Class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: [krbdev.mit.edu #6756] KDC 1.6/1.7/1.8 Installation Date: Sat, 14 Aug 2010 14:31:05 +0530 Message-ID: <454A16E4DA86094EB66BB2C1DBBBC018023EE1E6@XMB-BGL-41B.cisco.com> In-Reply-To: X-MS-Has-Attach: X-MS-Tnef-Correlator: Thread-Topic: [krbdev.mit.edu #6756] KDC 1.6/1.7/1.8 Installation Thread-Index: Acs6S5NvrwNN+IOpQi+4TJzBaVKVfwBQxUeg References: From: "Subash Comerica (subashtc)" To: CC: X-Originalarrivaltime: 14 Aug 2010 09:01:40.0653 (UTC) FILETIME=[4F45D5D0:01CB3B8F] RT-Send-Cc: X-RT-Original-Encoding: us-ascii Content-Length: 1878 Hi Greg, Thanks for your support. I think it worked. Make test seems to fail probably due to some DNS config missing. Thanks & Regards, Subash Changing the Way We Live, Work, Play and Learn make[2]: Entering directory `/root/u1/krb5-1.8.2/src/tests/resolve' LD_LIBRARY_PATH=`echo -L../../lib | sed -e "s/-L//g" -e "s/ /:/g"`; export LD_LIBRARY_PATH; ./resolve Hostname: eveready Host address: 10.64.x.y FQDN: eveready Resolve library did not return a fully qualified domain name. If you are using /etc/hosts before DNS, e.g. "files" is listed first for "hosts:" in nsswitch.conf, ensure that you have listed the FQDN as the first name for the local host. If this does not correct the problem, you may have to reconfigure the kerberos distribution to select a different set of libraries using --with-netlib[=libs] make[2]: *** [check] Error 3 make[2]: Leaving directory `/root/u1/krb5-1.8.2/src/tests/resolve' make[1]: *** [check-recurse] Error 1 make[1]: Leaving directory `/root/u1/krb5-1.8.2/src/tests' make: *** [check-recurse] Error 1 -----Original Message----- From: Greg Hudson via RT [mailto:rt-comment@krbdev.mit.edu] Sent: Thursday, August 12, 2010 11:54 PM To: Subash Comerica (subashtc) Subject: [krbdev.mit.edu #6756] KDC 1.6/1.7/1.8 Installation Please send questions in email to kerberos@mit.edu instead of submitting them as bug reports. Your problem is a broken gcc wrapper script on your system, as seen here: gcc [...] -DCMD_PATH='"/bin /local/bin"' [...] -c authorization.c gcc.orig: /local/bin": No such file or directory [...] Your gcc wrapper is not correctly quoting arguments when invoking gcc.orig, so the CMD_PATH definition is being separated into two arguments. If you wrote the wrapper yourself and it's a shell script, use "$@" (with quotes) to pass the arguments on to gcc.orig instead of $*.