Date: 30 May 2002 11:07:20 -0400 From: Joe Marcus Clarke <marcus@marcuscom.com> To: Kris Kennaway <kris@obsecurity.org> Cc: re@FreeBSD.ORG, portmgr@FreeBSD.ORG, alpha@FreeBSD.ORG, gnome@FreeBSD.ORG, kde@FreeBSD.ORG Subject: Re: 4.6-RELEASE packages on alpha Message-ID: <1022771240.349.16.camel@gyros.marcuscom.com> In-Reply-To: <20020530024553.A22953@xor.obsecurity.org> References: <20020530024553.A22953@xor.obsecurity.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--=-Xvfs5kswVP/5YHZkG2pK Content-Type: text/plain Content-Transfer-Encoding: 7bit On Thu, 2002-05-30 at 05:45, Kris Kennaway wrote: > The 4.6-RELEASE package build has finished on axp0, and I'm currently > transferring the packages to ftp-master. Sadly, there are a lot of > failures still, and none of the gnome or kde versions built > successfully. > > If any of the alpha folk can submit fixes in the next day or so I > _might_ be able to re-tag them into the 4.6-RELEASE ports collection > and try again. > > See http://beta.freebsd.org as usual for the list of failures. I think I fixed all the GNOME problems (except mozilla). Attached are two patches I'm unsure of, and can't test. Kris, could you run the build with the attached two patches to gnomoku and gdm2? patch-user.cc goes with gnomoku patch-daemon_gdm.c goes with gdm2 The mozilla thing will take slightly longer. Joe > > Kris -- PGP Key : http://www.marcuscom.com/pgp.asc --=-Xvfs5kswVP/5YHZkG2pK Content-Disposition: attachment; filename=patch-user.cc Content-Transfer-Encoding: quoted-printable Content-Type: text/x-c++; name=patch-user.cc; charset=ISO8859-1 --- user.cc.orig Thu May 30 11:01:03 2002 +++ user.cc Thu May 30 11:01:49 2002 @@ -86,7 +86,7 @@ addr.sin_addr.s_addr =3D htonl(INADDR_ANY); if (bind (sock, (struct sockaddr *)&addr, sizeof(addr))) return errno; if (listen (sock, 1)) return errno; - if ((sockn =3D accept (sock, (struct sockaddr *)&addr, &size)) < 0) + if ((sockn =3D accept (sock, (struct sockaddr *)&addr, (socklen_t *)&size= )) < 0) return errno; close (sock); sock =3D sockn; --=-Xvfs5kswVP/5YHZkG2pK Content-Disposition: attachment; filename=patch-daemon_gdm.c Content-Transfer-Encoding: quoted-printable Content-Type: text/x-c; name=patch-daemon_gdm.c; charset=ISO8859-1 --- daemon/gdm.c.orig Thu May 30 11:02:29 2002 +++ daemon/gdm.c Thu May 30 10:59:19 2002 @@ -36,7 +36,7 @@ #include <locale.h> =20 /* This should be moved to auth.c I suppose */ -#include <X11/Xauth.h> +/*#include <X11/Xauth.h>*/ =20 #include <vicious.h> =20 --=-Xvfs5kswVP/5YHZkG2pK-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1022771240.349.16.camel>