From owner-freebsd-current@FreeBSD.ORG Sat Sep 19 23:56:27 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1445106568F; Sat, 19 Sep 2009 23:56:27 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from esa-jnhn.mail.uoguelph.ca (esa-jnhn.mail.uoguelph.ca [131.104.91.44]) by mx1.freebsd.org (Postfix) with ESMTP id 51CEB8FC18; Sat, 19 Sep 2009 23:56:27 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApoEADMMtUqDaFvH/2dsb2JhbADLf4QbBYFY X-IronPort-AV: E=Sophos;i="4.44,417,1249272000"; d="scan'208";a="48659385" Received: from danube.cs.uoguelph.ca ([131.104.91.199]) by esa-jnhn-pri.mail.uoguelph.ca with ESMTP; 19 Sep 2009 19:56:25 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by danube.cs.uoguelph.ca (Postfix) with ESMTP id ED74610846A9; Sat, 19 Sep 2009 19:56:24 -0400 (EDT) X-Virus-Scanned: amavisd-new at danube.cs.uoguelph.ca Received: from danube.cs.uoguelph.ca ([127.0.0.1]) by localhost (danube.cs.uoguelph.ca [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Y7VCLm2pOby5; Sat, 19 Sep 2009 19:56:24 -0400 (EDT) Received: from muncher.cs.uoguelph.ca (muncher.cs.uoguelph.ca [131.104.91.102]) by danube.cs.uoguelph.ca (Postfix) with ESMTP id E6C0710846A7; Sat, 19 Sep 2009 19:56:23 -0400 (EDT) Received: from localhost (rmacklem@localhost) by muncher.cs.uoguelph.ca (8.11.7p3+Sun/8.11.6) with ESMTP id n8K01us06712; Sat, 19 Sep 2009 20:01:56 -0400 (EDT) X-Authentication-Warning: muncher.cs.uoguelph.ca: rmacklem owned process doing -bs Date: Sat, 19 Sep 2009 20:01:56 -0400 (EDT) From: Rick Macklem X-X-Sender: rmacklem@muncher.cs.uoguelph.ca To: Sam Leffler In-Reply-To: <4AB40DC7.2060808@freebsd.org> Message-ID: References: <4AB27FB6.4010806@eng.auth.gr> <20090918034933.GI1231@rwpc12.mby.riverwillow.net.au> <4AB40DC7.2060808@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable , freebsd-current@freebsd.org, John Marshall , George Mamalakis Subject: Re: SASL problems with spnego on 8.0-BETA4 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2009 23:56:27 -0000 On Fri, 18 Sep 2009, Sam Leffler wrote: > > FWIW I hit the same problem (I think) with cyrus imap and saslauthd. I > am running HEAD and tried building w/ and w/o kerberos enabled but > cyradm aborts on startup complaining about the missing symbol. I > started digging because I couldn't get cyrus imap to authenticate users. > Feels like one or more of these ports are busted. > This change might actually be worth trying... I diff'd the Makefile for openldap-2.4.18 vs openldap-2.4.15 created by ports and found this (along with the expected version change stuff). You could try patching your Makefile in the openldap-2.4.18 directory (this was the one created under net/openldap24-sasl-client/work). rick ps: I'll try the same "diff Makefile" trick for the cyrus stuff. --- Makefile.openldap-2.4.18 Sat Sep 19 19:24:22 2009 +++ Makefile.openldap-2.4.15 Sat Sep 19 19:23:49 2009 @@ -187,9 +187,10 @@ KRB5_LIBS = KRB_LIBS = SASL_LIBS = -lsasl2 +GSSAPI_LIBS = -lgssapi TLS_LIBS = -lssl -lcrypto AUTH_LIBS = -SECURITY_LIBS = $(SASL_LIBS) $(KRB_LIBS) $(TLS_LIBS) $(AUTH_LIBS) +SECURITY_LIBS = $(SASL_LIBS) $(KRB_LIBS) $(GSSAPI_LIBS) $(TLS_LIBS) $(AUTH_LIBS) ICU_LIBS = MODULES_CPPFLAGS =