Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Nov 2004 13:37:58 -0800
From:      Peter Wemm <peter@wemm.org>
To:        freebsd-amd64@freebsd.org
Subject:   Re: Finally got it working... more help required
Message-ID:  <200411141337.59025.peter@wemm.org>
In-Reply-To: <200411141324.07648.peter@wemm.org>
References:  <I6VW1I00.TN1@hadar.amcc.com> <Pine.BSF.4.53.0411142046160.85716@e0-0.zab2.int.zabbadoz.net> <200411141324.07648.peter@wemm.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sunday 14 November 2004 01:24 pm, Peter Wemm wrote:
> On Sunday 14 November 2004 12:48 pm, Bjoern A. Zeeb wrote:
> > On Sun, 14 Nov 2004, Peter Wemm wrote:
> > > If you are running CURRENT or RELENG_5, you can put
> > > "WITH_LIB32=yes" in /etc/make.conf and you will get 32 bit
> > > libraries with 'make world'.
> >
> > this didn't work for me two days ago. Forgot to report this *grml*.
> > Same source tree worked without WITH_LIB32= in make.conf.
> >
> >
> > cc -m32 -march=athlon-xp -msse2 -mfancy-math-387 -DCOMPAT_32BIT
> > -I/usr/obj/local/building/src+ports/src/HEAD/20041112-1801/lib32/us
> >r/
>
> Can you do me a favor and try doing a rm -rf /usr/obj/* first?  It
> shouldn't be needed, but I've had problems with previous failed
> builds leaving things behind.
>
> Oh wait.  I think I see whats going on, I appear to have missed a
> build-tool for the kerberos5 case.  oops. :-(

No guarantees, but I'm about to test this patch to Makefile.inc1

@@ -409,6 +409,12 @@
  cd ${.CURDIR}/${_dir}; \
      MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} build-tools
 .endfor
+.if !defined(NO_KERBEROS) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
+.for _t in obj depend all
+ cd ${.CURDIR}/kerberos5/tools; \
+     MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} ${_t}
+.endfor
+.endif
  cd ${.CURDIR}; \
      ${LIB32MAKE} -f Makefile.inc1 DESTDIR=${LIB32TMP} libraries 
 .for _t in obj depend all

-- 
Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com
"All of this is for nothing if we don't go to the stars" - JMS/B5



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200411141337.59025.peter>