From owner-freebsd-gnome Sun Apr 7 0:42:17 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 1C74937B405 for ; Sun, 7 Apr 2002 00:42:14 -0800 (PST) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0LY4; Sun, 7 Apr 2002 11:43:40 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g378gF840668; Sun, 7 Apr 2002 11:42:15 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204070842.g378gF840668@vega.vega.com> Subject: Re: audio/gnomemedia fails to build on -CURRENT To: marcus@marcuscom.com (Joe Clarke) Date: Sun, 7 Apr 2002 11:42:15 +0300 (EEST) Cc: anders@hack.org (Anders Andersson), gnome@FreeBSD.ORG In-Reply-To: <20020406145721.D86419-100000@shumai.marcuscom.com> from "Joe Clarke" at Apr 06, 2002 03:01:04 PM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > > PGP Key : http://www.marcuscom.com/pgp.asc > > On Sat, 6 Apr 2002, Anders Andersson wrote: > > > Hi! > > > > gnomemedia fails to build on a 1 day old -CURRENT system for me. > > > > ports tree is up to date. > > The attached patch should fix it. This should be copied over > /usr/ports/audio/gnomemedia/files/patch-ad. This is a result of rev 1.165 > to include/Makefile which removes compatibility links for > machine/soundcard.h and machine/joystick.h. > > I guess we need to spend some extra effort looking for those in ports. > Maxim, permission to commit patch? No patch is attached. :((( Please resend. -Maxim > > Joe > > > > > Please see attached build log. > > -- > > Anders Andersson > > UNIX, Networking and Security consultant > > +46 (0)705 87 53 35 > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sun Apr 7 8:57:51 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id AE38237B404; Sun, 7 Apr 2002 08:57:45 -0700 (PDT) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id g37Fu4v11185; Sun, 7 Apr 2002 11:56:04 -0400 (EDT) (envelope-from marcus@marcuscom.com) Subject: Re: audio/gnomemedia fails to build on -CURRENT From: Joe Marcus Clarke To: Maxim Sobolev Cc: Anders Andersson , gnome@FreeBSD.org In-Reply-To: <200204070842.g378gF840668@vega.vega.com> References: <200204070842.g378gF840668@vega.vega.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-kzafQxVIcRMf1gbZuE1Q" X-Mailer: Ximian Evolution 1.0.3 Date: 07 Apr 2002 12:57:58 -0300 Message-Id: <1018195078.11209.3.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-kzafQxVIcRMf1gbZuE1Q Content-Type: multipart/mixed; boundary="=-5XKpohkIRbEOY3U1lWGr" --=-5XKpohkIRbEOY3U1lWGr Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-04-07 at 05:42, Maxim Sobolev wrote: > No patch is attached. :((( >=20 > Please resend. >=20 > -Maxim Sorry. It's attached now. Joe >=20 --=-5XKpohkIRbEOY3U1lWGr Content-Disposition: attachment; filename=patch-ad Content-Type: text/plain; name=patch-ad; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable --- gmix/gmix.c.orig Mon Jun 11 13:50:47 2001 +++ gmix/gmix.c Sat Apr 6 14:55:36 2002 @@ -58,7 +58,7 @@ #ifdef HAVE_LINUX_SOUNDCARD_H=20 #include #else=20 -#include +#include #endif #endif =20 @@ -499,11 +499,7 @@ /* * open the mixer-device */ - if (num=3D=3D0) { - sprintf(device_name, "/dev/mixer"); - } else { - sprintf(device_name, "/dev/mixer%i", num); - } + sprintf(device_name, "/dev/mixer%i", num); new_device->fd=3Dopen(device_name, O_RDWR, 0); if (new_device->fd<0) { g_free(new_device); @@ -535,6 +531,8 @@ } =09 } #endif + +#if defined(OPEN_SOUND_SYSTEM) /* * mixer-name */ @@ -545,6 +543,11 @@ } if(!isalpha(new_device->info.name[0])) g_snprintf(new_device->info.name, 31, "Card %d", num+1); +#else + g_snprintf(new_device->info.id, 15, "mixer%d", num); + g_snprintf(new_device->info.name, 31, "Sound Card %d", num+1); + new_device->info.modify_counter=3D0; +#endif /*=20 * several bitmasks describing the mixer */ @@ -677,15 +680,16 @@ { int cnt; device_info *new_device; - cnt=3D0; devices=3DNULL; + cnt=3D0; num_mixers=3D0; devices=3DNULL; do { new_device=3Dopen_device(cnt++); if (new_device) { new_device->channels=3Dmake_channels(new_device); devices=3Dg_list_append(devices, new_device); + num_mixers++; } - } while (new_device); - num_mixers=3Dcnt-1; + } while ((errno =3D=3D EACCES) || (errno =3D=3D EINVAL) || (errno =3D=3D = ENXIO) \ + || new_device); } =20 #ifdef ALSA --=-5XKpohkIRbEOY3U1lWGr-- --=-kzafQxVIcRMf1gbZuE1Q Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjywbIYACgkQb2iPiv4Uz4drdwCeKDa0IXYR1Oh1czSNR2MOFXQs rRkAoJjAgg8VHzdTiaVCFwPJ9DtQgyVI =g4i7 -----END PGP SIGNATURE----- --=-kzafQxVIcRMf1gbZuE1Q-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sun Apr 7 13:22:30 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from dave.davegoode.net (pc1-camc5-0-cust170.cam.cable.ntl.com [80.4.0.170]) by hub.freebsd.org (Postfix) with ESMTP id A646D37B404; Sun, 7 Apr 2002 13:22:19 -0700 (PDT) Received: (from dave@localhost) by dave.davegoode.net (8.11.6/8.11.6) id g37KMKq04446; Sun, 7 Apr 2002 21:22:20 +0100 (BST) (envelope-from dave) Message-Id: <200204072022.g37KMKq04446@dave.davegoode.net> Content-Type: text/plain; charset="iso-8859-1" From: Dave Goode Reply-To: dave@davegoode.net Organization: davegoode.net To: gnome@FreeBSD.org Subject: FreeBSD Port: gnumeric-1.0.0 Date: Sun, 7 Apr 2002 21:22:19 +0100 X-Mailer: KMail [version 1.3.2] Cc: ports@FreeBSD.org MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, I thought all my dependencies were up-to-date, but a make on Gnumeric failed round the point shown below. I don't have the necessary knowledge to determine where langinfo.h should come from and would greatly appreciate any help you can find time to offer. Thanks, Dave ---------------------------------------------------------------------- int main() { /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined (__stub_isfinite) || defined (__stub___isfinite) choke me #else isfinite(); #endif ; return 0; } configure:9897: checking for finite in -lm configure:9916: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunused -Wsign-promo -Wsign-compare -Wpointer-arith -Wnested-externs -Wchar-subscripts -I/usr/local/include -D_THREAD_SAFE -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -lm -L/usr/local/lib -lintl -liconv -pthread 1>&5 configure:9946: checking for langinfo.h configure:9956: cc -E -I/usr/local/include -D_THREAD_SAFE -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:9952: langinfo.h: No such file or directory configure: failed program was: #line 9951 "configure" #include "confdefs.h" #include configure:9987: checking for iconv.h configure:9997: cc -E -I/usr/local/include -D_THREAD_SAFE -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out configure:10028: checking for libxml (aka gnome-xml) libraries 1.8.14 <= version < 2.0.0 configure:10051: checking for perl configure:10080: checking for perl ExtUtils::Embed module configure:10135: checking for python configure:10185: checking if we can build a shared library depending on libpython configure:10229: checking for libole2 >= 0.2.4 configure:10271: checking for Bonobo >= 1.0.9 configure:10616: checking for Gb == 0.0.17 configure:10652: checking for GnomePrint libraries >= 0.29 configure:10674: checking for Glade libraries >= 0.16 configure:10695: checking for Gnome App libraries (GAL) >= 0.16 (end of "config.log") *** Error code 1 Stop in /usr/ports/math/gnumeric. dave# -- www.davegoode.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sun Apr 7 14:19:31 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id B0CDE37B43A; Sun, 7 Apr 2002 14:18:36 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g37KHh3l072421; Sun, 7 Apr 2002 16:17:43 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g37KHgr2072420; Sun, 7 Apr 2002 16:17:42 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: FreeBSD Port: gnumeric-1.0.0 From: Joe Marcus Clarke To: dave@davegoode.net Cc: gnome@FreeBSD.ORG, ports@FreeBSD.ORG In-Reply-To: <200204072022.g37KMKq04446@dave.davegoode.net> References: <200204072022.g37KMKq04446@dave.davegoode.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-l0qgffMSlMvylSaq4Uf1" X-Mailer: Ximian Evolution 1.0.3 Date: 07 Apr 2002 17:17:42 -0300 Message-Id: <1018210662.72360.4.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-l0qgffMSlMvylSaq4Uf1 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-04-07 at 17:22, Dave Goode wrote: > Hello, >=20 > I thought all my dependencies were up-to-date, but a make on Gnumeric fai= led=20 > round the point shown below. I don't have the necessary knowledge to=20 > determine where langinfo.h should come from and would greatly appreciate = any=20 > help you can find time to offer. Looks like gal might be out of date. Make sure you have gal-0.19.1 installed. If you do, try reinstalling it. Joe >=20 > Thanks, >=20 > Dave >=20 > ---------------------------------------------------------------------- >=20 > int main() { >=20 > /* The GNU C library defines this for functions which it implements > to always fail with ENOSYS. Some functions are actually named > something starting with __ and the normal name is an alias. */ > #if defined (__stub_isfinite) || defined (__stub___isfinite) > choke me > #else > isfinite(); > #endif >=20 > ; return 0; } > configure:9897: checking for finite in -lm > configure:9916: cc -o conftest -O -pipe -I/usr/X11R6/include -Wall -Wunu= sed =20 > -Wsign-promo -Wsign-compare -Wpointer-arith -Wnested-externs=20 > -Wchar-subscripts -I/usr/local/include -D_THREAD_SAFE=20 > -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/inclu= de=20 > -I/usr/X11R6/include -L/usr/X11R6/lib conftest.c -lm -L/usr/local/lib=20 > -lintl -liconv -pthread 1>&5 > configure:9946: checking for langinfo.h > configure:9956: cc -E -I/usr/local/include -D_THREAD_SAFE=20 > -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/inclu= de=20 > -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out > configure:9952: langinfo.h: No such file or directory > configure: failed program was: > #line 9951 "configure" > #include "confdefs.h" > #include > configure:9987: checking for iconv.h > configure:9997: cc -E -I/usr/local/include -D_THREAD_SAFE=20 > -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/inclu= de=20 > -I/usr/X11R6/include conftest.c >/dev/null 2>conftest.out > configure:10028: checking for libxml (aka gnome-xml) libraries 1.8.14 <= =3D=20 > version < 2.0.0 > configure:10051: checking for perl > configure:10080: checking for perl ExtUtils::Embed module > configure:10135: checking for python > configure:10185: checking if we can build a shared library depending on=20 > libpython > configure:10229: checking for libole2 >=3D 0.2.4 > configure:10271: checking for Bonobo >=3D 1.0.9 > configure:10616: checking for Gb =3D=3D 0.0.17 > configure:10652: checking for GnomePrint libraries >=3D 0.29 > configure:10674: checking for Glade libraries >=3D 0.16 > configure:10695: checking for Gnome App libraries (GAL) >=3D 0.16 > (end of "config.log") > *** Error code 1 >=20 > Stop in /usr/ports/math/gnumeric. > dave# > --=20 > www.davegoode.net >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message >=20 --=20 PGP Key: http://www.marucscom.com/pgp.asc --=-l0qgffMSlMvylSaq4Uf1 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjywqWYACgkQb2iPiv4Uz4fiSgCeLaii6eRg/4DA59EhgEQXTBCS WroAn0dEW22OLGvtKiGPYUxeLZJ2p/4q =jNgb -----END PGP SIGNATURE----- --=-l0qgffMSlMvylSaq4Uf1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sun Apr 7 18:41:50 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B32237B416; Sun, 7 Apr 2002 18:41:49 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g381fnG38078; Sun, 7 Apr 2002 18:41:49 -0700 (PDT) (envelope-from marcus) Date: Sun, 7 Apr 2002 18:41:49 -0700 (PDT) From: Message-Id: <200204080141.g381fnG38078@freefall.freebsd.org> To: info@netarmor.net, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/36182: ORBit-0.5.14 fails during Cache configuration Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: ORBit-0.5.14 fails during Cache configuration State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sun Apr 7 18:41:14 PDT 2002 State-Changed-Why: This was fixed by installing the gettext-old port. http://www.freebsd.org/cgi/query-pr.cgi?pr=36182 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sun Apr 7 18:42:26 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3417737B416; Sun, 7 Apr 2002 18:42:25 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g381gPw38186; Sun, 7 Apr 2002 18:42:25 -0700 (PDT) (envelope-from marcus) Date: Sun, 7 Apr 2002 18:42:25 -0700 (PDT) From: Message-Id: <200204080142.g381gPw38186@freefall.freebsd.org> To: info@netarmor.net, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/36356: ORBitz-0.5.15 fails during configure Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: ORBitz-0.5.15 fails during configure State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sun Apr 7 18:41:57 PDT 2002 State-Changed-Why: Dup of 36182. http://www.freebsd.org/cgi/query-pr.cgi?pr=36356 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 4: 1: 2 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from mail.oek.dk (oek.dk [195.215.62.2]) by hub.freebsd.org (Postfix) with ESMTP id ED56737B404; Mon, 8 Apr 2002 04:00:57 -0700 (PDT) Received: from g610a.oek.dk ([10.207.6.81] helo=oek.dk) by mail.oek.dk with esmtp (Exim 3.12 #1 (Debian)) id 16uWtM-0006QF-00; Mon, 08 Apr 2002 13:00:56 +0200 Message-ID: <3CB1786F.1040308@oek.dk> Date: Mon, 08 Apr 2002 13:01:03 +0200 From: "Peter I. Hansen" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.9) Gecko/20020320 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gnome@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: galeon-1.2.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello I'm trying to make galeon from ports on FreeBSD 4.4. Here's my output. ----------------------------------------------------------------------------------------- cc -c -DLOCALEDIR=\"/usr/X11R6/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/X11R6/share/locale\" -DLIBDIR=\"/usr/X11R6/lib\" -DHAVE_CONFIG_H -I.. -I. -I../intl -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE -pthread -D_THREAD_SAFE -O -pipe -Wall -Wmissing-declarations -Wmissing-prototypes -Wsign-compare -Werror -D__const__= localcharset.c cc1: warnings being treated as errors localcharset.c:204: warning: no previous prototype for `locale_charset' *** Error code 1 Stop in /usr/ports/www/galeon/work/galeon-1.2.0/intl. *** Error code 1 Stop in /usr/ports/www/galeon/work/galeon-1.2.0. *** Error code 1 Stop in /usr/ports/www/galeon/work/galeon-1.2.0. *** Error code 1 Stop in /usr/ports/www/galeon. ** Command failed: make ** Fix the problem and try again. ** The following packages were not installed or upgraded (*:skipped / !:failed) ! www/galeon (galeon-1.0) (unknown build error) ---------------------------------------------------------------------------------------------- Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 6:29:49 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from mail.oek.dk (oek.dk [195.215.62.2]) by hub.freebsd.org (Postfix) with ESMTP id 9559037B400; Mon, 8 Apr 2002 06:29:44 -0700 (PDT) Received: from g610a.oek.dk ([10.207.6.81] helo=oek.dk) by mail.oek.dk with esmtp (Exim 3.12 #1 (Debian)) id 16uZDL-000858-00; Mon, 08 Apr 2002 15:29:43 +0200 Message-ID: <3CB19B4D.7040504@oek.dk> Date: Mon, 08 Apr 2002 15:29:49 +0200 From: "Peter I. Hansen" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.9) Gecko/20020408 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gnome@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: mozilla-0.9.9 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello After the last upgrade of mozilla java does not work. I get the following error at startup : ---------------------- mozilla & [1] 83388 pih% registerSelf for remoteControl LoadPlugin: failed to initialize shared library /usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so [/usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so: Undefined symbol "dgettext"] ------------------------- It worked under the previous port version. I have jdk13 installed. /Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 7:15:37 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from yoda.bmi.net (yoda.bmi.net [204.57.191.163]) by hub.freebsd.org (Postfix) with ESMTP id 4E1DF37B400; Mon, 8 Apr 2002 07:15:24 -0700 (PDT) Received: from johncoop.MSHOME ([206.63.201.3]) by yoda.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id HAA23332; Mon, 8 Apr 2002 07:11:36 -0700 Received: from johncoop.MSHOME (localhost [IPv6:::1]) by johncoop.MSHOME (8.12.2/8.12.2) with ESMTP id g38EFe4u036071; Mon, 8 Apr 2002 07:15:40 -0700 (PDT) (envelope-from jmcoopr@johncoop.MSHOME) Received: (from root@localhost) by johncoop.MSHOME (8.12.2/8.12.2/Submit) id g38EFe3t036070; Mon, 8 Apr 2002 07:15:40 -0700 (PDT) Date: Mon, 8 Apr 2002 07:15:40 -0700 (PDT) Message-Id: <200204081415.g38EFe3t036070@johncoop.MSHOME> To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] Update balsa to 1.3.4 From: John Merryweather Cooper Reply-To: John Merryweather Cooper Cc: freebsd-gnome@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >Submitter-Id: current-users >Originator: John Merryweather Cooper >Organization: >Confidential: no >Synopsis: [PATCH] Update balsa to 1.3.4 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 4.5-STABLE i386 >Environment: System: FreeBSD johncoop.MSHOME 4.5-STABLE FreeBSD 4.5-STABLE #33: Sat Apr 6 12:17:50 PST 2002 root@johncoop.MSHOME:/usr/obj/usr/src/sys/JOHNCOOP i386 >Description: Update balsa to 1.3.4. This is bug fix and code stream-lining in preparation for an eventual GNOME2 version. >How-To-Repeat: N/A >Fix: Note that patch-aa is no longer needed. --- update-balsa-1.3.4 begins here --- # This is a patch for balsa to update it to balsa.1.3.4 # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # If you have a decent Bourne-type shell: # STEP 2: Run the shell with this file as input. # If you don't have such a shell, you may need to manually delete # the files as shown below. # STEP 3: Run the 'patch' program with this file as input. # # These are the commands needed to create/delete files/directories: # rm -f 'files/patch-aa' # # This command terminates the shell and need not be executed manually. exit # #### End of Preamble #### #### Patch data follows #### diff -u 'balsa/Makefile' 'balsa.1.3.4/Makefile' Index: ./Makefile --- ./Makefile Tue Mar 19 09:33:57 2002 +++ ./Makefile Mon Apr 8 07:04:38 2002 @@ -2,11 +2,11 @@ # Date created: 02 December 1998 # Whom: Glenn Johnson # -# $FreeBSD: ports/mail/balsa/Makefile,v 1.54 2002/03/19 12:52:53 sobomax Exp $ +# $FreeBSD$ # PORTNAME= balsa -PORTVERSION= 1.3.3 +PORTVERSION= 1.3.4 CATEGORIES= mail gnome MASTER_SITES= http://www.theochem.kth.se/~pawsa/balsa/ \ ftp://ftp.newton.cx/pub/balsa/ @@ -32,7 +32,6 @@ --with-ssl CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib -liconv" -CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} MAN1= balsa.1 diff -u 'balsa/distinfo' 'balsa.1.3.4/distinfo' Index: ./distinfo --- ./distinfo Thu Mar 7 19:46:42 2002 +++ ./distinfo Mon Apr 8 06:52:37 2002 @@ -1 +1 @@ -MD5 (balsa-1.3.3.tar.bz2) = 582711809c484a54bcca002ad32eaa3f +MD5 (balsa-1.3.4.tar.bz2) = c540ffa8c2e435c6b9c62dc469b382c3 #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Mon Apr 8 07:11:11 2002 # Generated by : makepatch 2.00 # Recurse directories : Yes # r 'files/patch-aa' 271 0 # p 'Makefile' 1442 1018274678 0100644 # p 'distinfo' 61 1018273957 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Mon Apr 8 07:11:11 2002] #### #### Checksum: 75 2468 57577 #### --- update-balsa-1.3.4 ends here --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 9:46:58 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 69EF737B42A; Mon, 8 Apr 2002 09:46:09 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Gk9d76628; Mon, 8 Apr 2002 09:46:09 -0700 (PDT) (envelope-from marcus) Date: Mon, 8 Apr 2002 09:46:09 -0700 (PDT) From: Message-Id: <200204081646.g38Gk9d76628@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/36877: [PATCH] Update balsa to 1.3.4 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: [PATCH] Update balsa to 1.3.4 Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Mon Apr 8 09:45:51 PDT 2002 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=36877 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 11: 0:34 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CE8E37B41A for ; Mon, 8 Apr 2002 11:00:06 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38I06V93121; Mon, 8 Apr 2002 11:00:06 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Apr 2002 11:00:06 -0700 (PDT) Message-Id: <200204081800.g38I06V93121@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Heikki Suonsivu Subject: Re: ports/35996: gnumeric port fails on missing libxml Reply-To: Heikki Suonsivu Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35996; it has been noted by GNATS. From: Heikki Suonsivu To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org, hsu@iki.fi Subject: Re: ports/35996: gnumeric port fails on missing libxml Date: Mon, 8 Apr 2002 20:54:44 +0300 (EEST) Joe Marcus Clarke writes: > Wow, there's a lot here. However, on my 4.5-stable system with > libxml-1.8.17 installed, I have all the requisite xml header files. If > you cvsup the latest ports tree, and try building these ports again, do > you see the same problem? Thanks. It compiles now. I guess something was off sync when I tried it. Can close. > Joe -- Heikki Suonsivu / Taysikuu 10 C 83 / FI-02210 Espoo / FINLAND, heikki@suonsivu.net mobile +358-40-5519679 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 11: 3:15 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E03F437B416 for ; Mon, 8 Apr 2002 11:03:04 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38I31H94002 for gnome@freebsd.org; Mon, 8 Apr 2002 11:03:01 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 8 Apr 2002 11:03:01 -0700 (PDT) Message-Id: <200204081803.g38I31H94002@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: gnome@FreeBSD.org Subject: Current problem reports assigned to you Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/03/14] ports/35907 gnome Attempts to build mozilla fail (on curren o [2002/03/16] ports/35980 gnome www/mozilla{,-headers}: installs incorrec o [2002/03/16] ports/35996 gnome gnumeric port fails on missing libxml o [2002/03/20] ports/36146 gnome imlib-1.9.13 does not install headers o [2002/03/22] ports/36193 gnome www/mozilla: make -DWITHOUT_CHATZILLA => o [2002/03/27] ports/36401 gnome devel/bonobo: can't make package because 6 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [2002/02/13] ports/34901 gnome sodipodi-0.24.1 core dumps o [2002/03/11] ports/35776 gnome New option for mozilla port o [2002/04/02] ports/36665 gnome gtk 2.0 port fails on glib, atk or pango o [2002/04/08] ports/36877 gnome [PATCH] Update balsa to 1.3.4 4 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 11:12:28 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C732537B400; Mon, 8 Apr 2002 11:12:24 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38ICO499972; Mon, 8 Apr 2002 11:12:24 -0700 (PDT) (envelope-from marcus) Date: Mon, 8 Apr 2002 11:12:24 -0700 (PDT) From: Message-Id: <200204081812.g38ICO499972@freefall.freebsd.org> To: hsu@iki.fi, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/35996: gnumeric port fails on missing libxml Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: gnumeric port fails on missing libxml State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Mon Apr 8 11:11:58 PDT 2002 State-Changed-Why: Submitter reports that everything is working now. http://www.freebsd.org/cgi/query-pr.cgi?pr=35996 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 11:41:28 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (dhcp-64-102-60-50.cisco.com [64.102.60.50]) by hub.freebsd.org (Postfix) with ESMTP id 7FCE337B400; Mon, 8 Apr 2002 11:41:06 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g38Ieve4019299; Mon, 8 Apr 2002 14:41:03 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g38EZnJQ066474; Mon, 8 Apr 2002 10:35:49 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: FreeBSD Port: mozilla-0.9.9 From: Joe Marcus Clarke To: "Peter I. Hansen" Cc: gnome@FreeBSD.org, ports@FreeBSD.org In-Reply-To: <3CB19B4D.7040504@oek.dk> References: <3CB19B4D.7040504@oek.dk> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-InYK647qNL5mH4540U1w" X-Mailer: Ximian Evolution 1.0.3 Date: 08 Apr 2002 11:35:49 -0300 Message-Id: <1018276549.319.2.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-InYK647qNL5mH4540U1w Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2002-04-08 at 10:29, Peter I. Hansen wrote: > Hello >=20 > After the last upgrade of mozilla java does not work. I get the=20 > following error at startup : > ---------------------- > mozilla & > [1] 83388 > pih% registerSelf for remoteControl > LoadPlugin: failed to initialize shared library=20 > /usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so=20 > [/usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so:=20 > Undefined symbol "dgettext"] > ------------------------- >=20 > It worked under the previous port version. Do you have the gettext-old port installed? Joe >=20 > I have jdk13 installed. >=20 > /Peter >=20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message >=20 --=20 PGP Key: http://www.marucscom.com/pgp.asc --=-InYK647qNL5mH4540U1w Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjyxqsUACgkQb2iPiv4Uz4e9DQCfcRBhw3mxTfnEc+dVcRvopMeX 5vgAnRUSgTv/s3CtpXvSj8KIwOPwT84q =vGzE -----END PGP SIGNATURE----- --=-InYK647qNL5mH4540U1w-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 11:41:37 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (dhcp-64-102-60-50.cisco.com [64.102.60.50]) by hub.freebsd.org (Postfix) with ESMTP id 81F5037B404; Mon, 8 Apr 2002 11:41:06 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g38Ieve6019299; Mon, 8 Apr 2002 14:41:04 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g38Egdhb075232; Mon, 8 Apr 2002 10:42:39 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: FreeBSD Port: galeon-1.2.0 From: Joe Marcus Clarke To: "Peter I. Hansen" Cc: gnome@FreeBSD.org, ports@FreeBSD.org In-Reply-To: <3CB1786F.1040308@oek.dk> References: <3CB1786F.1040308@oek.dk> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-BxPe5N7e+KV5OkcBlY7g" X-Mailer: Ximian Evolution 1.0.3 Date: 08 Apr 2002 11:42:39 -0300 Message-Id: <1018276959.319.14.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-BxPe5N7e+KV5OkcBlY7g Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2002-04-08 at 08:01, Peter I. Hansen wrote: > Hello >=20 > I'm trying to make galeon from ports on FreeBSD 4.4. Here's my output. > -------------------------------------------------------------------------= ---------------- > cc -c -DLOCALEDIR=3D\"/usr/X11R6/share/locale\"=20 > -DLOCALE_ALIAS_PATH=3D\"/usr/X11R6/share/locale\" =20 > -DLIBDIR=3D\"/usr/X11R6/lib\" -DHAVE_CONFIG_H -I.. -I. -I../intl=20 > -I/usr/local/include -D_REENTRANT -D_THREAD_SAFE -pthread -D_THREAD_SAFE=20 > -O -pipe -Wall -Wmissing-declarations -Wmissing-prototypes=20 > -Wsign-compare -Werror -D__const__=3D localcharset.c > cc1: warnings being treated as errors > localcharset.c:204: warning: no previous prototype for `locale_charset' > *** Error code 1 This should be compiled. Make sure you have the following ports installed: gettext-0.10.35_1 (devel/gettext-old) gettext-0.11.1 (devel/gettext) libiconv-1.7_2 (converters/libiconv) Then make clean, and try rebuilding galeon. Joe >=20 > Stop in /usr/ports/www/galeon/work/galeon-1.2.0/intl. > *** Error code 1 >=20 > Stop in /usr/ports/www/galeon/work/galeon-1.2.0. > *** Error code 1 >=20 > Stop in /usr/ports/www/galeon/work/galeon-1.2.0. > *** Error code 1 >=20 > Stop in /usr/ports/www/galeon. > ** Command failed: make > ** Fix the problem and try again. > ** The following packages were not installed or upgraded (*:skipped /=20 > !:failed) > ! www/galeon (galeon-1.0) (unknown build error) > -------------------------------------------------------------------------= --------------------- >=20 > Peter >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message >=20 --=20 PGP Key: http://www.marucscom.com/pgp.asc --=-BxPe5N7e+KV5OkcBlY7g Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjyxrF8ACgkQb2iPiv4Uz4fWpQCdEziYzRXN5Lm3p16dDvpj43GG LCQAn3/Of/dCYJVaveBxv3YHizCGaHvG =6jRS -----END PGP SIGNATURE----- --=-BxPe5N7e+KV5OkcBlY7g-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 13:12:43 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1ACB037B438; Mon, 8 Apr 2002 13:12:26 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KCPL32114; Mon, 8 Apr 2002 13:12:25 -0700 (PDT) (envelope-from marcus) Date: Mon, 8 Apr 2002 13:12:25 -0700 (PDT) From: Message-Id: <200204082012.g38KCPL32114@freefall.freebsd.org> To: john_m_cooper@webmail.bmi.net, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/36877: [PATCH] Update balsa to 1.3.4 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: [PATCH] Update balsa to 1.3.4 State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Mon Apr 8 13:12:08 PDT 2002 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=36877 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 20: 2:55 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from smtp018.mail.yahoo.com (smtp018.mail.yahoo.com [216.136.174.115]) by hub.freebsd.org (Postfix) with SMTP id 4FDEA37B41C for ; Mon, 8 Apr 2002 20:02:20 -0700 (PDT) Received: from dialup68.net33.samart.co.th (HELO pokaeobkk) (easytoberich01@203.149.33.68 with login) by smtp.mail.vip.sc5.yahoo.com with SMTP; 9 Apr 2002 03:02:15 -0000 Message-ID: <001901c1df73$2c90ba40$442195cb@loxinfo.co.th> From: "workathome" To: Subject: turn off your tv and turn on your life Date: Tue, 9 Apr 2002 09:57:02 +0700 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C1DFAC.E68AA760" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C1DFAC.E68AA760 Content-Type: text/plain; charset="windows-874" Content-Transfer-Encoding: quoted-printable if you need a chance to make your dream come true,I will give you a = chance.take it or loose it,up to you. www.smartejob.com/siriline ------=_NextPart_000_0014_01C1DFAC.E68AA760 Content-Type: text/html; charset="windows-874" Content-Transfer-Encoding: quoted-printable
if you need a chance to make your dream = come true,I=20 will give you a chance.take it or loose it,up to you.
www.smartejob.com/siriline=
 
------=_NextPart_000_0014_01C1DFAC.E68AA760-- _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Mon Apr 8 22: 0:12 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3103F37B405 for ; Mon, 8 Apr 2002 22:00:04 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39504278244; Mon, 8 Apr 2002 22:00:04 -0700 (PDT) (envelope-from gnats) Date: Mon, 8 Apr 2002 22:00:04 -0700 (PDT) Message-Id: <200204090500.g39504278244@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Garance A Drosehn Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Garance A Drosehn To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: Tue, 9 Apr 2002 00:50:34 -0400 On Sunday, April 7, 2002, at 01:07 AM, Joe Marcus Clarke wrote: > On Sun, 2002-04-07 at 00:58, Garance A Drosehn wrote: >> I am running XFree86-4.2. I was also doing that back when I first >> noticed this problem, and it is possible that was the first time I >> tried to rebuild mozilla since switching to XFree86-4.2. Right now >> that's the only port I have which is slightly out-of-date, so I think >> I'll rebuild that. If that doesn't work, maybe I'll try a buildworld. > > Could be. I'm running 4.2.0 as well, but I built -CURRENT after all > the binutils crap was sorted out. If you have some old ports that > might have been compiled under the old binutils, you may want to > upgrade them as well, then try rebuilding mozilla. In any event, keep > me posted. Okay, today I did a buildworld/installworld on current. I then did a force-rebuild of zip freetype gmake ORBit jpeg png libmng glib gtk lcms imake netpbm tiff2png gdk-pixbuf jbigkit Which seemed to be everything that mozilla would care about, except for rebuilding all of X11 yet again. I did seem to have some kind of mixup between the jbigkit and netpbm ports, but it looks like that was not relevant. After getting all of those to rebuild right, I still get the same error when I try to build mozilla: ../../coreconf/nsinstall/FreeBSD5.0_OPT.OBJ/nsinstall -R -m 775 FreeBSD/nsinstall /usr/ports/www/mozilla/work/mozilla/dist/bin gmake[4]: ../../coreconf/nsinstall/FreeBSD5.0_OPT.OBJ/nsinstall: Command not found And in my log file, the above is the first time that anything like 'FreeBSD5.*' is seen. I'm still quite willing to believe it's something odd about my freebsd-current system, but I'm running out of ideas of what might correct it. I may have to break down and actually look at the makefiles! --- Garance Alistair Drosehn = gad@gilead.acs.rpi.edu Senior Systems Programmer or gad@FreeBSD.org Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 8:43:32 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 94CDC37B416; Tue, 9 Apr 2002 08:43:29 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39FhTl55922; Tue, 9 Apr 2002 08:43:29 -0700 (PDT) (envelope-from marcus) Date: Tue, 9 Apr 2002 08:43:29 -0700 (PDT) From: Message-Id: <200204091543.g39FhTl55922@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Tue Apr 9 08:43:07 PDT 2002 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=36925 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 8:50:12 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FD0137B416 for ; Tue, 9 Apr 2002 08:50:08 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39Fo8858412; Tue, 9 Apr 2002 08:50:08 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Apr 2002 08:50:08 -0700 (PDT) Message-Id: <200204091550.g39Fo8858412@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Joe Marcus Clarke Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Reply-To: Joe Marcus Clarke Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/36925; it has been noted by GNATS. From: Joe Marcus Clarke To: freebsd-gnats-submit@FreeBSD.org, hsu@lelu.olari.bbnetworks.net Cc: Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Date: 09 Apr 2002 12:47:00 -0300 Please check to make sure your ORBit and oaf ports are up-to-date. The most recent versions as of this writing are: ORBit-0.5.15 oaf-0.6.8_1 Afterwards, make clean on bonobo, then try to rebuild. Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 12:55: 3 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by hub.freebsd.org (Postfix) with SMTP id 0759437B417 for ; Tue, 9 Apr 2002 12:54:59 -0700 (PDT) Received: (qmail 31133 invoked by uid 1001); 9 Apr 2002 19:54:58 -0000 Date: 9 Apr 2002 12:54:58 -0700 Date: Tue, 9 Apr 2002 12:54:58 -0700 From: Bill Swingle To: gnome@freebsd.org Subject: mozilla tinderbox Message-ID: <20020409195458.GA31008@dub.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9amGYk9869ThD9tj" Content-Disposition: inline User-Agent: Mutt/1.3.28i X-Operating-System: FreeBSD toxic.magnesium.net 4.5-STABLE FreeBSD 4.5-STABLE Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I just started working on getting a mozilla tinderbox set up for FreeBSD but I'm having a few problems. Has anyone else been working on this?=20 -Bill --=20 -=3D| Bill Swingle - -=3D| Every message PGP signed -=3D| Fingerprint: C1E3 49D1 EFC9 3EE0 EA6E 6414 5200 1C95 8E09 0223 -=3D| "Computers are useless. They can only give you answers" Pablo Picasso= =20 --9amGYk9869ThD9tj Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8s0cSUgAclY4JAiMRAm3nAKDBpLUZgBFFD120hG65MaavkwrwIQCffayJ /n0h/IAJfjh/pykKMUbC6wk= =yCPA -----END PGP SIGNATURE----- --9amGYk9869ThD9tj-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 13: 6:12 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (dhcp-64-102-60-50.cisco.com [64.102.60.50]) by hub.freebsd.org (Postfix) with ESMTP id 58CFE37B41B for ; Tue, 9 Apr 2002 13:05:51 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g39K51lJ056565; Tue, 9 Apr 2002 16:05:01 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g39K51ce056564; Tue, 9 Apr 2002 16:05:01 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: mozilla tinderbox From: Joe Marcus Clarke To: Bill Swingle Cc: gnome@FreeBSD.ORG In-Reply-To: <20020409195458.GA31008@dub.net> References: <20020409195458.GA31008@dub.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-y+9g1U8BbtMs5XGd5hkf" X-Mailer: Ximian Evolution 1.0.3 Date: 09 Apr 2002 17:05:01 -0300 Message-Id: <1018382701.308.66.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-y+9g1U8BbtMs5XGd5hkf Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2002-04-09 at 16:54, Bill Swingle wrote: > I just started working on getting a mozilla tinderbox set up for FreeBSD > but I'm having a few problems. Has anyone else been working on this?=20 I have not, but what problems are you running into? Joe >=20 > -Bill >=20 > --=20 > -=3D| Bill Swingle - > -=3D| Every message PGP signed > -=3D| Fingerprint: C1E3 49D1 EFC9 3EE0 EA6E 6414 5200 1C95 8E09 0223 > -=3D| "Computers are useless. They can only give you answers" Pablo Picas= so=20 >=20 >=20 >=20 --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-y+9g1U8BbtMs5XGd5hkf Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjyzSWwACgkQb2iPiv4Uz4eYPwCeIWw5QegHD1EOrJLhT3UQ3Ayq GkIAni6bLZIa9BLAJUd4NFCwFfmlsBUB =BN8b -----END PGP SIGNATURE----- --=-y+9g1U8BbtMs5XGd5hkf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 13:21:53 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D64937B430 for ; Tue, 9 Apr 2002 13:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KK2x10058; Tue, 9 Apr 2002 13:20:02 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Apr 2002 13:20:02 -0700 (PDT) Message-Id: <200204092020.g39KK2x10058@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Heikki Suonsivu Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Reply-To: Heikki Suonsivu Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/36925; it has been noted by GNATS. From: Heikki Suonsivu To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org, hsu@lelu.olari.bbnetworks.net Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Date: Tue, 9 Apr 2002 23:10:00 +0300 (EEST) Joe Marcus Clarke writes: > Please check to make sure your ORBit and oaf ports are up-to-date. The > most recent versions as of this writing are: > > ORBit-0.5.15 > oaf-0.6.8_1 > > Afterwards, make clean on bonobo, then try to rebuild. Already tried rebuilding those. Other ideas ? Is there anything like NetBSD make update for FreeBSD or other tool which would go through dependencies and upgrade stuff which has new versions or a later library is needed ? NetBSD make update is a bit excessive as it checks everything, including rebuilding everything dependent on particular application, but better than no tool at all. ls /var/db/pkg looks like this: ImageMagick-5.2.3 Mesa-3.2.1_1 ORBit-0.5.15 ORBit-0.5.4 QuakeForge-0.1.1 XFree86-aoutlibs-3.3.3 aalib-1.2 acroread-4.05 autoconf-2.13 autoconf213-2.13.000227_1 automake-1.4 bash-2.04 bison-1.33_1 bzip2-1.0.1 cclient-2001,1 cvsup-16.1 cvsup-16.1e dagrab-0.3.5 dap-2.1.1 db3-3.2.9_3,1 doom-1.8 emacs-19.34b enscript-a4-1.6.1 esound-0.2.22 fileutils-4.0 freetype-1.3.1 freetype-1.3.1_1 freetype2-2.0.9 frotz-2.41 gconf-1.0.9 gd-1.8.3 gd-1.8.4_4 gdbm-1.8.0 gdk-pixbuf-0.13.0_1 gdk-pixbuf-0.9.0 gettext-0.10.35 gettext-0.10.40 ghostscript-5.50a ghostview-1.5 gimp-1.1.29 glame-0.2.0 glib-1.2.8 glibwww-0.2_1 gmake-3.79.1 gnomeaudio-1.0.0 gnomecanvas-0.16.0 gnomecontrolcenter-1.2.2_1 gnomecontrolcenter-1.4.0.5 gnomecore-1.2.4 gnomelibs-1.2.8_1 gnomelibs-1.4.1.4_1 gnomemimedata-1.0.1 gnomeprint-0.35 gnomevfs-1.0.5_1 gnuplot-3.7.1_1 gtk-1.2.10_2 gtk-1.2.8 guile-1.4 gview-0.1.15 hdf-4.1r3 imlib-1.9.11_1 imlib-1.9.8.1 iv-3.2a javavmwrapper-1.1 jbigkit-1.2 jpeg-6b jpeg-6b_1 jpeginfo-1.5a jre-1.1.8 kdc2tiff-0.31 lcms-1.07_1 lha-1.14g libaudiofile-0.1.9 libcdaudio-0.99.4 libgnugetopt-1.1 libgtop-1.0.10 libiconv-1.7_1 libiconv-1.7_2 libimg-1.2.2 libmikmod-3.1.9 libmng-1.0.3 libogg-1.0b4,1 libole2-0.2.4 libproplist-0.10.1 libtool-1.3.4_1 libtool-1.3.4_2 libungif-4.1.0b1 libunicode-0.4_2 libvorbis-1.0b4,1 libworkman-1.4 libwww-5.3.2 libxml-1.8.10 libxml-1.8.17 linux-gtk-1.2 linux-jpeg-6b.9 linux-netscape-6 linux-netscape-navigator-4.76 linux-netscape-navigator-4.78 linux-png-1.0.3 linux-realplayer-7.cs1 linux-realplayer-8.cs1 linux-realplayer-8.cs2 linux_base-7.1 lynx-2.8.3.1 lzo-1.07 m4-1.4 mozilla-0.9.5,1 mozilla-0.9.6,1 mozilla-M18 mpeg2codec-1.2 mpeg_lib-1.3.1 mpeg_play-2.4 mplayer-0.50.0.1 mplayer-fonts-0.18 nasm-0.98 netcdf-3.5.0 netpbm-9.20 netpbm-9.8 netscape-navigator-4.76 netscape-remote-1.0 netscape-wrapper-2000.07.07 oaf-0.6.8_1 open-motif-2.1.30_1 openldap-1.2.13 p5-Digest-MD5-2.16 p5-HTML-Parser-3.25 p5-HTML-Tagset-3.03 p5-MD5-2.02 p5-MIME-Base64-2.12 p5-Net-1.0703 p5-URI-1.17 p5-libwww-5.53 pccts-1.33.22 pine-4.40 pkgconfig-0.12.0 pm3-base-1.1.15 pm3-forms-1.1.15 pm3-gui-1.1.15 pm3-net-1.1.15 png-1.0.8_1 png-1.2.0 popt-1.5 pspell-0.12.2_1 pstree-2.16 python-2.0 qt-1.45_1 qvplay-0.94 rpm-3.0.6_4 rpm2cpio-1.0 rsync-2.4.6 ruby-1.6.2.p3 scrollkeeper-0.2_3 sdl-1.0.8_1 sdl-1.2.2 staroffice-6.0 sunclock-1.5 svgalib-1.4.2_1 t1lib-1.0.1 tcl-8.2.3 textutils-2.0 tiff-3.5.5 tk-8.2.3 transfig-3.2.3 unzip-5.41 w3mir-1.0.10 win32-codecs-010122.1.0.18 windowmaker-0.62.1 wine-2001.08.24 wmtz-0.5 x3arth-1.1 xanim-2.80.1 xcd-1.7 xcdplayer-2.2 xearth-1.1 xforms-0.88,1 xglobe-0.5 xli-1.17.0 xloadimage-4.1.9 xmms-gnome-1.2.4_1 xmovie-1.5.2.1 xpdf-0.91 xphoon-1991.9.18 xplanet-0.73 xv-3.10a xv-3.10a_2 xwave-2.2 zip-2.3 zsh-3.0.8 > Joe -- Heikki Suonsivu / Taysikuu 10 C 83 / FI-02210 Espoo / FINLAND, heikki@suonsivu.net mobile +358-40-5519679 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 13:21:56 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C72B937B433 for ; Tue, 9 Apr 2002 13:20:05 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KK4J10109; Tue, 9 Apr 2002 13:20:04 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Apr 2002 13:20:04 -0700 (PDT) Message-Id: <200204092020.g39KK4J10109@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Joe Marcus Clarke Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Reply-To: Joe Marcus Clarke Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/36925; it has been noted by GNATS. From: Joe Marcus Clarke To: Heikki Suonsivu Cc: freebsd-gnats-submit@FreeBSD.org, hsu@lelu.olari.bbnetworks.net Subject: Re: ports/36925: bonobo-1.0.19 does not compile, type DynamicAny_DynAny undefined Date: 09 Apr 2002 17:19:22 -0300 On Tue, 2002-04-09 at 17:10, Heikki Suonsivu wrote: > > Joe Marcus Clarke writes: > > Please check to make sure your ORBit and oaf ports are up-to-date. The > > most recent versions as of this writing are: > > > > ORBit-0.5.15 > > oaf-0.6.8_1 > > > > Afterwards, make clean on bonobo, then try to rebuild. > > Already tried rebuilding those. Other ideas ? > > Is there anything like NetBSD make update for FreeBSD or other tool which > would go through dependencies and upgrade stuff which has new versions or a > later library is needed ? NetBSD make update is a bit excessive as it > checks everything, including rebuilding everything dependent on particular > application, but better than no tool at all. You still have an old version of ORBit lying around. Remove both versions of ORBit, then reinstall 0.5.15. See if that fixes your problem. To clarify, this doesn't happen to me. Joe > > ls /var/db/pkg looks like this: > > ImageMagick-5.2.3 > Mesa-3.2.1_1 > ORBit-0.5.15 > ORBit-0.5.4 > QuakeForge-0.1.1 > XFree86-aoutlibs-3.3.3 > aalib-1.2 > acroread-4.05 > autoconf-2.13 > autoconf213-2.13.000227_1 > automake-1.4 > bash-2.04 > bison-1.33_1 > bzip2-1.0.1 > cclient-2001,1 > cvsup-16.1 > cvsup-16.1e > dagrab-0.3.5 > dap-2.1.1 > db3-3.2.9_3,1 > doom-1.8 > emacs-19.34b > enscript-a4-1.6.1 > esound-0.2.22 > fileutils-4.0 > freetype-1.3.1 > freetype-1.3.1_1 > freetype2-2.0.9 > frotz-2.41 > gconf-1.0.9 > gd-1.8.3 > gd-1.8.4_4 > gdbm-1.8.0 > gdk-pixbuf-0.13.0_1 > gdk-pixbuf-0.9.0 > gettext-0.10.35 > gettext-0.10.40 > ghostscript-5.50a > ghostview-1.5 > gimp-1.1.29 > glame-0.2.0 > glib-1.2.8 > glibwww-0.2_1 > gmake-3.79.1 > gnomeaudio-1.0.0 > gnomecanvas-0.16.0 > gnomecontrolcenter-1.2.2_1 > gnomecontrolcenter-1.4.0.5 > gnomecore-1.2.4 > gnomelibs-1.2.8_1 > gnomelibs-1.4.1.4_1 > gnomemimedata-1.0.1 > gnomeprint-0.35 > gnomevfs-1.0.5_1 > gnuplot-3.7.1_1 > gtk-1.2.10_2 > gtk-1.2.8 > guile-1.4 > gview-0.1.15 > hdf-4.1r3 > imlib-1.9.11_1 > imlib-1.9.8.1 > iv-3.2a > javavmwrapper-1.1 > jbigkit-1.2 > jpeg-6b > jpeg-6b_1 > jpeginfo-1.5a > jre-1.1.8 > kdc2tiff-0.31 > lcms-1.07_1 > lha-1.14g > libaudiofile-0.1.9 > libcdaudio-0.99.4 > libgnugetopt-1.1 > libgtop-1.0.10 > libiconv-1.7_1 > libiconv-1.7_2 > libimg-1.2.2 > libmikmod-3.1.9 > libmng-1.0.3 > libogg-1.0b4,1 > libole2-0.2.4 > libproplist-0.10.1 > libtool-1.3.4_1 > libtool-1.3.4_2 > libungif-4.1.0b1 > libunicode-0.4_2 > libvorbis-1.0b4,1 > libworkman-1.4 > libwww-5.3.2 > libxml-1.8.10 > libxml-1.8.17 > linux-gtk-1.2 > linux-jpeg-6b.9 > linux-netscape-6 > linux-netscape-navigator-4.76 > linux-netscape-navigator-4.78 > linux-png-1.0.3 > linux-realplayer-7.cs1 > linux-realplayer-8.cs1 > linux-realplayer-8.cs2 > linux_base-7.1 > lynx-2.8.3.1 > lzo-1.07 > m4-1.4 > mozilla-0.9.5,1 > mozilla-0.9.6,1 > mozilla-M18 > mpeg2codec-1.2 > mpeg_lib-1.3.1 > mpeg_play-2.4 > mplayer-0.50.0.1 > mplayer-fonts-0.18 > nasm-0.98 > netcdf-3.5.0 > netpbm-9.20 > netpbm-9.8 > netscape-navigator-4.76 > netscape-remote-1.0 > netscape-wrapper-2000.07.07 > oaf-0.6.8_1 > open-motif-2.1.30_1 > openldap-1.2.13 > p5-Digest-MD5-2.16 > p5-HTML-Parser-3.25 > p5-HTML-Tagset-3.03 > p5-MD5-2.02 > p5-MIME-Base64-2.12 > p5-Net-1.0703 > p5-URI-1.17 > p5-libwww-5.53 > pccts-1.33.22 > pine-4.40 > pkgconfig-0.12.0 > pm3-base-1.1.15 > pm3-forms-1.1.15 > pm3-gui-1.1.15 > pm3-net-1.1.15 > png-1.0.8_1 > png-1.2.0 > popt-1.5 > pspell-0.12.2_1 > pstree-2.16 > python-2.0 > qt-1.45_1 > qvplay-0.94 > rpm-3.0.6_4 > rpm2cpio-1.0 > rsync-2.4.6 > ruby-1.6.2.p3 > scrollkeeper-0.2_3 > sdl-1.0.8_1 > sdl-1.2.2 > staroffice-6.0 > sunclock-1.5 > svgalib-1.4.2_1 > t1lib-1.0.1 > tcl-8.2.3 > textutils-2.0 > tiff-3.5.5 > tk-8.2.3 > transfig-3.2.3 > unzip-5.41 > w3mir-1.0.10 > win32-codecs-010122.1.0.18 > windowmaker-0.62.1 > wine-2001.08.24 > wmtz-0.5 > x3arth-1.1 > xanim-2.80.1 > xcd-1.7 > xcdplayer-2.2 > xearth-1.1 > xforms-0.88,1 > xglobe-0.5 > xli-1.17.0 > xloadimage-4.1.9 > xmms-gnome-1.2.4_1 > xmovie-1.5.2.1 > xpdf-0.91 > xphoon-1991.9.18 > xplanet-0.73 > xv-3.10a > xv-3.10a_2 > xwave-2.2 > zip-2.3 > zsh-3.0.8 > > > Joe > > -- > Heikki Suonsivu / Taysikuu 10 C 83 / FI-02210 Espoo / FINLAND, > heikki@suonsivu.net mobile +358-40-5519679 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 15:47:38 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from glass.cl.msu.edu (glass.cl.msu.edu [35.8.1.176]) by hub.freebsd.org (Postfix) with ESMTP id 9920E37B405; Tue, 9 Apr 2002 15:47:31 -0700 (PDT) Received: from c1662992b (12-245-169-229.client.attbi.com [12.245.169.229]) by glass.cl.msu.edu (8.11.6/8.11.6) with SMTP id g39MiAF79691; Tue, 9 Apr 2002 18:44:13 -0400 (EDT) (envelope-from glassjos@msu.edu) From: "Joseph Glass" To: Cc: Subject: FreeBSD Port: guile-gnome-0.20_3 Date: Tue, 9 Apr 2002 18:42:57 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm having trouble installing the guile-gnome port (which is being installed from doing a make of the gnome port). When I do a make install, it complains with the following error message. However, the guile-gtk directory is existent in the /usr/ports/x11-toolkits directory, and the port is installed successfully. I am running off of a fresh install of FreeBSD 4.5. su-2.05a# pkg_info | grep guile-gtk guile-gtk-0.20_1 Guile binding library for GTK+ su-2.05a# make install ===> Building for guile-gnome-0.20_3 make all-recursive Making all in guile-gnome Making all in zvt Making all in bonobo Making all in gtkhtml guile -l ../../guile-gtk/gtk/config.scm -s ./../../guile-gtk/build-guile-gtk -I ../../guile-gtk glue ./gtkhtml.defs > .tmpg && mv .tmpg gtkhtml-glue.c ERROR: In procedure open-file: ERROR: No such file or directory: "../../guile-gtk/gtk/config.scm" *** Error code 2 Stop in /usr/home/usr.ports/x11-toolkits/guile-gnome/work/gnome-guile-0.20/guile-gno me/gtkhtml. *** Error code 1 Stop in /usr/home/usr.ports/x11-toolkits/guile-gnome/work/gnome-guile-0.20/guile-gno me. *** Error code 1 Stop in /usr/home/usr.ports/x11-toolkits/guile-gnome/work/gnome-guile-0.20. *** Error code 1 Stop in /usr/home/usr.ports/x11-toolkits/guile-gnome/work/gnome-guile-0.20. *** Error code 1 Stop in /usr/home/usr.ports/x11-toolkits/guile-gnome. Any help would be appreciated. Thank you, Joe Glass To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 17:20: 5 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id AB12E37B41B; Tue, 9 Apr 2002 17:19:58 -0700 (PDT) Received: from shumai.marcuscom.com (marcus@shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3A0JgFf018619; Tue, 9 Apr 2002 20:19:42 -0400 (EDT) (envelope-from marcus@marcuscom.com) Subject: Re: FreeBSD Port: guile-gnome-0.20_3 From: Joe Marcus Clarke To: Joseph Glass Cc: gnome@FreeBSD.ORG, ports@FreeBSD.ORG In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-z3VVw8y6kpZSyAX8jQGa" X-Mailer: Ximian Evolution 1.0.3 Date: 09 Apr 2002 21:20:19 -0300 Message-Id: <1018398019.42371.3.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-z3VVw8y6kpZSyAX8jQGa Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2002-04-09 at 19:42, Joseph Glass wrote: > Hi, I'm having trouble installing the guile-gnome port (which is being > installed from doing a make of the gnome port). When I do a make install= , > it complains with the following error message. However, the guile-gtk > directory is existent in the /usr/ports/x11-toolkits directory, and the p= ort > is installed successfully. I am running off of a fresh install of FreeBS= D > 4.5. >=20 [snip] Can you do a make clean in the guile-gnome directory, then send me the whole output of make all? Also, please send me the full pkg_info output. Something must not be installed correctly. The config.scm file shouldn't be touched in the guile-gnome build. Joe --=-z3VVw8y6kpZSyAX8jQGa Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjyzhUMACgkQb2iPiv4Uz4elWwCgnNyJQbCFV8FJcOfFS8Gjd0Oj ZO8An1EDB0ucS/qEFcjxUr9trVv4hw0q =0J8Z -----END PGP SIGNATURE----- --=-z3VVw8y6kpZSyAX8jQGa-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 19:50:11 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DFF937B404 for ; Tue, 9 Apr 2002 19:50:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A2o3f25724; Tue, 9 Apr 2002 19:50:03 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Apr 2002 19:50:03 -0700 (PDT) Message-Id: <200204100250.g3A2o3f25724@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Garance A Drosehn Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Garance A Drosehn To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: Tue, 9 Apr 2002 22:42:39 -0400 I rebuilt an even larger number of ports on my freebsd-current, and still couldn't build mozilla. I then rebooted into my freebsd-stable machine, just to see if I can build it there (in general I am almost always running on my current system). I cvsup'ed my ports collection, and updated several ports which have nothing to do with mozillia, and that went fine. Then I tried to 'portupgrade -Rr mozilla', and that died complaining about some configuration problem when trying to rebuild ORBit. I force-rebuild my autoconfig ports, and also upgraded to the latest stable via buildworld/installworld. It still fails with a configure error. I tried rebuilding mozilla without doing ORBit, and that died with another configuration error (ie, not the same error that I get trying to build mozilla on my freebsd-current system). At this point, I'm afraid I'm going to say that I'm sick of the whole mess. I don't know what's wrong, but I've spent much more than 24 hours trying to rebuild things in a few dozen different ways, and mozilla just isn't worth that much of my time. Hopefully this problem is specific to my machine, and some day I'll figure out out or happen to rebuild whatever is broken. If you find something which DOES seem connected to the problem I'm seeing, please let me know. thanks. --- Garance Alistair Drosehn = gad@gilead.acs.rpi.edu Senior Systems Programmer or gad@FreeBSD.org Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Tue Apr 9 21:20:18 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E76D37B41C for ; Tue, 9 Apr 2002 21:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A4K2T45923; Tue, 9 Apr 2002 21:20:02 -0700 (PDT) (envelope-from gnats) Date: Tue, 9 Apr 2002 21:20:02 -0700 (PDT) Message-Id: <200204100420.g3A4K2T45923@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Joe Marcus Clarke Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Joe Marcus Clarke Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Joe Marcus Clarke To: Garance A Drosehn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: 10 Apr 2002 01:14:48 -0300 --=-xhc2RKoa3bt9aQoelf8E Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2002-04-09 at 23:42, Garance A Drosehn wrote: > I rebuilt an even larger number of ports on my freebsd-current, and=20 > still couldn't build mozilla. I then rebooted into my freebsd-stable=20 > machine, just to see if I can build it there (in general I am almost=20 > always running on my current system). I cvsup'ed my ports collection,=20 > and updated several ports which have nothing to do with mozillia, and=20 > that went fine. >=20 > Then I tried to 'portupgrade -Rr mozilla', and that died complaining=20 > about some configuration problem when trying to rebuild ORBit. I=20 > force-rebuild my autoconfig ports, and also upgraded to the latest=20 > stable via buildworld/installworld. It still fails with a configure=20 > error. I tried rebuilding mozilla without doing ORBit, and that died=20 > with another configuration error (ie, not the same error that I get=20 > trying to build mozilla on my freebsd-current system). Chances are your ORBit problem can be fixed by making sure gettext and gettext-old are both installed and up-to-date. >=20 > At this point, I'm afraid I'm going to say that I'm sick of the whole=20 > mess. I don't know what's wrong, but I've spent much more than 24 hours=20 > trying to rebuild things in a few dozen different ways, and mozilla just=20 > isn't worth that much of my time. Hopefully this problem is specific to=20 > my machine, and some day I'll figure out out or happen to rebuild=20 > whatever is broken. If you find something which DOES seem connected to=20 > the problem I'm seeing, please let me know. thanks. I'll keep looking into it. Working in tech support by day gives me an undying need to solve problems ;-}. Thanks for the update. Joe >=20 > --- > Garance Alistair Drosehn =3D gad@gilead.acs.rpi.edu > Senior Systems Programmer or gad@FreeBSD.org > Rensselaer Polytechnic Institute; Troy NY USA >=20 >=20 --=-xhc2RKoa3bt9aQoelf8E Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjyzvDgACgkQb2iPiv4Uz4e2TgCbBtLZjLyFBk5hU63uZQ276C13 j6gAnicNSJ+HaN5moGn/EV7Jt/Rj/ptB =fCt5 -----END PGP SIGNATURE----- --=-xhc2RKoa3bt9aQoelf8E-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 5:15: 2 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from rizzo.jerky.net (rizzo.jerky.net [204.57.55.99]) by hub.freebsd.org (Postfix) with ESMTP id 1D33037B420 for ; Wed, 10 Apr 2002 05:10:52 -0700 (PDT) Received: from phreaker.net (burton.hotpop.com [204.57.55.31]) by rizzo.jerky.net (Postfix) with SMTP id 32DB031010 for ; Wed, 10 Apr 2002 12:10:48 +0000 (UTC) Received: from co3025630a (c17804.eburwd3.vic.optusnet.com.au [210.49.197.158]) by zagnut.hotpop.com (Postfix) with SMTP id 3D10550226 for ; Wed, 10 Apr 2002 12:01:43 +0000 (UTC) Message-ID: <000a01c1e087$81ab0480$9ec531d2@co3025630a> From: "Kosta K" To: Subject: gnomeicu Date: Wed, 10 Apr 2002 22:01:48 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C1E0DB.501026E0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-HotPOP: ----------------------------------------------- Sent By HotPOP.com FREE Email Get your FREE POP email at www.HotPOP.com ----------------------------------------------- Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C1E0DB.501026E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable is there any expected updates of 0.98 to 0.98.2? Thanks ------=_NextPart_000_0007_01C1E0DB.501026E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
is there any expected updates of 0.98 = to=20 0.98.2?
 
Thanks
------=_NextPart_000_0007_01C1E0DB.501026E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 7:35:56 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from ler-freebie.iadfw.net (ler-freebie.iadfw.net [206.66.13.221]) by hub.freebsd.org (Postfix) with ESMTP id 2726C37B404; Wed, 10 Apr 2002 07:35:53 -0700 (PDT) Received: from ler-freebie.iadfw.net (localhost [127.0.0.1]) by ler-freebie.iadfw.net (8.12.2/8.12.2) with ESMTP id g3AEZqFM064011; Wed, 10 Apr 2002 09:35:52 -0500 (CDT) (envelope-from ler@ler-freebie.iadfw.net) Received: (from ler@localhost) by ler-freebie.iadfw.net (8.12.2/8.12.2/Submit) id g3AEZqrg064010; Wed, 10 Apr 2002 09:35:52 -0500 (CDT) Date: Wed, 10 Apr 2002 09:35:52 -0500 From: Larry Rosenman To: ade@freebsd.org, gnome@freebsd.org Cc: freebsd-ports@freebsd.org Subject: evolution 1.0.3: TZ problem with DST Message-ID: <20020410143552.GA62584@ler-freebie.iadfw.net> Reply-To: ler@airmail.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I discovered (and reported to the Evolution team) a bug where on FreeBSD the timezone is adjusted to be one hour off from reality when DST is in effect. The Evolution team fixed it in CVS for 1.0.4, but I don't know when it will be out. Can the port be modified to patch camel/camel-mime-message.c to remove the lines around line 212 that set offset += 100? Thanks, LER -- Larry Rosenman, Sr. Network Engineer, Internet America, Inc. E-Mail: ler@airmail.net Phone: +1 214-861-2571, Fax: 214-861-2663 US Mail: 350 N. St. Paul, Suite 3000, Dallas, TX 75201 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 8: 5: 9 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id E0CF637B404; Wed, 10 Apr 2002 08:05:03 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0RPQ; Wed, 10 Apr 2002 18:06:31 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g3AF5LR92134; Wed, 10 Apr 2002 18:05:21 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204101505.g3AF5LR92134@vega.vega.com> Subject: Re: evolution 1.0.3: TZ problem with DST To: ler@airmail.net Date: Wed, 10 Apr 2002 18:05:21 +0300 (EEST) Cc: ade@FreeBSD.ORG, gnome@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG In-Reply-To: <20020410143552.GA62584@ler-freebie.iadfw.net> from "Larry Rosenman" at Apr 10, 2002 09:35:52 AM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I discovered (and reported to the Evolution team) a bug where on > FreeBSD the timezone is adjusted to be one hour off from reality when > DST is in effect. > > The Evolution team fixed it in CVS for 1.0.4, but I don't know when it > will be out. > > Can the port be modified to patch > > camel/camel-mime-message.c > > to remove the lines around line 212 > that set offset += 100? Not a problem, but please submit a patch instead of a verbal description. Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 8:21: 8 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from ler-freebie.iadfw.net (ler-freebie.iadfw.net [206.66.13.221]) by hub.freebsd.org (Postfix) with ESMTP id 365EE37B405; Wed, 10 Apr 2002 08:20:59 -0700 (PDT) Received: from ler-freebie.iadfw.net (localhost [127.0.0.1]) by ler-freebie.iadfw.net (8.12.2/8.12.2) with ESMTP id g3AFKwFM033742; Wed, 10 Apr 2002 10:20:58 -0500 (CDT) (envelope-from ler@ler-freebie.iadfw.net) Received: (from ler@localhost) by ler-freebie.iadfw.net (8.12.2/8.12.2/Submit) id g3AFKwcC033741; Wed, 10 Apr 2002 10:20:58 -0500 (CDT) Date: Wed, 10 Apr 2002 10:20:58 -0500 From: Larry Rosenman To: Maxim Sobolev Cc: ade@FreeBSD.org, gnome@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: evolution 1.0.3: TZ problem with DST Message-ID: <20020410152058.GA33015@ler-freebie.iadfw.net> References: <20020410143552.GA62584@ler-freebie.iadfw.net> <200204101505.g3AF5LR92134@vega.vega.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204101505.g3AF5LR92134@vega.vega.com> User-Agent: Mutt/1.3.28i X-Mailer: Mutt http://www.mutt.org/ Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Maxim Sobolev [020410 10:18]: > > > > I discovered (and reported to the Evolution team) a bug where on > > FreeBSD the timezone is adjusted to be one hour off from reality when > > DST is in effect. > > > > The Evolution team fixed it in CVS for 1.0.4, but I don't know when it > > will be out. > > > > Can the port be modified to patch > > > > camel/camel-mime-message.c > > > > to remove the lines around line 212 > > that set offset += 100? > > Not a problem, but please submit a patch instead of a verbal description. > > Thanks! > > -Maxim Here is my quickie patch, I'm not sure how y'all want to do it. it definately fixes FreeBSD.... *** camel-mime-message.c.orig Wed Apr 10 10:19:38 2002 --- camel-mime-message.c Wed Apr 10 09:31:51 2002 *************** *** 209,216 **** --- 209,218 ---- tz = -local->tm_gmtoff; #endif offset = -(((tz/60/60) * 100) + (tz/60 % 60)); + #if 0 if (local->tm_isdst>0) offset += 100; + #endif } message->date = date; message->date_offset = offset; -- Larry Rosenman, Sr. Network Engineer, Internet America, Inc. E-Mail: ler@airmail.net Phone: +1 214-861-2571, Fax: 214-861-2663 US Mail: 350 N. St. Paul, Suite 3000, Dallas, TX 75201 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 8:58:40 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (dhcp-64-102-60-50.cisco.com [64.102.60.50]) by hub.freebsd.org (Postfix) with ESMTP id 1163E37B422 for ; Wed, 10 Apr 2002 08:58:28 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3AFwOWQ027484; Wed, 10 Apr 2002 11:58:24 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3AFwOxu027483; Wed, 10 Apr 2002 11:58:24 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: gnomeicu From: Joe Marcus Clarke To: Kosta K Cc: gnome@FreeBSD.ORG In-Reply-To: <000a01c1e087$81ab0480$9ec531d2@co3025630a> References: <000a01c1e087$81ab0480$9ec531d2@co3025630a> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-OCFXpkHlUGSOj1gKLuWa" X-Mailer: Ximian Evolution 1.0.3 Date: 10 Apr 2002 12:58:24 -0300 Message-Id: <1018454304.346.15.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-OCFXpkHlUGSOj1gKLuWa Content-Type: multipart/mixed; boundary="=-fMtJQvyNWqDmiG/4EBme" --=-fMtJQvyNWqDmiG/4EBme Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2002-04-10 at 09:01, Kosta K wrote: > is there any expected updates of 0.98 to 0.98.2? Attached is a patch. It works for me, let me know if it works for you.=20 If Maxim approves, I can commit this. Joe >=20 > Thanks --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-fMtJQvyNWqDmiG/4EBme Content-Disposition: attachment; filename=gnomeicu.diff Content-Type: text/x-patch; name=gnomeicu.diff; charset=ISO8859-1 Content-Transfer-Encoding: quoted-printable diff -ruN gnomeicu.orig/Makefile gnomeicu/Makefile --- net/gnomeicu.orig/Makefile Wed Apr 10 11:44:14 2002 +++ net/gnomeicu/Makefile Wed Apr 10 11:55:39 2002 @@ -6,18 +6,20 @@ # =20 PORTNAME=3D gnomeicu -PORTVERSION=3D 0.98 +PORTVERSION=3D 0.98.2 CATEGORIES=3D net gnome MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=3D gnomeicu +MASTER_SITE_SUBDIR=3D gnomeicu =20 MAINTAINER=3D gnome@FreeBSD.org =20 +USE_BZIP2=3D yes USE_X_PREFIX=3D yes USE_GNOME=3D yes GNU_CONFIGURE=3D yes USE_GMAKE=3D yes -BUILD_DEPENDS+=3D gnet-config:${PORTSDIR}/net/gnet +BUILD_DEPENDS+=3D gnet-config:${PORTSDIR}/net/gnet \ + msgfmt-new:${PORTSDIR}/devel/gettext .if defined(WITH_DANTE) LIB_DEPENDS+=3D socks.1:${PORTSDIR}/net/dante SOCKSFLAGS=3D -Dconnect=3DRconnect -Dbind=3DRbind -Dgetsockname=3DRgetsock= name \ @@ -35,10 +37,13 @@ SOCKSLIBS=3D -lsocks5 .endif =20 -CONFIGURE_ARGS=3D --with-statusmenu +CONFIGURE_ARGS=3D --with-statusmenu CONFIGURE_ENV=3D CPPFLAGS=3D"${SOCKSFLAGS} -I${LOCALBASE}/include" \ LDFLAGS=3D"-L${LOCALBASE}/lib" LIBS=3D"-liconv ${SOCKSLIBS}" \ - CFLAGS=3D"${CFLAGS}" + CFLAGS=3D"${CFLAGS}" \ + MSGFMT=3D${LOCALBASE}/bin/msgfmt-new \ + XGETTEXT=3D${LOCALBASE}/bin/xgettext-new +CONFIGURE_TARGET=3D --target=3D${MACHINE_ARCH}-unknown-freebsd${OSREL} =20 pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ diff -ruN gnomeicu.orig/distinfo gnomeicu/distinfo --- net/gnomeicu.orig/distinfo Wed Apr 10 11:44:14 2002 +++ net/gnomeicu/distinfo Wed Apr 10 11:56:40 2002 @@ -1 +1 @@ -MD5 (gnomeicu-0.98.tar.gz) =3D aed40d1993611c3c29e12dfb2c9d5135 +MD5 (gnomeicu-0.98.2.tar.bz2) =3D 31ec9a4c3a88ac251c304b05bfb5edc8 diff -ruN gnomeicu.orig/pkg-plist gnomeicu/pkg-plist --- net/gnomeicu.orig/pkg-plist Wed Apr 10 11:44:14 2002 +++ net/gnomeicu/pkg-plist Wed Apr 10 11:52:26 2002 @@ -4,7 +4,12 @@ etc/sound/events/GnomeICU.soundlist share/gnome/applets/Network/GnomeICU.desktop share/gnome/apps/Internet/GnomeICU.desktop +share/gnome/gnomeicu/glade/addcontact.glade +share/gnome/gnomeicu/glade/auth.glade +share/gnome/gnomeicu/glade/history.glade share/gnome/gnomeicu/glade/main.glade +share/gnome/gnomeicu/glade/message.glade +share/gnome/gnomeicu/glade/user_info.glade share/gnome/gnomeicu/icons/Default/gnomeicu-animation.png share/gnome/gnomeicu/icons/Default/gnomeicu-auth.png share/gnome/gnomeicu/icons/Default/gnomeicu-away.png --=-fMtJQvyNWqDmiG/4EBme-- --=-OCFXpkHlUGSOj1gKLuWa Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy0YSAACgkQb2iPiv4Uz4fVlQCfZ1GpUFIOQ6iLzPkFXxUUd5h6 5akAn2foKhMU3qSOI3exhfZsAVrCU37W =/N+T -----END PGP SIGNATURE----- --=-OCFXpkHlUGSOj1gKLuWa-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 9: 6:52 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 9299137B405 for ; Wed, 10 Apr 2002 09:06:49 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0RVH; Wed, 10 Apr 2002 19:08:17 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g3AG78D92390; Wed, 10 Apr 2002 19:07:08 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204101607.g3AG78D92390@vega.vega.com> Subject: Re: gnomeicu To: marcus@marcuscom.com (Joe Marcus Clarke) Date: Wed, 10 Apr 2002 19:07:08 +0300 (EEST) Cc: kosta_k@phreaker.net (Kosta K), gnome@FreeBSD.ORG In-Reply-To: <1018454304.346.15.camel@gyros.marcuscom.com> from "Joe Marcus Clarke" at Apr 10, 2002 12:58:24 PM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > On Wed, 2002-04-10 at 09:01, Kosta K wrote: > > is there any expected updates of 0.98 to 0.98.2? > > Attached is a patch. It works for me, let me know if it works for you.=20 > If Maxim approves, I can commit this. Looks fine. Approved. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 15:40:11 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E143637B416 for ; Wed, 10 Apr 2002 15:40:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AMe2m21955; Wed, 10 Apr 2002 15:40:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Apr 2002 15:40:02 -0700 (PDT) Message-Id: <200204102240.g3AMe2m21955@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Garance A Drosehn Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Garance A Drosehn To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: Wed, 10 Apr 2002 18:35:20 -0400 On Wednesday, April 10, 2002, at 12:14 AM, Joe Marcus Clarke wrote: > On Tue, 2002-04-09 at 23:42, Garance A Drosehn wrote: >> Then I tried to 'portupgrade -Rr mozilla' [on freebsd-stable], and >> that died complaining about some configuration problem when trying >> to rebuild ORBit. [...] I tried rebuilding mozilla without doing >> ORBit, and that died with another configuration error (ie, not the >> same error that I get trying to build mozilla on my freebsd-current >> system). > > Chances are your ORBit problem can be fixed by making sure gettext > and gettext-old are both installed and up-to-date. I rebuilt both gettext and gettext-old, and then I was able to upgrade to the latest ORBit. Thanks. I then tried mozilla on my freebsd-stable system. It did not get the configuration-time error that I mentioned above, but it did fail once it got to the same coreconf/nsinstall step where it dies when I try to build it on my freebsd-current system. >> If you find something which DOES seem connected to the problem >> I'm seeing, please let me know. thanks. > > I'll keep looking into it. Working in tech support by day gives > me an undying need to solve problems ;-}. Thanks for the update. Thanks for the reply. It was *really* frustrating to see it die at a different spot on my freebsd-stable system! I may look into this again sometime later on, but probably not this week. I really have to concentrate on my tax forms for the rest of this week!! :-) --- Garance Alistair Drosehn = gad@gilead.acs.rpi.edu Senior Systems Programmer or gad@FreeBSD.org Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 16:21: 6 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C2B5137B43C for ; Wed, 10 Apr 2002 16:20:02 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ANK2131286; Wed, 10 Apr 2002 16:20:02 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Apr 2002 16:20:02 -0700 (PDT) Message-Id: <200204102320.g3ANK2131286@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Garance A Drosehn Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Garance A Drosehn To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: Wed, 10 Apr 2002 19:11:32 -0400 On Wednesday, April 10, 2002, at 12:14 AM, Joe Marcus Clarke wrote: > On Tue, 2002-04-09 at 23:42, Garance A Drosehn wrote: >> Then I tried to 'portupgrade -Rr mozilla', and that died complaining >> about some configuration problem when trying to rebuild ORBit. > > Chances are your ORBit problem can be fixed by making sure gettext > and gettext-old are both installed and up-to-date. I forgot to mention: on my freebsd-current system, I only had the gettext port. I did not have gettext-old installed. I did install that and rebuilt both of them on my freebsd-current system and tried to build mozilla again, but that did not fix the problem. --- Garance Alistair Drosehn = gad@gilead.acs.rpi.edu Senior Systems Programmer or gad@FreeBSD.org Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Wed Apr 10 22: 0:15 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D141A37B404 for ; Wed, 10 Apr 2002 22:00:10 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B50Au96286; Wed, 10 Apr 2002 22:00:10 -0700 (PDT) (envelope-from gnats) Date: Wed, 10 Apr 2002 22:00:10 -0700 (PDT) Message-Id: <200204110500.g3B50Au96286@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Garance A Drosehn Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Garance A Drosehn To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: Thu, 11 Apr 2002 00:55:32 -0400 On Wednesday, April 10, 2002, at 12:14 AM, Joe Marcus Clarke wrote: > On Tue, 2002-04-09 at 23:42, Garance A Drosehn wrote: >> I don't know what's wrong, but I've spent much more than 24 hours >> trying to rebuild things in a few dozen different ways, and mozilla >> just isn't worth that much of my time. > > I'll keep looking into it. Working in tech support by day gives > me an undying need to solve problems ;-}. Thanks for the update. Well, I'm also driven to get to the bottom of things which "make no sense" to me. If everyone was reporting this problem, then I probably wouldn't have spent any significant time on it myself, because I don't really need mozilla for anything. However, it drove me *nuts* that this was consistently happening to me, and yet no one else. So, I spent yet another day building, rebooting, removing, adding, rearranging, installing, recompiling, and other things. I have now successfully rebuilt mozilla. You are not going to believe what the catalyst is for my problems. I use bash as my shell under root. My .login file checks if /usr/local/bin/bash exists, and if so it switches the login from csh to bash. This probably effects a few other things in my environment (such as my PATH setting). I have not pinned down the EXACT cause of the problem, but if I change my .login file so it does not switch to bash, then I can build mozilla. Mozilla is the only port which needs to be build "from csh" instead of from bash. Now that I seem to have *some* answer for this mystery, maybe I can finally catch up on my sleep! Later I'll figure out whether it's bash per se, or if it's something else in the environment which touches off the problem. If it isn't bash vs csh, then I expect it is a difference in the PATH setting (probably no /usr/local/sbin in PATH when I run under bash). --- Garance Alistair Drosehn = gad@gilead.acs.rpi.edu Senior Systems Programmer or gad@FreeBSD.org Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 8:20:12 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48CCC37B417 for ; Thu, 11 Apr 2002 08:20:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFK3d68497; Thu, 11 Apr 2002 08:20:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Apr 2002 08:20:03 -0700 (PDT) Message-Id: <200204111520.g3BFK3d68497@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Joe Marcus Clarke Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Joe Marcus Clarke Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Joe Marcus Clarke To: Garance A Drosehn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: 11 Apr 2002 12:13:27 -0300 On Thu, 2002-04-11 at 01:55, Garance A Drosehn wrote: > > On Wednesday, April 10, 2002, at 12:14 AM, Joe Marcus Clarke wrote: > > On Tue, 2002-04-09 at 23:42, Garance A Drosehn wrote: > >> I don't know what's wrong, but I've spent much more than 24 hours > >> trying to rebuild things in a few dozen different ways, and mozilla > >> just isn't worth that much of my time. > > > > I'll keep looking into it. Working in tech support by day gives > > me an undying need to solve problems ;-}. Thanks for the update. > > Well, I'm also driven to get to the bottom of things which "make no > sense" to me. If everyone was reporting this problem, then I probably > wouldn't have spent any significant time on it myself, because I don't > really need mozilla for anything. However, it drove me *nuts* that > this was consistently happening to me, and yet no one else. > > So, I spent yet another day building, rebooting, removing, adding, > rearranging, installing, recompiling, and other things. I have now > successfully rebuilt mozilla. You are not going to believe what the > catalyst is for my problems. > > I use bash as my shell under root. My .login file checks if > /usr/local/bin/bash exists, and if so it switches the login from > csh to bash. This probably effects a few other things in my > environment (such as my PATH setting). I have not pinned down the > EXACT cause of the problem, but if I change my .login file so it > does not switch to bash, then I can build mozilla. Mozilla is the > only port which needs to be build "from csh" instead of from bash. > > Now that I seem to have *some* answer for this mystery, maybe I can > finally catch up on my sleep! Later I'll figure out whether it's > bash per se, or if it's something else in the environment which > touches off the problem. If it isn't bash vs csh, then I expect it > is a difference in the PATH setting (probably no /usr/local/sbin > in PATH when I run under bash). I was just thinking this morning that it might be an environment variable common to both your -stable and -current machines. In any event, I'm glad you're closer to tracking down the issue. Joe > > --- > Garance Alistair Drosehn = gad@gilead.acs.rpi.edu > Senior Systems Programmer or gad@FreeBSD.org > Rensselaer Polytechnic Institute; Troy NY USA > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 9:23:29 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from hub.freebsd.org (h213-109-99.RM.albacom.net [213.213.109.99]) by hub.freebsd.org (Postfix) with SMTP id 183DC37B404 for ; Thu, 11 Apr 2002 09:22:53 -0700 (PDT) From: "Gadolim@vincenti.net" Date: gio, 11 apr 2002 18.27.26 To: gnome@freebsd.org Subject: Voui vincere con internet? MIME-Version: 1.0 Content-Type: text/plain;charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <20020411162253.183DC37B404@hub.freebsd.org> Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Vorresti davvero Vincere con Internet? Questo Sistema è diverso da tutti gli altri, ti assicuro che dopo averlo compreso a fondo sarà per te IRRESISTIBILE la voglia di partecipare. QUESTO E` SENZA DUBBIO IL GIORNO PIU` FORTUNATO DELLA TUA VITA !!! IMMAGINA COSA POTRESTI FARE CON 750.000 EURO (1.5 - 2 MILIARDI DI LIRE) ... SEI UNO DEI PRIMI FORTUNATI ITALIANI A RICEVERE QUESTA FAMOSA MLM E-MAIL, DELLA QUALE TUTTI STANNO PARLANDO, E DELLA QUALE LA TELEVISIONE E TUTTI I GIORNALI AMERICANI HANNO DEDICATO AMPIO SPAZIO NELLE SCORSE SETTIMANE !!! 1.5 - 2 MILIARDI DI LIRE IN SOLE 6 SETTIMANE !!! GARANTITO !!! FINALMENTE TRADOTTA ANCHE IN ITALIANO, PER IL TUO SUCCESSO !!! UN SISTEMA CHE ANNULLA COMPLETAMENTE TOTOCALCIO, TOTOGOL, LOTTO, ENALOTTO E LOTTERIE VARIE !!! BASTA GIOCARE E SPRECARE SOLDI INUTILMENTE !!! COMINCIA A VINCERE UNA VOLTA PER TUTTE FINO A QUANDO SARAI STUFO DI TUTTI QUEI SOLDI !!!!!!!!!!!!!!!!!!!! E' il caso di cominciare A TIRARE FUORI I SOGNI DAL CASSETTO !!! Immagina di poterti recare alla banca e chiudere quel mutuo sulla casa o appartamento !!! Oppure di prenderti un paio di mesi di vacanza o crociera in uno di quei posti esotici che hai sempre sognato, poi ritorna a casa a decidere cosa fare con piu` di un miliardo ancora a disposizione !!! Questo potrebbe diventare una PURA REALTA`anche per te grazie all'incredibile sistema MLM americano !!! 6 SOLE SETTIMANE: questo e` quanto ci vuole per accumulare un minimo di $750.000 DOLLARI AMERICANI, PARI A UN MILIARDO E MEZZO DI LIRE ITALIANE, o 750.000 EURO. Ti chiedo soltanto un paio di minuti del tuo tempo prezioso e un invito a leggere questa lettera: e ti prometto che quando l' avrai terminata la tua vita sara` gia` cambiata !!! Questa e` la testimonianza di Claudio Tommasi, l'italiano che ha finalmente deciso di tradurre la piu` famosa e-mail oggi in circolazione: "Chi ti scrive e` un italiano, Claudio Tommasi, nato e cresciuto a S. Michele all' Adige, una cittadina alle porte di Trento, nel nord Italia. Mi sono sposato e trasferito negli Stati Uniti nel 1994, dopo un corso estivo al Campus dell' Universita` del nord Colorado, e tuttora vivo con mia moglie e i miei due figli in una bellissima cittadina chiamata Fort Collins, sempre nel nord Colorado. La ragione per cui ti scrivo e` perche` ormai da 5 mesi la mia vita e quella della mia famiglia e` totalmente cambiata. Perche` ??? Ho vinto la bellezza di $712.455 dollari, equivalenti a 1.426.862.000 lire italiane, senza fare assolutamente nulla !!! Quello che e` successo a me succedera` a tutti quelli che decideranno di partecipare all' ormai famoso "MLM American System": E` GARANTITO !!! Perche` e` l'unico sistema al mondo col quale non si puo` perdere, e` impossibile !!!". La sua testimonianza continua sul sito... http://members.xoom.virgilio.it/interventi/ La differenza fra i vecchi sistemi multi livello e questo, e` molto semplice: Il principio è quasi simile a quello utopico del "se ognuno dei 5 miliardi di persone oggi esistenti sulla terra spedisse 1 dollaro a tutti gli altri, vivremmo in un mondo di miliardari". Il fatto e` che non si può costringere qualcuno a versare dei soldi ad un altro individuo. Ecco che il concetto di MLM entra in gioco: ci vuole una rete di giocatori intenzionati a scambiarsi ogni 6 settimane 5 ?uro a testa, collezionando 750.000 ? a turno. Questo e` il semplice segreto di un sistema che non ha eguali in tutto il mondo: MLM American System. Non c'e` nessuna organizzazione dietro MLM che trattiene percentuali come altri sistemi, dove il solo che colleziona denaro e` l'ente che giostra il tutto. MLM e` una rete di oneste persone comuni COME TE che hanno tutto l'interesse di tenere in piedi un sistema che genera benessere per tutti. I soldi contenuti nelle lettere vengono spediti direttamente alle case dei partecipanti, e non raccolti da "'anonimi enti" come in altri sistemi. Su questa e-mail, che sara` la tua lista se decidi di partecipare, ci sono i nominativi di 5 persone comuni come te, provenienti dall'Italia e da tutto il mondo. Come hai letto nella testimonianza di Claudio Tommasi, l'italiano che ha avuto la cortesia di tradurre questa famosa e-mail in italiano, stiamo cercando di far rimanere questa e-mail in Italia. Quindi considera la tua posizione: se cancelli questa e-mail toglierai una grande opportunita` a coloro che stanno aspettando che tu gliela spedisca. Anche se non intendi partecipare, spedisci questa e-mail ad almeno 10 persone. E se intendi partecipare, ti chiediamo cortesemente di farla circolare in Italia, affinché si crei un ciclo di giocatori italiani che entrano ed escono, scambiandosi ricchezza a turno ogni 6 settimane, come in altri paesi. Aiutaci in questo tentativo di creare un "ramo" MLM completamente italiano. Ci e` stato reso noto che la scorsa settimana alcuni giocatori italiani hanno rispedito la e-mail ad amici residenti negli USA, tagliando fuori milioni di giocatori italiani in attesa. Ti chiediamo pertanto di evitare che questa e-mail vada persa. Confidiamo nel tuo impegno, e per questo ti ringraziamo in anticipo. Noi siamo due studenti, A&W (che vogliono mantenere l'anonimato), della facolta' di ingegneria di Povo, Trento, amici d'infanzia di Claudio Tommasi e convinti stimatori di questo incredibile sistema che sta gia`funzionando alla grande per noi. Ti auguriamo un in bocca al lupo e buon divertimento come nuovo euro-milionario !!! COSA SONO I 5 "REPORT" PER ENTRARE NEL GIOCO? Un report e` una serie di informazioni utilissime su come scaricare assolutamente gratis costosi software dall' Internet (che potranno risultare di grande aiuto nella gestione e spedizione ad alta velocita` di e-mail) gestire patrimoni senza pagare tasse, ecc., accuratamente tradotti in italiano. Per ogni report spedisci 5 euro. Per qualsiasi ragione, non spedire MAI moneta, solo banconote, altrimenti dovrai pagare una tariffa postale maggiore, dovuta al peso. Per evitare che i soldi spediti vengano intercettati e rubati, da due anni a questa parte, si e` adottato il sistema di "incartare" la banconota in due fogli di carta formato A4, piegati in tre, come si piegherebbe una semplice lettera da infilare in una busta normale da lettera. Su uno dei due fogli, scrivi in stampatello (meglio se stampato al computer) a caratteri chiari e leggibili, il nome e il numero del report che stai ordinando, il tuo indirizzo e-mail, e il tuo nome e indirizzo postale. Quindi: per ogni report spedisci una banconota del valore di 5 euro incartata fra 2 fogli di carta formato A4, il nome e numero di report richiesto, il tuo indirizzo e-mail, il tuo nome e indirizzo postale. Se non vuoi far apparire il tuo nome e indirizzo sulla lista (anonimato), puoi usare una casella postale come indirizzo, e il nome di una compagnia al posto del tuo nome e cognome (ad esempio: XYZ Servizi, Casella Postale 12345, Roma, Italy). Ricorda di scrivere il tuo indirizzo (mittente) sulla busta, nel caso in cui ci siano difficolta` postali. Quando ordini i report, devi ordinare tutti i 5 report, perchè hai bisogno di "cederli atua volta" tramite e-mail alle persone che li richiederanno da te, dandoti 5 euro per ognuno di essi (anche se sono gia` in possesso di essi, nel caso di giocatori che rientrano, ma il sistema richiede il pagamento di 5 dollari in cambio di qualcosa). Quando ricevi i 5 report in 5 differenti e-mail, salva ogni report su un floppy disk o CD, affinchè niente vada perso. Se li perdi, non puoi continuare nel sistema, poiche` non hai niente da "vendere" agli altri giocatori. Il costo totale del tuo investimento e`: 5 x 5 euro = 25 euro è una sciocchezza paragonata a quello che riceverai !!! Nel giro di pochi giorni riceverai, come detto, le 5 e-mail con i 5 differenti report in italiano. Mentre aspetti per I 5 report ( numero 1, 2, 3, 4 e 5), prendi questa e-mail, che hai precedentemente salvato nel tuo computer, e fai quanto segue: 1. rimuovi il nome e l'indirizzo della persona accanto al report numero 5. Questa persona ha finito il suo turno e stara` contando i suoi 1.5 - 2 miliardi di lire; 2. rimuovi il nome e l'indirizzo della persona accanto al report numero 4 e spostala (con copia/taglia e incolla) al numero 5; 3. rimuovi il nome e l'indirizzo della persona accanto al report numero 3 e spostala (con copia/taglia e incolla) al numero 4; 4. rimuovi il nome e l'indirizzo della persona accanto al report numero 2 e spostala (con copia/taglia e incolla) al numero 3; 5. rimuovi il nome e l'indirizzo della persona accanto al report numero 1 e spostala (con copia/taglia e incolla) al numero 2; 6. inserisci il tuo nome e indirizzo accanto al report numero 1. Fatto, ora sei ufficialmente nel sistema. Fai attenzione nel ricopiare tutti gli indirizzi: controlla sempre che tutti i nomi e gli indirizzi siano scritti in maniera corretta (specialmente nel caso di giocatori stranieri). Dopo cio`, salva la nuova e-mail nel tuo computer, e fai anche una copia e salvala su un floppy disk o CD. NON FARE ASOLUTAMENTE ALTRE MODIFICHE. Il prossimo passo e` quello di spedire le e-mail a tutte le persone che le stanno ansiosamente aspettando. Quello che devi fare e` spedire questa e-mail, cominciando dalla lista di amici presente nel tuo Microsoft Outlook Express, o software simile, dove tieni la lista di indirizzi e-mail dei tuoi amici. Tu puoi spedire quante e-mail vuoi: il minimo e` 5. 1: Ok, vediamo come funziona. Supponiamo che spedisci 20 e-mail a 20 persone. Pur essendo tutti in attesa di questa e-mail, soltanto 10 di loro trovano il tempo di ordinare il report numero 1 da te. 2: Quelle 10 persone spediscono a loro volta 20 e-mail a testa, per un totale di 200 e-mail. Di nuovo, pur essendo tutti in attesa di ricevere questa e-mail ed intascare i loro miliardi, soltanto la meta` di loro, 100 persone, ha il tempo di ordinare il report numero 2. 3: Quelle 100 persone spediscono a loro volta 20 e-mail a testa, per un totale di 2000 e-mail. Stessa storia, solo 1000 di loro trova il tempo di ordinare il report numero 3. 4: Quelle 1000 persone spediscono 20 e-mail ciascuno, per un totale di 20.000 e-mail. Solo 10.000 di loro ordina il report numero 4. 5: Quelle 10.000 persone spediscono 20 e-mail a testa, per un totale di 200.000 e-mail. Solo la meta` di loro ordina il report numero 5. Ora, un po' di matematica. Il totale della vincita in questo caso, dove non si ha il pieno potenziale di giocatori, poiche` si presume che soltanto la meta` della meta` della meta`, ecc. Partecipi, e` il seguente: Per il report numero 1: 10 richieste = 10 x 5 euro = 50 euro = 100.000 lire Per il report numero 2: 100 richieste = 100 x 5 euro = 500 euro = 1.000.000 lire Per il report numero 3: 1.000 richieste = 1.000 x 5 euro = 5.000 euro = 10.000.000 lire Per il report numero 4: 10.000 richieste = 10.000 x 5 euro = 50.000 euro = 100.000.000 lire Per il report numero 5: 100.000 richieste = 100.000 x 5 euro = 500.000 euro = 1.000.000.000 lire Totale: 50 + 500 + 5.000 + 50.000 + 500.000 = 555.550 euro, pari a 1.111.100.000 di lire !!!! Questo è il minimo che ognuno vincerà poichè è stato ormai sperimentato e testato negli anni scorsi: ma se ognuno spedisce piu` di 20 e-mail, e cosi` gli altri partecipanti, la vincita avrà proporzioni stratosferiche che nemmeno potete immaginarvi, ma e` possibile allo stesso tempo, senza dubbio, succede tuttora E SPESSO di avere vincite da 12 zeri !!! Questo dipende da te, se hai il tempo e la voglia di spedire e-mail a persone che conosci, o se trovi indirizzi e-mail su vari siti web gratuiti: non farai altro che incrementare il valore della tua vincita. Quando parliamo di una vincita di 1.5 - 2 miliardi di lire ogni 6 settimane, ci riferiamo ad una vincita media (dati forniti dalle varie trasmissioni televisive che hanno fatto ricerche fra I numerosi partecipanti e redatto delle statistiche) fra tutti I giocatori partecipanti. La media di e-mail spedite e` di 5.4 a persona. Ecco perchè possiamo parlare di una vincita "facile", poche` l'unica cosa da fare e` aprire la propria agenda di indirizzi e-mail di amici e conoscenti, e spedire la e-mail con il prorio nome vicino al report numero 1. Se ci pensate, è proprio un gioco da ragazzi !!! Ma se volete ambire ad una vincita incredibile (centinaia di miliardi) avete la possibilità di farlo, E dipende tutto da voi. Vi sono giocatori nel sistema che arrivano a spedire anche 1 milione di e-mail nel giro di un paio di settimane: vi lascio pensare qual'e` l'entita` della loro vincita !!!! PUOI ORDINARE LA TUA LISTA DEI REPORT IN ITALIANO DA: REPORT NUMERO 1 : "Il nuovo, gratuito e-mail software AGM - Completo" Ordina il report numero 1 da: Franco Zadra Viale Lido, 33 38056 LEVICO TERME (TN) _______________________________________________________________________ REPORT NUMERO 2 : "Il completo setup di un nuovo, veloce e gratuito Internet Provider" Italiano Ordina il report numero 2 da: Canella Matteo Via M.Guidoboni 35/1 44100 Ferrara _______________________________________________________________________ REPORT NUMERO 3 : "Che cos'è una 'Circolare Viaggiante' - Teoria, prassi, necessità della Comunicazione Orizzontale" innovativo contributo di Alessandro D'Agostini su come diffondere in modo efficace informazioni libere con la "mlm comunication" Italiano Ordina il report numero 3 da: Filippo Zanotti Via Darsena, 94 44100 Ferrara (FE) _______________________________________________________________________ REPORT NUMERO 4 : "E-mail Adress Extract" Ordina il report numero 4 da: Maria De Bortoli Via XXIV Maggio, 25 34074 MONFALCONE (GO) _______________________________________________________________________ REPORT NUMERO 5 : "Guida pratica al successo con Multilevel Italian System & Manuale in Italiano su come usare al meglio il nuovo, gratuito e-mail software AGM e E-mail Adress Extract" Ordina il report numero 5 da: Alessandro D'Agostini Via Gregorio VII, 375 00165 - Roma ---------------------------------------------------------------------------- ------------------------------------- In bocca al lupo, e buona vincita milionaria a tutti <<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>> Ti informiamo che questo non è uno spamming ai sensi della legge 675/96. Se Ti e' arrivata questa lettera è perchè il tuo indirizzo di posta elettronica è stato acquisito da fonti pubblicamente consultabili. Da noi non riceverai altre e-mail. Il Tuo account sarà eliminato dal nostro database. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 11:32: 8 2002 Delivered-To: freebsd-gnome@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 538) id B910F37B404; Thu, 11 Apr 2002 11:32:06 -0700 (PDT) To: freebsd-gnome@FreeBSD.ORG From: Majordomo@FreeBSD.ORG Subject: Majordomo results: Re: Confirmation for subscribe freebsd-g Reply-To: Majordomo@FreeBSD.ORG Message-Id: <20020411183206.B910F37B404@hub.freebsd.org> Date: Thu, 11 Apr 2002 11:32:06 -0700 (PDT) Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG -- >>>> auth 40998a7d subscribe freebsd-gnome freebsd-gnome@oki.dynodns.net Your request to Majordomo@FreeBSD.ORG: subscribe freebsd-gnome freebsd-gnome@oki.dynodns.net has been forwarded to the owner of the "freebsd-gnome" list for approval. This could be for any of several reasons: You might have asked to subscribe to a "closed" list, where all new additions must be approved by the list owner. You might have asked to subscribe or unsubscribe an address other than the one that appears in the headers of your mail message. When the list owner approves your request, you will be notified. If you have any questions about the policy of the list owner, please contact "freebsd-gnome-approval@FreeBSD.ORG". Thanks! Majordomo@FreeBSD.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 11:48:27 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from tl.kom.tuwien.ac.at (tl.kom.tuwien.ac.at [128.130.34.35]) by hub.freebsd.org (Postfix) with ESMTP id 921B537B416 for ; Thu, 11 Apr 2002 11:48:20 -0700 (PDT) Received: from tl.kom.tuwien.ac.at (localhost [127.0.0.1]) by tl.kom.tuwien.ac.at (8.12.2/8.12.2) with ESMTP id g3BIr4De056364 for ; Thu, 11 Apr 2002 20:53:04 +0200 (CEST) (envelope-from tilman@arved.de) Received: (from tilman@localhost) by tl.kom.tuwien.ac.at (8.12.2/8.12.2/Submit) id g3BIr3HW056363; Thu, 11 Apr 2002 20:53:03 +0200 (CEST) X-Authentication-Warning: tl.kom.tuwien.ac.at: tilman set sender to tilman@arved.de using -f Subject: Re: Majordomo results: Re: Confirmation for subscribe freebsd-g From: Tilman Linneweh To: freebsd-gnome@freebsd.org In-Reply-To: <20020411183206.B910F37B404@hub.freebsd.org> References: <20020411183206.B910F37B404@hub.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-LGY6fJBsvyCxMg1sdeCe" X-Mailer: Ximian Evolution 1.0.3 Date: 11 Apr 2002 21:53:02 +0300 Message-Id: <1018551182.61777.125.camel@tl.kom.tuwien.ac.at> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-LGY6fJBsvyCxMg1sdeCe Content-Type: text/plain Content-Transfer-Encoding: quoted-printable > >>>> auth 40998a7d subscribe freebsd-gnome freebsd-gnome@oki.dynodns.net Arrgh... This is even more stupid then writing "subscribe" to the Mailinglist. *makes a note to himself: You should not subscribe more than 10 Mailinglists with alias-from adresses at once...* Shame on me=09 arved. --=-LGY6fJBsvyCxMg1sdeCe Content-Type: application/pgp-signature; name=signature.asc Content-Description: Dies ist ein digital signierter Nachrichtenteil -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: Weitere Infos: siehe http://www.gnupg.org iD8DBQA8tduOEH3do0kMxDoRAmbfAJ0Wf6sCc6hQEBORc27SmII0xzMWzQCdGtp8 +N0TzcCz55Ney7+hsIOsXfg= =hhpr -----END PGP SIGNATURE----- --=-LGY6fJBsvyCxMg1sdeCe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 11:57:50 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id B0BD337B400 for ; Thu, 11 Apr 2002 11:57:47 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0TN2; Thu, 11 Apr 2002 21:59:16 +0300 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g3BIwC416588; Thu, 11 Apr 2002 21:58:12 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3CB5DD0F.1FEA4210@FreeBSD.org> Date: Thu, 11 Apr 2002 21:59:27 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Tilman Linneweh Cc: freebsd-gnome@FreeBSD.ORG Subject: Re: Majordomo results: Re: Confirmation for subscribe freebsd-g References: <20020411183206.B910F37B404@hub.freebsd.org> <1018551182.61777.125.camel@tl.kom.tuwien.ac.at> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tilman Linneweh wrote: > > > >>>> auth 40998a7d subscribe freebsd-gnome freebsd-gnome@oki.dynodns.net > > Arrgh... > > This is even more stupid then writing "subscribe" to the Mailinglist. > > *makes a note to himself: You should not subscribe more than 10 > Mailinglists with alias-from adresses at once...* > > Shame on me ;-) -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 18:10: 9 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FD9937B404 for ; Thu, 11 Apr 2002 18:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C1A3X95199; Thu, 11 Apr 2002 18:10:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Apr 2002 18:10:03 -0700 (PDT) Message-Id: <200204120110.g3C1A3X95199@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Garance A Drosehn Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Garance A Drosehn Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Garance A Drosehn To: Joe Marcus Clarke Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: Thu, 11 Apr 2002 21:01:03 -0400 On Thursday, April 11, 2002, at 12:55 AM, Garance A Drosehn wrote: > Later I'll figure out whether it's bash per se, or if it's something > else in the environment which touches off the problem. My .bashrc file defines an environment variable called PLATFORM (and it has defined it for many years now...). I use the same basic config files and scripts on various versions of six different OS's, and I use this variable to govern how various scripts behave on the different platforms. If I remove that one environment variable, mozilla will build for me under bash. The actual "freebsd port" files do not reference PLATFORM at all, so I seem to be tripping over something in mozilla itself. I did grep thru mozilla source files and found a number of files which use something called PLATFORM. Looking at the logfiles of the two compiles (working and non-working), it looks like some of these references will get the value mozilla builds, and other references get the value defined in my .bashrc. So, it looks like this is not something that needs to be fixed in the freebsd port. I probably should pursue this with the mozilla folks, but for the moment I think I'll just change the name of that variable in my .bashrc & related scripts. Maybe PLATFORM_asSetIn_bAshRc_for_GarancE_ScriPts -- that shouldn't conflict with anything! Apologies for dragging you along on my wild goose chase! Thanks for all the replies. --- Garance Alistair Drosehn = gad@gilead.acs.rpi.edu Senior Systems Programmer or gad@FreeBSD.org Rensselaer Polytechnic Institute; Troy NY USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 20:10: 9 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DD9F37B404 for ; Thu, 11 Apr 2002 20:10:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C3A3W18687; Thu, 11 Apr 2002 20:10:03 -0700 (PDT) (envelope-from gnats) Date: Thu, 11 Apr 2002 20:10:03 -0700 (PDT) Message-Id: <200204120310.g3C3A3W18687@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Joe Marcus Clarke Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Reply-To: Joe Marcus Clarke Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/35907; it has been noted by GNATS. From: Joe Marcus Clarke To: Garance A Drosehn Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/35907: Attempts to build mozilla fail (on current?) Date: 12 Apr 2002 00:04:36 -0300 --=-jzhuecE5hLve1Dgv8T+v Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2002-04-11 at 22:01, Garance A Drosehn wrote: > On Thursday, April 11, 2002, at 12:55 AM, Garance A Drosehn wrote: > > Later I'll figure out whether it's bash per se, or if it's something=20 > > else in the environment which touches off the problem. >=20 > My .bashrc file defines an environment variable called PLATFORM (and it=20 > has defined it for many years now...). I use the same basic config=20 > files and scripts on various versions of six different OS's, and I use=20 > this variable to govern how various scripts behave on the different=20 > platforms. >=20 > If I remove that one environment variable, mozilla will build for me=20 > under bash. The actual "freebsd port" files do not reference PLATFORM=20 > at all, so I seem to be tripping over something in mozilla itself. I=20 > did grep thru mozilla source files and found a number of files which use=20 > something called PLATFORM. >=20 > Looking at the logfiles of the two compiles (working and non-working),=20 > it looks like some of these references will get the value mozilla=20 > builds, and other references get the value defined in my .bashrc. >=20 > So, it looks like this is not something that needs to be fixed in the=20 > freebsd port. I probably should pursue this with the mozilla folks, but=20 > for the moment I think I'll just change the name of that variable in my=20 > .bashrc & related scripts. Maybe=20 > PLATFORM_asSetIn_bAshRc_for_GarancE_ScriPts -- that shouldn't conflict=20 > with anything! >=20 > Apologies for dragging you along on my wild goose chase! > Thanks for all the replies. Not a problem. This will be a very educational PR. I will see what can be done from the FreeBSD port side. Joe >=20 > --- > Garance Alistair Drosehn =3D gad@gilead.acs.rpi.edu > Senior Systems Programmer or gad@FreeBSD.org > Rensselaer Polytechnic Institute; Troy NY USA >=20 >=20 --=-jzhuecE5hLve1Dgv8T+v Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy2TsQACgkQb2iPiv4Uz4fcEwCfUKMS+uNvKrWJqNsffmAcQwZS BbgAoJinxKmHja0Ju/R6fPjNwkqxSMhc =wWBJ -----END PGP SIGNATURE----- --=-jzhuecE5hLve1Dgv8T+v-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Thu Apr 11 23: 9: 0 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from hub.FreeBSD.ORG (211-235-255-82.rev.krline.net [211.235.255.82]) by hub.freebsd.org (Postfix) with SMTP id 24A4237B400 for ; Thu, 11 Apr 2002 23:08:53 -0700 (PDT) From: yeskong@jaewoo.com Subject: =?EUC-KR?B?wPyx4i+wx7CtIMD8ua687sfOuPQ=?= ecpia.co.kr =?EUC-KR?B?v8DHwiBbsaSw7V0=?= To: gnome@freebsd.org Content-Type: multipart/alternative; boundary="=_NextPart_2rfkindysadvnqw3nerasdf" MIME-Version: 1.0 Date: Fri, 12 Apr 2002 15:08:52 -0900 X-Priority: 3 Message-Id: <20020412060853.24A4237B400@hub.freebsd.org> Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format --=_NextPart_2rfkindysadvnqw3nerasdf Content-Type: text/plain;charset="ks_c_5601-1987" Content-Transfer-Encoding: base64 Wincus Marketer --=_NextPart_2rfkindysadvnqw3nerasdf Content-Type: text/html;charset="euc-kr" Content-Transfer-Encoding: 8bit 0409_mail
::::::::::::::::::::::::::::: Àü±â/°Ç°­ºÐ¾ß Àü¹® ¼îÇθô :::::::::::::::::::::::::::

[ ¸ÞÀϼö½Å°ÅºÎ ]
Á¤º¸Åë½ÅºÎ ±Ç°í »çÇ׿¡ ÀÇ°Å ¸ÞÀϼö½Å°ÅºÎ ÀåÄ¡¸¦ °¡Áö°í ÀÖ´Â ¸ÞÀÏÀÔ´Ï´Ù.
E-Mail ÁÖ¼Ò ¿Ü¿¡, ´Ù¸¥ Á¤º¸´Â °®°í ÀÖÁö ¾Ê½À´Ï´Ù.
À̽ÃÇÇ¾Æ »çÀÌÆ®·Î ¾È³»ÇÕ´Ï´Ù~ --=_NextPart_2rfkindysadvnqw3nerasdf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 7:28:59 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from athena.za.net (athena.4dds.co.za [66.8.86.242]) by hub.freebsd.org (Postfix) with ESMTP id AE54F37B41A for ; Fri, 12 Apr 2002 07:28:52 -0700 (PDT) Received: from jus (helo=localhost) by athena.za.net with local-esmtp (Exim 3.22 #1) id 16w22a-000Kdv-00 for gnome@freebsd.org; Fri, 12 Apr 2002 16:28:40 +0200 Date: Fri, 12 Apr 2002 16:28:40 +0200 (SAST) From: Justin Stanford X-Sender: jus@athena.za.net To: gnome@freebsd.org Subject: Evolution-1.0.2/1.0.3 build dies on calendar client.. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, On attempting to build both the evolution 1.0.2 and 1.0.3 ports on my machine: [jus@athena] /usr/home/jus$ uname -a FreeBSD athena.za.net 4.5-STABLE FreeBSD 4.5-STABLE #0: Thu Apr 11 16:10:34 SAST 2002 root@athena.za.net:/usr/src/sys/compile/Athena i386 .. the build dies in the same place for both versions with the same error message: cal-client.c: In function `real_open_calendar': cal-client.c:734: structure has no member named `major' cal-client.c: In function `cal_client_get_object': cal-client.c:1092: structure has no member named `major' cal-client.c: In function `cal_client_get_timezone': cal-client.c:1207: structure has no member named `major' cal-client.c: In function `cal_client_get_alarms_for_object': cal-client.c:2035: structure has no member named `major' cal-client.c: In function `cal_client_update_object': cal-client.c:2285: structure has no member named `major' cal-client.c: In function `cal_client_update_objects': cal-client.c:2341: structure has no member named `major' cal-client.c: In function `cal_client_remove_object': cal-client.c:2391: structure has no member named `major' cal-client.c: In function `cal_client_ensure_timezone_on_server': cal-client.c:2494: structure has no member named `major' cal-client.c: In function `cal_client_set_default_timezone': cal-client.c:2536: structure has no member named `major' gmake[3]: *** [cal-client.lo] Error 1 gmake[3]: Leaving directory `/usr/ports/mail/evolution/work/evolution-1.0.2/cale ndar/cal-client' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/mail/evolution/work/evolution-1.0.2/cale ndar' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/mail/evolution/work/evolution-1.0.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/mail/evolution. I've just cvsupped the system to 4.5-STABLE, and installed all the latest pkg's for the various dependencies as stipulated in the evolution 1.0.3 pkg.. that particular pkg half runs with various errors, such that the splash screen comes up, then a Gnome segmentation fault alert diagbox, and then the main window opens, but no icons or contents is visible. The error messages are varied, somewhere along the line of ``cannot activate component bla bla, OAFID bla bla'' - this occurs with both the 1.0.1 and 1.0.3 pkg's. Any ideas? I'd like to try and get 1.0.3 to build if possible.. Thanks, /j -- Justin Stanford Digital Security Consultant Cell: (082) 7402741 E-Mail: justin@4dds.co.za PGP Key: http://people.4dds.co.za/~jus/jus-pgp-key.txt 4D Digital Security (Pty) Ltd. PO Box 2349, Clareinch, 7740, South Africa Tel: (021) 6712342 Fax: (021) 6831104 E-Mail: info@4dds.co.za http://www.4dds.co.za/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 8:46:13 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E73D37B405; Fri, 12 Apr 2002 08:46:10 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CFkAU03018; Fri, 12 Apr 2002 08:46:10 -0700 (PDT) (envelope-from marcus) Date: Fri, 12 Apr 2002 08:46:10 -0700 (PDT) From: Message-Id: <200204121546.g3CFkAU03018@freefall.freebsd.org> To: marcus@FreeBSD.org, freebsd-ports@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/37022: [PATCH] for x11-toolkits/gtk-engines memory leak Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: [PATCH] for x11-toolkits/gtk-engines memory leak Responsible-Changed-From-To: freebsd-ports->gnome Responsible-Changed-By: marcus Responsible-Changed-When: Fri Apr 12 08:45:55 PDT 2002 Responsible-Changed-Why: Over to maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=37022 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 10:15:11 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C280E37B423; Fri, 12 Apr 2002 10:14:56 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CHEu430462; Fri, 12 Apr 2002 10:14:56 -0700 (PDT) (envelope-from marcus) Date: Fri, 12 Apr 2002 10:14:56 -0700 (PDT) From: Message-Id: <200204121714.g3CHEu430462@freefall.freebsd.org> To: sascha@root-login.org, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/37022: [PATCH] for x11-toolkits/gtk-engines memory leak Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: [PATCH] for x11-toolkits/gtk-engines memory leak State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Fri Apr 12 10:14:39 PDT 2002 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=37022 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 13: 3:58 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 2F42037B419 for ; Fri, 12 Apr 2002 13:03:54 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0V15; Fri, 12 Apr 2002 23:05:25 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g3CK4O022045 for gnome@FreeBSD.org; Fri, 12 Apr 2002 23:04:24 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204122004.g3CK4O022045@vega.vega.com> Subject: ANNOUNCE: GNOME2 Development Platform porting is complete To: gnome@FreeBSD.org Date: Fri, 12 Apr 2002 23:04:24 +0300 (EEST) X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just a quick FYI: I've just committed the last port from the bunch of ports that make GNOME2 Development Platform. Thanks to marcus and all other people who helped porting it! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 14:37:52 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from mail.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 6882637B404 for ; Fri, 12 Apr 2002 14:37:47 -0700 (PDT) Received: (qmail 2402 invoked from network); 12 Apr 2002 21:37:46 -0000 Received: from unknown (HELO palantir) ([216.231.61.23]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 12 Apr 2002 21:37:46 -0000 Date: Fri, 12 Apr 2002 14:37:51 -0700 (PDT) From: Paul English X-X-Sender: tallpaul@palantir To: gnome@freebsd.org Subject: Mozilla port Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, I'm trying to install Mozilla from the ports tree. I did a cvsup right before doing it, so it is Mozilla 0.9.9 Rev3 Epoch1. I'm getting the following errors which prevent it from building: In file included from ../x11shared/nsAntiAliasedGlyph.h:9, from nsAntiAliasedGlyph.cpp:47: /usr/local/include/freetype2/freetype/ftglyph.h:104: syntax error before `;' /usr/local/include/freetype2/freetype/ftglyph.h:106: syntax error before `;' /usr/local/include/freetype2/freetype/ftglyph.h:157: syntax error before `;' /usr/local/include/freetype2/freetype/ftglyph.h:205: syntax error before `;' /usr/local/include/freetype2/freetype/ftglyph.h:227: `FT_Error' was not declared in this scope /usr/local/include/freetype2/freetype/ftglyph.h:228: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:250: `FT_Error' was not declared in this scope /usr/local/include/freetype2/freetype/ftglyph.h:251: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:280: `FT_Error' was not declared in this scope /usr/local/include/freetype2/freetype/ftglyph.h:281: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:360: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:436: `FT_Error' was not declared in this scope /usr/local/include/freetype2/freetype/ftglyph.h:437: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:455: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:486: syntax error before `(' /usr/local/include/freetype2/freetype/ftglyph.h:505: `FT_Error' was not declared in this scope /usr/local/include/freetype2/freetype/ftglyph.h:506: syntax error before `(' In file included from nsAntiAliasedGlyph.cpp:47: ../x11shared/nsAntiAliasedGlyph.h:45: `FT_BBox' was not declared in this scope ../x11shared/nsAntiAliasedGlyph.h:45: `aBbox' was not declared in this scope ../x11shared/nsAntiAliasedGlyph.h:45: syntax error before `,' ../x11shared/nsAntiAliasedGlyph.h:46: ANSI C++ forbids initialization of member `WrapFreeType' ../x11shared/nsAntiAliasedGlyph.h:46: making `WrapFreeType' static ../x11shared/nsAntiAliasedGlyph.h:46: ANSI C++ forbids in-class initialization o f non-const static member `WrapFreeType' nsAntiAliasedGlyph.cpp:104: `FT_BBox' was not declared in this scope nsAntiAliasedGlyph.cpp:104: `aBbox' was not declared in this scope nsAntiAliasedGlyph.cpp:104: syntax error before `,' nsAntiAliasedGlyph.cpp:106: duplicate initialization of nsAntiAliasedGlyph::Wrap FreeType nsAntiAliasedGlyph.cpp:106: initializer list being treated as compound expressio n nsAntiAliasedGlyph.cpp:106: syntax error before `{' nsAntiAliasedGlyph.cpp:108: ANSI C++ forbids declaration `mDescent' with no type nsAntiAliasedGlyph.cpp:108: `aBbox' was not declared in this scope nsAntiAliasedGlyph.cpp:109: ANSI C++ forbids declaration `mLBearing' with no typ e nsAntiAliasedGlyph.cpp:109: `aBbox' was not declared in this scope nsAntiAliasedGlyph.cpp:110: ANSI C++ forbids declaration `mRBearing' with no typ e nsAntiAliasedGlyph.cpp:110: `aBbox' was not declared in this scope nsAntiAliasedGlyph.cpp:111: ANSI C++ forbids declaration `mAdvance' with no type nsAntiAliasedGlyph.cpp:111: `aSlot' was not declared in this scope nsAntiAliasedGlyph.cpp:112: ANSI C++ forbids declaration `mWidth' with no type nsAntiAliasedGlyph.cpp:112: `aSlot' was not declared in this scope nsAntiAliasedGlyph.cpp:113: ANSI C++ forbids declaration `mHeight' with no type nsAntiAliasedGlyph.cpp:113: `aSlot' was not declared in this scope nsAntiAliasedGlyph.cpp:116: syntax error before `if' {standard input}: Assembler messages: {standard input}:320: Error: Rest of line ignored. First ignored character is `: '. {standard input}:326: Error: Rest of line ignored. First ignored character is `: '. {standard input}:332: Error: Rest of line ignored. First ignored character is `: '. {standard input}:338: Error: Rest of line ignored. First ignored character is `: '. {standard input}:344: Error: Rest of line ignored. First ignored character is `: '. {standard input}:350: Error: Rest of line ignored. First ignored character is `: '. gmake[4]: *** [nsAntiAliasedGlyph.o] Error 1 gmake[4]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/gfx/src/gtk' gmake[3]: *** [libs] Error 2 gmake[3]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/gfx/src' gmake[2]: *** [libs] Error 2 gmake[2]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/gfx' gmake[1]: *** [tier_9] Error 2 gmake[1]: Leaving directory `/usr/ports/www/mozilla/work/mozilla' gmake: *** [default] Error 2 *** Error code 2 Stop in /usr/ports/www/mozilla. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 15:10:16 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id 90F8C37B400 for ; Fri, 12 Apr 2002 15:10:09 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3CMA3XA047145; Fri, 12 Apr 2002 18:10:03 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3CMA2UF047144; Fri, 12 Apr 2002 18:10:02 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: Mozilla port From: Joe Marcus Clarke To: Paul English Cc: gnome@FreeBSD.ORG In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-ulhwuwbcIo8qzqgOzGm9" X-Mailer: Ximian Evolution 1.0.3 Date: 12 Apr 2002 19:10:02 -0300 Message-Id: <1018649402.287.20.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-ulhwuwbcIo8qzqgOzGm9 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2002-04-12 at 18:37, Paul English wrote: >=20 > Hi, > I'm trying to install Mozilla from the ports tree. I did a cvsup=20 > right before doing it, so it is Mozilla 0.9.9 Rev3 Epoch1. > I'm getting the following errors which prevent it from building: Upgrade your freetype port to the latest version (1.3.1_2). Then make clean and rebuild mozilla. If you still have problems, search the archives for ports@ for the numerous other identical cases. Joe >=20 >=20 > In file included from ../x11shared/nsAntiAliasedGlyph.h:9, > from nsAntiAliasedGlyph.cpp:47: > /usr/local/include/freetype2/freetype/ftglyph.h:104: syntax error before=20 > `;' > /usr/local/include/freetype2/freetype/ftglyph.h:106: syntax error before=20 > `;' > /usr/local/include/freetype2/freetype/ftglyph.h:157: syntax error before=20 > `;' > /usr/local/include/freetype2/freetype/ftglyph.h:205: syntax error before=20 > `;' > /usr/local/include/freetype2/freetype/ftglyph.h:227: `FT_Error' was not=20 > declared > in this scope > /usr/local/include/freetype2/freetype/ftglyph.h:228: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:250: `FT_Error' was not=20 > declared > in this scope > /usr/local/include/freetype2/freetype/ftglyph.h:251: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:280: `FT_Error' was not=20 > declared > in this scope > /usr/local/include/freetype2/freetype/ftglyph.h:281: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:360: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:436: `FT_Error' was not=20 > declared > in this scope > /usr/local/include/freetype2/freetype/ftglyph.h:437: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:455: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:486: syntax error before=20 > `(' > /usr/local/include/freetype2/freetype/ftglyph.h:505: `FT_Error' was not=20 > declared > in this scope > /usr/local/include/freetype2/freetype/ftglyph.h:506: syntax error before=20 > `(' > In file included from nsAntiAliasedGlyph.cpp:47: > ../x11shared/nsAntiAliasedGlyph.h:45: `FT_BBox' was not declared in this=20 > scope > ../x11shared/nsAntiAliasedGlyph.h:45: `aBbox' was not declared in this=20 > scope > ../x11shared/nsAntiAliasedGlyph.h:45: syntax error before `,' > ../x11shared/nsAntiAliasedGlyph.h:46: ANSI C++ forbids initialization of=20 > member > `WrapFreeType' > ../x11shared/nsAntiAliasedGlyph.h:46: making `WrapFreeType' static > ../x11shared/nsAntiAliasedGlyph.h:46: ANSI C++ forbids in-class=20 > initialization o > f non-const static member `WrapFreeType' > nsAntiAliasedGlyph.cpp:104: `FT_BBox' was not declared in this scope > nsAntiAliasedGlyph.cpp:104: `aBbox' was not declared in this scope > nsAntiAliasedGlyph.cpp:104: syntax error before `,' > nsAntiAliasedGlyph.cpp:106: duplicate initialization of=20 > nsAntiAliasedGlyph::Wrap > FreeType > nsAntiAliasedGlyph.cpp:106: initializer list being treated as compound=20 > expressio > n > nsAntiAliasedGlyph.cpp:106: syntax error before `{' > nsAntiAliasedGlyph.cpp:108: ANSI C++ forbids declaration `mDescent' with=20 > no type=20 > nsAntiAliasedGlyph.cpp:108: `aBbox' was not declared in this scope > nsAntiAliasedGlyph.cpp:109: ANSI C++ forbids declaration `mLBearing' with= =20 > no typ > e > nsAntiAliasedGlyph.cpp:109: `aBbox' was not declared in this scope > nsAntiAliasedGlyph.cpp:110: ANSI C++ forbids declaration `mRBearing' with= =20 > no typ > e > nsAntiAliasedGlyph.cpp:110: `aBbox' was not declared in this scope > nsAntiAliasedGlyph.cpp:111: ANSI C++ forbids declaration `mAdvance' with=20 > no type > nsAntiAliasedGlyph.cpp:111: `aSlot' was not declared in this scope > nsAntiAliasedGlyph.cpp:112: ANSI C++ forbids declaration `mWidth' with no= =20 > type > nsAntiAliasedGlyph.cpp:112: `aSlot' was not declared in this scope > nsAntiAliasedGlyph.cpp:113: ANSI C++ forbids declaration `mHeight' with n= o=20 > type > nsAntiAliasedGlyph.cpp:113: `aSlot' was not declared in this scope > nsAntiAliasedGlyph.cpp:116: syntax error before `if' > {standard input}: Assembler messages: > {standard input}:320: Error: Rest of line ignored. First ignored characte= r=20 > is `: > '. > {standard input}:326: Error: Rest of line ignored. First ignored characte= r=20 > is `: > '. > {standard input}:332: Error: Rest of line ignored. First ignored characte= r=20 > is `: > '. > {standard input}:338: Error: Rest of line ignored. First ignored characte= r=20 > is `: > '. > {standard input}:344: Error: Rest of line ignored. First ignored characte= r=20 > is `: > '. > {standard input}:350: Error: Rest of line ignored. First ignored characte= r=20 > is `: > '. > gmake[4]: *** [nsAntiAliasedGlyph.o] Error 1 > gmake[4]: Leaving directory=20 > `/usr/ports/www/mozilla/work/mozilla/gfx/src/gtk' > gmake[3]: *** [libs] Error 2 > gmake[3]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/gfx/src' > gmake[2]: *** [libs] Error 2 > gmake[2]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/gfx' > gmake[1]: *** [tier_9] Error 2 > gmake[1]: Leaving directory `/usr/ports/www/mozilla/work/mozilla' > gmake: *** [default] Error 2 > *** Error code 2 >=20 > Stop in /usr/ports/www/mozilla. =20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message >=20 --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-ulhwuwbcIo8qzqgOzGm9 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy3WzoACgkQb2iPiv4Uz4c8AQCfUbj3W655kr3Eh1GqXrxS2Uhc 3fEAn2/YLHGqZwukrIrZ1wSN+KJry/5w =NeEc -----END PGP SIGNATURE----- --=-ulhwuwbcIo8qzqgOzGm9-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 19:51:51 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id A396837B400 for ; Fri, 12 Apr 2002 19:51:28 -0700 (PDT) Received: from bsace7003-193-224-021.dsl.telebrasilia.net.br (bsace7003-193-224-021.dsl.telebrasilia.net.br [200.193.224.21]) by heaven.gigo.com (Postfix) with ESMTP id 3CEA1B70E for ; Fri, 12 Apr 2002 19:51:23 -0700 (PDT) Received: (qmail 79564 invoked by uid 1001); 13 Apr 2002 02:34:31 -0000 Message-ID: <20020413023431.79563.qmail@exxodus.fedaykin.here> Date: Fri, 12 Apr 2002 23:34:09 -0300 From: Mario Sergio Fujikawa Ferreira To: Joe Marcus Clarke Cc: gnome@FreeBSD.org Subject: libxml2 issue? (was Re: Ogle patch) References: <1018656675.272.10.camel@gyros.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ibTvN161/egqYuK8" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <1018656675.272.10.camel@gyros.marcuscom.com>; from marcus@FreeBSD.org on Fri, Apr 12, 2002 at 09:10:53PM -0300 X-Operating-System: FreeBSD 4.5-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, On Fri, Apr 12, 2002 at 09:10:53PM -0300, Joe Marcus Clarke wrote: > With the latest libxml2, ogle doesn't want to make configure very well. > This patch seems to fix it. May I commit it? Thanks for the heads up. I would prefer, though, a slightly different version, a perl regexp. From my point of view, this is an issue with libxml2 port. A closer look at libxml.m4 shipped with libxml2-2.4.19 has the same #include instead of #include However, I would advise against "patching" libxml.m4 because that would cause any configure scripts generated by FreeBSD users to be FreeBSD specific which we should strongly discourage. I am saying this but I do not follow discussions on libxml2 so it is possible that libxml2 developers will be changing their standard in a new future. If they are not, we should "fix" our libxml2 to so that we do not need to be patching several configure scripts due to libxml2 My suggestion would be to patch xml2-config to include the libxml as well. Check the attached patch. Therefore, I would ask Marcus to wait a day or two while gnome maintainers discuss what is the best way to handle this. If they patch libxml2, nothing needs to be done regarding ogle. By the way, I verified that ogle configures/builds just fine by patching libxml2 Another portability issue: gtk.m4 installed by gtk12. It is FreeBSD specific, configure scripts generated with it do not work in other systems. I strongly urge the attached patch to be added. It works with autoconf both 2.53 and 2.13. It should be send back to gtk12 developers. Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-ogle:Makefile --- ogle/Makefile.orig Fri Apr 12 22:52:26 2002 +++ ogle/Makefile Fri Apr 12 23:23:15 2002 @@ -49,6 +49,8 @@ ${WRKSRC}/configure.in .endif @${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|" ${WRKSRC}/scripts/ogle.in + @${PERL} -pi -e 's|(xmlversion.h>)|libxml/\1|' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} pre-configure: @${TOUCH} `find -E ${WRKSRC} -regex ".*Makefile\.(am|in)"` --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-libxml2:Makefile --- libxml2/Makefile.orig Fri Apr 12 23:22:27 2002 +++ libxml2/Makefile Fri Apr 12 23:24:16 2002 @@ -7,6 +7,7 @@ PORTNAME= libxml2 PORTVERSION= 2.4.19 +PORTREVISION= 1 CATEGORIES= textproc gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= stable/sources/libxml @@ -49,5 +50,9 @@ pre-patch: @find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \ 's|\$\(libdir\)/pkgconfig|\$\(prefix\)/libdata/pkgconfig|g' + +post-patch: + ${PERL} -pi.orig -e 's|(\@XML_INCLUDEDIR\@)|\1\ + -I\$${includedir}/libxml2/libxml|' ${WRKSRC}/xml2-config.in .include --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-gtk12:files:patch-gtk.m4" diff -ruN gtk12.orig/files/patch-gtk.m4 gtk12/files/patch-gtk.m4 --- gtk12.orig/files/patch-gtk.m4 Fri Feb 9 13:10:45 2001 +++ gtk12/files/patch-gtk.m4 Fri Apr 12 23:30:05 2002 @@ -1,11 +1,11 @@ ---- gtk.m4.orig Fri Feb 9 22:56:43 2001 -+++ gtk.m4 Fri Feb 9 22:57:20 2001 +--- gtk.m4.orig Thu Feb 18 14:43:13 1999 ++++ gtk.m4 Fri Apr 12 23:29:51 2002 @@ -37,7 +37,7 @@ fi fi - AC_PATH_PROG(GTK_CONFIG, gtk-config, no) -+ AC_PATH_PROG(GTK_CONFIG, gtk-config, gtk12-config, no) ++ AC_PATH_PROGS(GTK_CONFIG, [gtk-config gtk12-config], no) min_gtk_version=ifelse([$1], ,0.99.7,$1) AC_MSG_CHECKING(for GTK - version >= $min_gtk_version) no_gtk="" --ibTvN161/egqYuK8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 20:24:20 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id 4D1A737B400; Fri, 12 Apr 2002 20:24:15 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3D3O8Lu000336; Fri, 12 Apr 2002 23:24:08 -0400 (EDT) (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3D3O83J000335; Fri, 12 Apr 2002 23:24:08 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@FreeBSD.org using -f Subject: Re: libxml2 issue? (was Re: Ogle patch) From: Joe Marcus Clarke To: Mario Sergio Fujikawa Ferreira Cc: gnome@FreeBSD.org In-Reply-To: <20020413023431.79563.qmail@exxodus.fedaykin.here> References: <1018656675.272.10.camel@gyros.marcuscom.com> <20020413023431.79563.qmail@exxodus.fedaykin.here> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.3 Date: 13 Apr 2002 00:24:08 -0300 Message-Id: <1018668248.273.6.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 2002-04-12 at 23:34, Mario Sergio Fujikawa Ferreira wrote: > Hi, > > On Fri, Apr 12, 2002 at 09:10:53PM -0300, Joe Marcus Clarke wrote: > > With the latest libxml2, ogle doesn't want to make configure very well. > > This patch seems to fix it. May I commit it? > > Thanks for the heads up. I would prefer, though, a slightly > different version, a perl regexp. > > From my point of view, this is an issue with libxml2 port. > A closer look at > > libxml.m4 shipped with libxml2-2.4.19 > > has the same > > #include > > instead of > > #include > > > However, I would advise against "patching" libxml.m4 > because that would cause any configure scripts generated by FreeBSD > users to be FreeBSD specific which we should strongly discourage. > > I am saying this but I do not follow discussions on libxml2 > so it is possible that libxml2 developers will be changing their > standard in a new future. If they are not, we should "fix" our > libxml2 to so that we do not need to be patching several configure > scripts due to libxml2 > > My suggestion would be to patch xml2-config to include > the libxml as well. Check the attached patch. This looks fine to me. It should not break existing ports, and it will fix a great deal of growing pains with some other ports requiring xml2. > > Therefore, I would ask Marcus to wait a day or two > while gnome maintainers discuss what is the best way to handle this. > If they patch libxml2, nothing needs to be done regarding ogle. By > the way, I verified that ogle configures/builds just fine by patching > libxml2 As a gnome maintainer, I like the libxml2 patch. > > Another portability issue: gtk.m4 installed by gtk12. > It is FreeBSD specific, configure scripts generated with it > do not work in other systems. I strongly urge the attached patch > to be added. It works with autoconf both 2.53 and 2.13. It should > be send back to gtk12 developers. This looks good, too. Joe > > Regards, > > -- > Mario S F Ferreira - DF - Brazil - "I guess this is a signature." > Computer Science Undergraduate | FreeBSD Committer | CS Developer > flames to beloved devnull@someotherworldbeloworabove.org > feature, n: a documented bug | bug, n: an undocumented feature > ---- > > --- ogle/Makefile.orig Fri Apr 12 22:52:26 2002 > +++ ogle/Makefile Fri Apr 12 23:23:15 2002 > @@ -49,6 +49,8 @@ > ${WRKSRC}/configure.in > .endif > @${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|" ${WRKSRC}/scripts/ogle.in > + @${PERL} -pi -e 's|(xmlversion.h>)|libxml/\1|' \ > + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} > > pre-configure: > @${TOUCH} `find -E ${WRKSRC} -regex ".*Makefile\.(am|in)"` > ---- > > --- libxml2/Makefile.orig Fri Apr 12 23:22:27 2002 > +++ libxml2/Makefile Fri Apr 12 23:24:16 2002 > @@ -7,6 +7,7 @@ > > PORTNAME= libxml2 > PORTVERSION= 2.4.19 > +PORTREVISION= 1 > CATEGORIES= textproc gnome > MASTER_SITES= ${MASTER_SITE_GNOME} > MASTER_SITE_SUBDIR= stable/sources/libxml > @@ -49,5 +50,9 @@ > pre-patch: > @find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \ > 's|\$\(libdir\)/pkgconfig|\$\(prefix\)/libdata/pkgconfig|g' > + > +post-patch: > + ${PERL} -pi.orig -e 's|(\@XML_INCLUDEDIR\@)|\1\ > + -I\$${includedir}/libxml2/libxml|' ${WRKSRC}/xml2-config.in > > .include > ---- > > diff -ruN gtk12.orig/files/patch-gtk.m4 gtk12/files/patch-gtk.m4 > --- gtk12.orig/files/patch-gtk.m4 Fri Feb 9 13:10:45 2001 > +++ gtk12/files/patch-gtk.m4 Fri Apr 12 23:30:05 2002 > @@ -1,11 +1,11 @@ > ---- gtk.m4.orig Fri Feb 9 22:56:43 2001 > -+++ gtk.m4 Fri Feb 9 22:57:20 2001 > +--- gtk.m4.orig Thu Feb 18 14:43:13 1999 > ++++ gtk.m4 Fri Apr 12 23:29:51 2002 > @@ -37,7 +37,7 @@ > fi > fi > > - AC_PATH_PROG(GTK_CONFIG, gtk-config, no) > -+ AC_PATH_PROG(GTK_CONFIG, gtk-config, gtk12-config, no) > ++ AC_PATH_PROGS(GTK_CONFIG, [gtk-config gtk12-config], no) > min_gtk_version=ifelse([$1], ,0.99.7,$1) > AC_MSG_CHECKING(for GTK - version >= $min_gtk_version) > no_gtk="" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 21:43:55 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from kitkat.hotpop.com (kitkat.hotpop.com [204.57.55.30]) by hub.freebsd.org (Postfix) with ESMTP id 50E2237B400 for ; Fri, 12 Apr 2002 21:43:49 -0700 (PDT) Received: from phreaker.net (unknown [204.57.55.31]) by kitkat.hotpop.com (Postfix) with SMTP id 5724A33BB0 for ; Sat, 13 Apr 2002 04:41:55 +0000 (UTC) Received: from co3025630a (c17804.eburwd3.vic.optusnet.com.au [210.49.197.158]) by zagnut.hotpop.com (Postfix) with SMTP id 2F42450094 for ; Sat, 13 Apr 2002 04:39:03 +0000 (UTC) Message-ID: <000801c1e2a5$22503e90$9ec531d2@co3025630a> From: "Kosta K" To: Subject: gnomeicu 0.9.8.2 Date: Sat, 13 Apr 2002 14:38:59 +1000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C1E2F8.F2DD22F0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-HotPOP: ----------------------------------------------- Sent By HotPOP.com FREE Email Get your FREE POP email at www.HotPOP.com ----------------------------------------------- Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C1E2F8.F2DD22F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable There are some problems that i encountered with using the port for the = current gnomeicu 0.9.8.2. I believe the problems are more to do with other packages, none the less = someone installing gnomeicu will encounter these problems. On a system without gnome, ports CVsed 11th of apr (with the stable rel = 4) the following needed to be built separately before the gnomeicu = (rather gnorecore stage) would finish building ( in the following = order): gnomeprint 0.35 - /ports/print/gnomeprint libglade 0.17 - /ports/devel/libglade glade 0.6.4 - /usr/ports/devel/glade/ (unsure if libglade to had to be built before glade, i am pretty sure = glade stuffed up and i had to build libglade, then i was allowed to = build glade.... this is all from memory, so there might of been other = ports that needed to be built before gnomeicu would finish building) Kosta. ------=_NextPart_000_0005_01C1E2F8.F2DD22F0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
There are some problems that i = encountered with=20 using the port for the current gnomeicu 0.9.8.2.
 
I believe the problems are more to do = with other=20 packages, none the less someone installing gnomeicu will encounter these = problems.
 
On a system without gnome, ports CVsed = 11th of apr=20 (with the stable rel 4) the following needed to be built separately = before=20 the gnomeicu (rather gnorecore stage) would finish building ( in the = following=20 order):
gnomeprint 0.35 - /ports/print/gnomeprint
libglade 0.17 - /ports/devel/libglade
glade 0.6.4 - /usr/ports/devel/glade/
 
(unsure if libglade to had to be built = before=20 glade, i am pretty sure glade stuffed up and i had to build libglade, = then i was=20 allowed to build glade.... this is all from memory, so there might of = been other=20 ports that needed to be built before gnomeicu would finish=20 building)
 
Kosta.
------=_NextPart_000_0005_01C1E2F8.F2DD22F0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 22: 0: 5 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 506D837B400 for ; Fri, 12 Apr 2002 22:00:03 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D503x77955; Fri, 12 Apr 2002 22:00:03 -0700 (PDT) (envelope-from gnats) Date: Fri, 12 Apr 2002 22:00:03 -0700 (PDT) Message-Id: <200204130500.g3D503x77955@freefall.freebsd.org> To: gnome@FreeBSD.org Cc: From: Joe Marcus Clarke Subject: Re: ports/34901: sodipodi-0.24.1 core dumps Reply-To: Joe Marcus Clarke Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The following reply was made to PR ports/34901; it has been noted by GNATS. From: Joe Marcus Clarke To: freebsd-gnats-submit@FreeBSD.org, obraun@informatik.unibw-muenchen.de Cc: Subject: Re: ports/34901: sodipodi-0.24.1 core dumps Date: 13 Apr 2002 01:58:31 -0300 This can be fixed by upgrading all the ports depending on freetpye2 so that all the unresolved links are satisfied. For example, I ran into this problem until I forced an upgrade of gnomespell which still depended on freetype.6 (which is now replaced by freetype.9). If I don't hear back from you on this, I will go ahead and close out this PR. Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 22: 8:43 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id 57E1137B419 for ; Fri, 12 Apr 2002 22:08:39 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3D58RLu020203; Sat, 13 Apr 2002 01:08:27 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3D58Qs6020202; Sat, 13 Apr 2002 01:08:26 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: gnomeicu 0.9.8.2 From: Joe Marcus Clarke To: Kosta K Cc: freebsd-gnome@FreeBSD.ORG In-Reply-To: <000801c1e2a5$22503e90$9ec531d2@co3025630a> References: <000801c1e2a5$22503e90$9ec531d2@co3025630a> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eazCTUvEla/VDNFYmXcV" X-Mailer: Ximian Evolution 1.0.3 Date: 13 Apr 2002 02:08:26 -0300 Message-Id: <1018674506.273.35.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-eazCTUvEla/VDNFYmXcV Content-Type: multipart/mixed; boundary="=-GDmXB3hdtT6di3iLpHdI" --=-GDmXB3hdtT6di3iLpHdI Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2002-04-13 at 01:38, Kosta K wrote: > There are some problems that i encountered with using the port for the cu= rrent gnomeicu 0.9.8.2. >=20 > I believe the problems are more to do with other packages, none the less = someone installing gnomeicu will encounter these problems. >=20 > On a system without gnome, ports CVsed 11th of apr (with the stable rel 4= ) the following needed to be built separately before the gnomeicu (rather g= norecore stage) would finish building ( in the following order): > gnomeprint 0.35 - /ports/print/gnomeprint > libglade 0.17 - /ports/devel/libglade > glade 0.6.4 - /usr/ports/devel/glade/ >=20 > (unsure if libglade to had to be built before glade, i am pretty sure gla= de stuffed up and i had to build libglade, then i was allowed to build glad= e.... this is all from memory, so there might of been other ports that need= ed to be built before gnomeicu would finish building) Sorry. You're right. Try this patch. This should add the correct dependencies. Joe >=20 > Kosta. --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-GDmXB3hdtT6di3iLpHdI Content-Disposition: attachment; filename=Makefile.diff Content-Type: text/x-makefile; name=Makefile.diff; charset=ISO8859-1 Content-Transfer-Encoding: quoted-printable --- Makefile.orig Sat Apr 13 01:06:09 2002 +++ Makefile Sat Apr 13 01:06:12 2002 @@ -21,6 +21,8 @@ USE_GMAKE=3D yes BUILD_DEPENDS+=3D gnet-config:${PORTSDIR}/net/gnet \ msgfmt:${PORTSDIR}/devel/gettext +LIB_DEPENDS=3D glade.4:${PORTSDIR}/devel/libglade \ + gdbm.2:${PORTSDIR}/databases/gdbm .if defined(WITH_DANTE) LIB_DEPENDS+=3D socks.1:${PORTSDIR}/net/dante SOCKSFLAGS=3D -Dconnect=3DRconnect -Dbind=3DRbind -Dgetsockname=3DRgetsock= name \ --=-GDmXB3hdtT6di3iLpHdI-- --=-eazCTUvEla/VDNFYmXcV Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy3vUoACgkQb2iPiv4Uz4epGACfS5a5AukBImJQbRJqhkII6TVv M/8AnjMk3NCYqwY7XdAwwciQ2/jKjXSl =EIDG -----END PGP SIGNATURE----- --=-eazCTUvEla/VDNFYmXcV-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 22:13:35 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id 96C4F37B416 for ; Fri, 12 Apr 2002 22:13:31 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3D5DJLu020229; Sat, 13 Apr 2002 01:13:19 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3D5DJ6E020228; Sat, 13 Apr 2002 01:13:19 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: gnomeicu 0.9.8.2 From: Joe Marcus Clarke To: Kosta K Cc: freebsd-gnome@FreeBSD.ORG In-Reply-To: <000801c1e2a5$22503e90$9ec531d2@co3025630a> References: <000801c1e2a5$22503e90$9ec531d2@co3025630a> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-4QnaquoGp+Qmlz6HgstH" X-Mailer: Ximian Evolution 1.0.3 Date: 13 Apr 2002 02:13:19 -0300 Message-Id: <1018674799.273.38.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-4QnaquoGp+Qmlz6HgstH Content-Type: multipart/mixed; boundary="=-tnSiHBKJHaC20QbXAknj" --=-tnSiHBKJHaC20QbXAknj Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2002-04-13 at 01:38, Kosta K wrote: > There are some problems that i encountered with using the port for the cu= rrent gnomeicu 0.9.8.2. >=20 > I believe the problems are more to do with other packages, none the less = someone installing gnomeicu will encounter these problems. >=20 > On a system without gnome, ports CVsed 11th of apr (with the stable rel 4= ) the following needed to be built separately before the gnomeicu (rather g= norecore stage) would finish building ( in the following order): > gnomeprint 0.35 - /ports/print/gnomeprint > libglade 0.17 - /ports/devel/libglade > glade 0.6.4 - /usr/ports/devel/glade/ >=20 > (unsure if libglade to had to be built before glade, i am pretty sure gla= de stuffed up and i had to build libglade, then i was allowed to build glad= e.... this is all from memory, so there might of been other ports that need= ed to be built before gnomeicu would finish building) Actually, this patch should be all you need. The gdbm dependency is obtained indirectly from libglade. Joe >=20 > Kosta. --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-tnSiHBKJHaC20QbXAknj Content-Disposition: attachment; filename=Makefile.diff Content-Type: text/x-makefile; name=Makefile.diff; charset=ISO8859-1 Content-Transfer-Encoding: quoted-printable --- Makefile.orig Sat Apr 13 01:06:09 2002 +++ Makefile Sat Apr 13 01:11:48 2002 @@ -21,6 +21,7 @@ USE_GMAKE=3D yes BUILD_DEPENDS+=3D gnet-config:${PORTSDIR}/net/gnet \ msgfmt:${PORTSDIR}/devel/gettext +LIB_DEPENDS=3D glade.4:${PORTSDIR}/devel/libglade .if defined(WITH_DANTE) LIB_DEPENDS+=3D socks.1:${PORTSDIR}/net/dante SOCKSFLAGS=3D -Dconnect=3DRconnect -Dbind=3DRbind -Dgetsockname=3DRgetsock= name \ --=-tnSiHBKJHaC20QbXAknj-- --=-4QnaquoGp+Qmlz6HgstH Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy3vm8ACgkQb2iPiv4Uz4dqtwCfTWRRmIFkaeXThWgzLKE1Rsjz 4lEAni/JJfwFyWmPYxafiwY9EtEKol6g =5eFR -----END PGP SIGNATURE----- --=-4QnaquoGp+Qmlz6HgstH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 22:47:21 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id C00D437B404; Fri, 12 Apr 2002 22:47:18 -0700 (PDT) Received: from lsanca1-ar6-4-35-068-050.elnk.dsl.gtei.net ([4.35.68.50] helo=netcom1.netcom.com) by tisch.mail.mindspring.net with esmtp (Exim 3.33 #1) id 16wGNY-0003km-00; Sat, 13 Apr 2002 01:47:16 -0400 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 85F3D13107; Fri, 12 Apr 2002 22:47:11 -0700 (PDT) From: Mike Harding To: gnome@freebsd.org, ade@freebsd.org Subject: gettext upgrade breaks lots of things Message-Id: <20020413054711.85F3D13107@netcom1.netcom.com> Date: Fri, 12 Apr 2002 22:47:11 -0700 (PDT) Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just a head's up - I upgraded my ports today, and /usr/ports/x11/gnome and /usr/ports/x11/gnome-fifth-toe punked out fairly early in their builds, leaving me with a fairly disfunctionaly computer. I had backed out both versions of gettext from my system and then rebuilt - the ports generally fail like this /usr/local/bin/msgfmt -o zh_TW.Big5.mo zh_TW.Big5.po zh_TW.Big5.po:588:13: invalid multibyte sequence zh_TW.Big5.po:588:14: invalid multibyte sequence /usr/local/bin/msgfmt: found 2 fatal errors *** Error code 1 Stop in /usr/ports/sysutils/gtop/work/gtop-1.0.13/po. *** Error code 1 Stop in /usr/ports/sysutils/gtop/work/gtop-1.0.13. *** Error code 1 Stop in /usr/ports/sysutils/gtop/work/gtop-1.0.13. *** Error code 1 Stop in /usr/ports/sysutils/gtop. *** Error code 1 Stop in /usr/ports/x11/gnome. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Fri Apr 12 23:15:20 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from fep8.cogeco.net (smtp.cogeco.net [216.221.81.25]) by hub.freebsd.org (Postfix) with ESMTP id 72F0C37B41C; Fri, 12 Apr 2002 23:15:14 -0700 (PDT) Received: from ergo.wox.org (d57-117-31.home.cgocable.net [24.57.117.31]) by fep8.cogeco.net (Postfix) with ESMTP id 6FBAB5114; Sat, 13 Apr 2002 02:15:13 -0400 (EDT) Subject: ORBit 0.5.15 b0rked From: Muhannad Asfour To: gnome@FreeBSD.org, ade@FreeBSD.org Cc: ports@FreeBSD.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-xPAE2t2cbT2HX5nU5Kbe" X-Mailer: Ximian Evolution 1.0.3 Date: 13 Apr 2002 03:15:13 -0300 Message-Id: <1018678513.29094.2.camel@ergo.wox.org> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-xPAE2t2cbT2HX5nU5Kbe Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hello. I think there is something wrong with the ORBit port after the gettext upgrade, because whenever I use pkgdb -F, I always get this error for it (and yes, I've tried removing it and reinstalling it): Regenerating +REQUIRED_BY files No such file or directory - "/var/db/pkg/ORBit-0.5.15/+REQUIRED_BY" I've tried "touch /var/db/pkg/ORBit-0.5.15/+REQUIRED_BY", but that didn't help either, any help would be greatly appreciated. Thanks --=-xPAE2t2cbT2HX5nU5Kbe Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQA8t8zwck977FUKFQQRAh2SAKCFBw5tp6G7AH2ikEhbrNx7KEztGACeI+Lv YmOAwCU5Zlt99kAduUgLhZA= =TxHF -----END PGP SIGNATURE----- --=-xPAE2t2cbT2HX5nU5Kbe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 1: 0:35 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 3117337B404; Sat, 13 Apr 2002 01:00:26 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0VPY; Sat, 13 Apr 2002 11:01:55 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g3D80wZ25831; Sat, 13 Apr 2002 11:00:58 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204130800.g3D80wZ25831@vega.vega.com> Subject: Re: libxml2 issue? (was Re: Ogle patch) To: lioux@FreeBSD.ORG (Mario Sergio Fujikawa Ferreira) Date: Sat, 13 Apr 2002 11:00:58 +0300 (EEST) Cc: marcus@FreeBSD.ORG (Joe Marcus Clarke), gnome@FreeBSD.ORG In-Reply-To: from "Mario Sergio Fujikawa Ferreira" at Apr 12, 2002 11:34:09 PM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > --ibTvN161/egqYuK8 > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > > Hi, > > On Fri, Apr 12, 2002 at 09:10:53PM -0300, Joe Marcus Clarke wrote: > > With the latest libxml2, ogle doesn't want to make configure very well. > > This patch seems to fix it. May I commit it? > > Thanks for the heads up. I would prefer, though, a slightly > different version, a perl regexp. > > From my point of view, this is an issue with libxml2 port. > A closer look at > > libxml.m4 shipped with libxml2-2.4.19 > > has the same > > #include > > instead of > > #include > > > However, I would advise against "patching" libxml.m4 > because that would cause any configure scripts generated by FreeBSD > users to be FreeBSD specific which we should strongly discourage. > > I am saying this but I do not follow discussions on libxml2 > so it is possible that libxml2 developers will be changing their > standard in a new future. If they are not, we should "fix" our > libxml2 to so that we do not need to be patching several configure > scripts due to libxml2 > > My suggestion would be to patch xml2-config to include > the libxml as well. Check the attached patch. No, www.libxml.org says that `#include ' is The Only True Way[tm] both for 1.x.x and 2.x.x versions of libxml. We shouldn't encourage noncompliant behaviour. > > Therefore, I would ask Marcus to wait a day or two > while gnome maintainers discuss what is the best way to handle this. > If they patch libxml2, nothing needs to be done regarding ogle. By > the way, I verified that ogle configures/builds just fine by patching > libxml2 > > Another portability issue: gtk.m4 installed by gtk12. > It is FreeBSD specific, configure scripts generated with it > do not work in other systems. I strongly urge the attached patch > to be added. It works with autoconf both 2.53 and 2.13. It should > be send back to gtk12 developers. I'll look into it. Actually we could just remove that patch completely, because all FreeBSD ports cope with the problem by setting GTK_CONFIG environment variable. Thanks! -Maxim > > Regards, > > -- > Mario S F Ferreira - DF - Brazil - "I guess this is a signature." > Computer Science Undergraduate | FreeBSD Committer | CS Developer > flames to beloved devnull@someotherworldbeloworabove.org > feature, n: a documented bug | bug, n: an undocumented feature > > --ibTvN161/egqYuK8 > Content-Type: text/plain; charset=us-ascii > Content-Disposition: attachment; filename=patch-ogle:Makefile > > --- ogle/Makefile.orig Fri Apr 12 22:52:26 2002 > +++ ogle/Makefile Fri Apr 12 23:23:15 2002 > @@ -49,6 +49,8 @@ > ${WRKSRC}/configure.in > .endif > @${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|" ${WRKSRC}/scripts/ogle.in > + @${PERL} -pi -e 's|(xmlversion.h>)|libxml/\1|' \ > + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} > > pre-configure: > @${TOUCH} `find -E ${WRKSRC} -regex ".*Makefile\.(am|in)"` > > --ibTvN161/egqYuK8 > Content-Type: text/plain; charset=us-ascii > Content-Disposition: attachment; filename=patch-libxml2:Makefile > > --- libxml2/Makefile.orig Fri Apr 12 23:22:27 2002 > +++ libxml2/Makefile Fri Apr 12 23:24:16 2002 > @@ -7,6 +7,7 @@ > > PORTNAME= libxml2 > PORTVERSION= 2.4.19 > +PORTREVISION= 1 > CATEGORIES= textproc gnome > MASTER_SITES= ${MASTER_SITE_GNOME} > MASTER_SITE_SUBDIR= stable/sources/libxml > @@ -49,5 +50,9 @@ > pre-patch: > @find ${WRKSRC} -name Makefile.in | xargs ${PERL} -pi -e \ > 's|\$\(libdir\)/pkgconfig|\$\(prefix\)/libdata/pkgconfig|g' > + > +post-patch: > + ${PERL} -pi.orig -e 's|(\@XML_INCLUDEDIR\@)|\1\ > + -I\$${includedir}/libxml2/libxml|' ${WRKSRC}/xml2-config.in > > .include > > --ibTvN161/egqYuK8 > Content-Type: text/plain; charset=us-ascii > Content-Disposition: attachment; filename="patch-gtk12:files:patch-gtk.m4" > > diff -ruN gtk12.orig/files/patch-gtk.m4 gtk12/files/patch-gtk.m4 > --- gtk12.orig/files/patch-gtk.m4 Fri Feb 9 13:10:45 2001 > +++ gtk12/files/patch-gtk.m4 Fri Apr 12 23:30:05 2002 > @@ -1,11 +1,11 @@ > ---- gtk.m4.orig Fri Feb 9 22:56:43 2001 > -+++ gtk.m4 Fri Feb 9 22:57:20 2001 > +--- gtk.m4.orig Thu Feb 18 14:43:13 1999 > ++++ gtk.m4 Fri Apr 12 23:29:51 2002 > @@ -37,7 +37,7 @@ > fi > fi > > - AC_PATH_PROG(GTK_CONFIG, gtk-config, no) > -+ AC_PATH_PROG(GTK_CONFIG, gtk-config, gtk12-config, no) > ++ AC_PATH_PROGS(GTK_CONFIG, [gtk-config gtk12-config], no) > min_gtk_version=ifelse([$1], ,0.99.7,$1) > AC_MSG_CHECKING(for GTK - version >= $min_gtk_version) > no_gtk="" > > --ibTvN161/egqYuK8-- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 2:42:46 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from south.nanolink.com (south.nanolink.com [217.75.134.10]) by hub.freebsd.org (Postfix) with SMTP id 70F8337B439 for ; Sat, 13 Apr 2002 02:42:31 -0700 (PDT) Received: (qmail 94609 invoked from network); 13 Apr 2002 09:49:04 -0000 Received: from unknown (HELO straylight.ringlet.net) (212.116.140.125) by south.nanolink.com with SMTP; 13 Apr 2002 09:49:04 -0000 Received: (qmail 86703 invoked by uid 1000); 13 Apr 2002 09:42:17 -0000 Date: Sat, 13 Apr 2002 12:42:17 +0300 From: Peter Pentchev To: gnome@FreeBSD.org Cc: ports@FreeBSD.org Subject: [PATCH] textproc/scrollkeeper: properly link against libintl Message-ID: <20020413124217.F40206@straylight.oblivion.bg> Mail-Followup-To: gnome@FreeBSD.org, ports@FreeBSD.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="HWvPVVuAAfuRc6SZ" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --HWvPVVuAAfuRc6SZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, While trying to package sysutils/gnomecontrolcenter on a 4.5-STABLE system after the devel/gettext update, I noticed that it could not package properly - the omf/control-center-* files were not installed at all. It turned out that scrollkeeper-preinstall did not know where to find libintl. The following patch, shamelessly stolen from the mail/fetchmail port, fixes the search for libintl here. G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 This would easier understand fewer had omitted. Index: ports/textproc/scrollkeeper/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/textproc/scrollkeeper/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- ports/textproc/scrollkeeper/Makefile 1 Aug 2001 06:56:44 -0000 1.5 +++ ports/textproc/scrollkeeper/Makefile 13 Apr 2002 09:12:56 -0000 @@ -28,7 +28,7 @@ INSTALLS_SHLIB=3D yes CONFIGURE_ARGS=3D --localstatedir=3D/var --datadir=3D${PREFIX}/share/gnome CONFIGURE_ENV=3D CPPFLAGS=3D"-I${LOCALBASE}/include" \ - LIBS=3D"-L${LOCALBASE}/lib -lintl" + LDFLAGS=3D"-L${LOCALBASE}/lib -lintl" =20 MAN8=3D scrollkeeper-config.8 scrollkeeper-preinstall.8 \ scrollkeeper-rebuilddb.8 scrollkeeper-update.8 --HWvPVVuAAfuRc6SZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjy3/XkACgkQ7Ri2jRYZRVNmqACglGpIfCQCue3LMcQIn84PtW7x 5JUAoIrmi89ci6npwvX4NIZyXVRFA1kQ =Og1t -----END PGP SIGNATURE----- --HWvPVVuAAfuRc6SZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 8: 8:28 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id 7480D37B405 for ; Sat, 13 Apr 2002 08:08:24 -0700 (PDT) Received: from bsace7003-193-225-074.dsl.telebrasilia.net.br (bsace7003-193-225-074.dsl.telebrasilia.net.br [200.193.225.74]) by heaven.gigo.com (Postfix) with ESMTP id C33DCB711 for ; Sat, 13 Apr 2002 08:08:20 -0700 (PDT) Received: (qmail 14010 invoked by uid 1001); 13 Apr 2002 14:45:17 -0000 Message-ID: <20020413144517.14009.qmail@exxodus.fedaykin.here> Date: Sat, 13 Apr 2002 11:44:54 -0300 From: Mario Sergio Fujikawa Ferreira To: Maxim Sobolev Cc: Joe Marcus Clarke , gnome@FreeBSD.ORG Subject: Re: libxml2 issue? (was Re: Ogle patch) References: <200204130800.g3D80wZ25831@vega.vega.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="wac7ysb48OaltWcw" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200204130800.g3D80wZ25831@vega.vega.com>; from sobomax@FreeBSD.org on Sat, Apr 13, 2002 at 11:00:36AM +0300 X-Operating-System: FreeBSD 4.5-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Apr 13, 2002 at 11:00:36AM +0300, Maxim Sobolev wrote: > No, www.libxml.org says that `#include ' is The Only True > Way[tm] both for 1.x.x and 2.x.x versions of libxml. We shouldn't > encourage noncompliant behaviour. That's the sort of ruling I was hoping for. So... if it's the only true way, we should have libxml2's libxml.m4 fixed. I mean, the patch attached should be sent back to developers so as to have a clean next release. > > Another portability issue: gtk.m4 installed by gtk12. > > It is FreeBSD specific, configure scripts generated with it > > do not work in other systems. I strongly urge the attached patch > > to be added. It works with autoconf both 2.53 and 2.13. It should > > be send back to gtk12 developers. > > I'll look into it. Actually we could just remove that patch completely, > because all FreeBSD ports cope with the problem by setting GTK_CONFIG > environment variable. I know but it wouldn't hurt to have compatibility out of the box. This really should be sent back to developers. Someday we might not need tweaking at all. :) Regards, -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-libxml2:libxml.m4" --- libxml.m4.orig Sat Apr 13 11:38:45 2002 +++ libxml.m4 Sat Apr 13 11:40:46 2002 @@ -253,7 +253,7 @@ AC_TRY_RUN([ #include #include -#include +#include int main() @@ -348,7 +348,7 @@ CFLAGS="$CFLAGS $XML_CFLAGS" LIBS="$LIBS $XML_LIBS" AC_TRY_LINK([ -#include +#include #include ], [ LIBXML_TEST_VERSION; return 0;], [ echo "*** The test program compiled, but did not run. This usually means" --wac7ysb48OaltWcw-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 8:35:26 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from omega.lovett.com (omega.lovett.com [209.249.90.123]) by hub.freebsd.org (Postfix) with ESMTP id 0788037B400 for ; Sat, 13 Apr 2002 08:35:24 -0700 (PDT) Received: from [24.243.55.247] (helo=[10.0.0.2] ident=ident) by omega.lovett.com with esmtp (Exim 3.34 #1) id 16wPYg-000DlS-00; Sat, 13 Apr 2002 08:35:22 -0700 User-Agent: Microsoft-Entourage/10.0.0.1331 Date: Sat, 13 Apr 2002 10:35:37 -0500 Subject: Re: gettext upgrade breaks lots of things From: Ade Lovett To: Mike Harding , Message-ID: In-Reply-To: <20020413054711.85F3D13107@netcom1.netcom.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 04/13/02 00:47, "Mike Harding" wrote: > > Just a head's up - I upgraded my ports today, and /usr/ports/x11/gnome > and /usr/ports/x11/gnome-fifth-toe punked out fairly early in their > builds, leaving me with a fairly disfunctionaly computer. I had > backed out both versions of gettext from my system and then rebuilt - > the ports generally fail like this Which ports in particular? I purposely ran through a full x11/gnome build (and x11/kde2) before committing to avoid this kind of stuff. > /usr/local/bin/msgfmt -o zh_TW.Big5.mo zh_TW.Big5.po > zh_TW.Big5.po:588:13: invalid multibyte sequence > zh_TW.Big5.po:588:14: invalid multibyte sequence > /usr/local/bin/msgfmt: found 2 fatal errors Easy to fix: In Makefile - add: BUILD_DEPENDS= msgfmt-old:${PORTSDIR}/devel/gettext-old - add MSGFMT="${LOCALBASE}/bin/msgfmt-old" XGETTEXT="${LOCALBASE}/bin/xgettext-old" to CONFIGURE_ENV. I'll go restart a gnome build now.. It's possible that I didn't commit the entire patchset.. Apologies for any confusion. -aDe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 9:31:47 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by hub.freebsd.org (Postfix) with ESMTP id D83DD37B405; Sat, 13 Apr 2002 09:31:44 -0700 (PDT) Received: from lsanca1-ar6-4-35-069-181.elnk.dsl.gtei.net ([4.35.69.181] helo=netcom1.netcom.com) by smtp6.mindspring.com with esmtp (Exim 3.33 #1) id 16wQRB-00003q-00; Sat, 13 Apr 2002 12:31:42 -0400 Received: by netcom1.netcom.com (Postfix, from userid 1000) id E4C5813116; Sat, 13 Apr 2002 09:31:40 -0700 (PDT) From: Mike Harding To: ade@FreeBSD.org Cc: gnome@freebsd.org In-reply-to: (message from Ade Lovett on Sat, 13 Apr 2002 10:35:37 -0500) Subject: Re: gettext upgrade breaks lots of things References: Message-Id: <20020413163140.E4C5813116@netcom1.netcom.com> Date: Sat, 13 Apr 2002 09:31:40 -0700 (PDT) Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sorry - this was in gtop I think, and gnome-fifth-toe died somewhere. I had to get some work done so I backed up the cvsup date and am rebuilding, so sorry about not having any particulars. I'll try again right now... Date: Sat, 13 Apr 2002 10:35:37 -0500 From: Ade Lovett Sender: owner-freebsd-gnome@FreeBSD.ORG X-Loop: FreeBSD.ORG X-Spam-Status: No, hits=-5.0 required=5.0 tests=IN_REP_TO version=2.11 On 04/13/02 00:47, "Mike Harding" wrote: > > Just a head's up - I upgraded my ports today, and /usr/ports/x11/gnome > and /usr/ports/x11/gnome-fifth-toe punked out fairly early in their > builds, leaving me with a fairly disfunctionaly computer. I had > backed out both versions of gettext from my system and then rebuilt - > the ports generally fail like this Which ports in particular? I purposely ran through a full x11/gnome build (and x11/kde2) before committing to avoid this kind of stuff. > /usr/local/bin/msgfmt -o zh_TW.Big5.mo zh_TW.Big5.po > zh_TW.Big5.po:588:13: invalid multibyte sequence > zh_TW.Big5.po:588:14: invalid multibyte sequence > /usr/local/bin/msgfmt: found 2 fatal errors Easy to fix: In Makefile - add: BUILD_DEPENDS= msgfmt-old:${PORTSDIR}/devel/gettext-old - add MSGFMT="${LOCALBASE}/bin/msgfmt-old" XGETTEXT="${LOCALBASE}/bin/xgettext-old" to CONFIGURE_ENV. I'll go restart a gnome build now.. It's possible that I didn't commit the entire patchset.. Apologies for any confusion. -aDe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 9:38:58 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from omega.lovett.com (omega.lovett.com [209.249.90.123]) by hub.freebsd.org (Postfix) with ESMTP id E30C337B416 for ; Sat, 13 Apr 2002 09:38:55 -0700 (PDT) Received: from [24.243.55.247] (helo=[10.0.0.2] ident=ident) by omega.lovett.com with esmtp (Exim 3.34 #1) id 16wQYB-000Dp7-00; Sat, 13 Apr 2002 09:38:55 -0700 User-Agent: Microsoft-Entourage/10.0.0.1331 Date: Sat, 13 Apr 2002 11:39:09 -0500 Subject: Re: gettext upgrade breaks lots of things From: Ade Lovett To: Mike Harding Cc: Message-ID: In-Reply-To: <20020413163140.E4C5813116@netcom1.netcom.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 04/13/02 11:31, "Mike Harding" wrote: > > Sorry - this was in gtop I think, and gnome-fifth-toe died somewhere. > I had to get some work done so I backed up the cvsup date and am > rebuilding, so sorry about not having any particulars. I'll try > again right now... I think I see the problem. Looks like my gettext-upgrade ports tree was somewhat out of touch with actual reality, and a few ports went through that shouldn't have done. I'm rebuilding both x11/gnome and x11/gnome-fifth-toe right now, and should have some patches by the end of today. I coulda *sworn* I fixed them though :) *sigh* -aDe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 10: 7:41 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 66F5C37B430; Sat, 13 Apr 2002 10:07:22 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DH7M836049; Sat, 13 Apr 2002 10:07:22 -0700 (PDT) (envelope-from marcus) Date: Sat, 13 Apr 2002 10:07:22 -0700 (PDT) From: Message-Id: <200204131707.g3DH7M836049@freefall.freebsd.org> To: ports@geeksrus.net, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/35980: www/mozilla{,-headers}: installs incorrectly if *built* as non-root Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Synopsis: www/mozilla{,-headers}: installs incorrectly if *built* as non-root State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sat Apr 13 10:07:03 PDT 2002 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=35980 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 10:13:13 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id DED5637B416; Sat, 13 Apr 2002 10:13:03 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3DHCq0Q000414; Sat, 13 Apr 2002 13:12:52 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3DHCpNK000413; Sat, 13 Apr 2002 13:12:51 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: ORBit 0.5.15 b0rked From: Joe Marcus Clarke To: Muhannad Asfour Cc: gnome@FreeBSD.ORG, ade@FreeBSD.ORG, ports@FreeBSD.ORG In-Reply-To: <1018678513.29094.2.camel@ergo.wox.org> References: <1018678513.29094.2.camel@ergo.wox.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-yKIc9En3bzbDkB6+5kpe" X-Mailer: Ximian Evolution 1.0.3 Date: 13 Apr 2002 14:12:51 -0300 Message-Id: <1018717971.306.1.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-yKIc9En3bzbDkB6+5kpe Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2002-04-13 at 03:15, Muhannad Asfour wrote: > Hello. I think there is something wrong with the ORBit port after the > gettext upgrade, because whenever I use pkgdb -F, I always get this > error for it (and yes, I've tried removing it and reinstalling it): >=20 >=20 > Regenerating +REQUIRED_BY files > No such file or directory - "/var/db/pkg/ORBit-0.5.15/+REQUIRED_BY" After the gettext upgrade, you should have ORBit-0.5.15_1. So the older directory probably doesn't exist. Looks like your ports database might be corrupt. I did not encounter this error. I did the upgrade with portupgrade-20020405. Joe >=20 > I've tried "touch /var/db/pkg/ORBit-0.5.15/+REQUIRED_BY", but that > didn't help either, any help would be greatly appreciated. >=20 > Thanks --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-yKIc9En3bzbDkB6+5kpe Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy4ZxMACgkQb2iPiv4Uz4co4ACeLoH0grBV745w/UVZKnYcINNc X4MAn0+/IcwLOmV1cDor3UVnD0EemSaD =wPI7 -----END PGP SIGNATURE----- --=-yKIc9En3bzbDkB6+5kpe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 22: 1:28 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from bw.2y.net (ws496.fx.reshall.wwu.edu [63.229.43.51]) by hub.freebsd.org (Postfix) with SMTP id BDA7437B416 for ; Sat, 13 Apr 2002 22:01:24 -0700 (PDT) Received: (qmail 53960 invoked by uid 1000); 14 Apr 2002 05:01:24 -0000 Date: Sat, 13 Apr 2002 22:01:24 -0700 From: Mike Estes To: gnome@freebsd.org Subject: patch for sysutils/medusa Message-ID: <20020414050123.GA53945@cc.wwu.edu> Reply-To: Mike Estes Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sysutils/medusa won't compile for me unless the following patch is in files/ --- libmedusa/medusa-file-info-utilities.c.orig Thu Dec 21 05:28:44 2000 +++ libmedusa/medusa-file-info-utilities.c Sat Apr 13 21:50:27 2002 @@ -27,10 +27,10 @@ */ #include +#include #include #include #include -#include #include #include this is on -CURRENT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 22:47:13 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from gyros.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id F2E1237B416 for ; Sat, 13 Apr 2002 22:47:07 -0700 (PDT) Received: from gyros.marcuscom.com (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.2/8.12.2) with ESMTP id g3E5kqMH073407; Sun, 14 Apr 2002 01:46:52 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: (from marcus@localhost) by gyros.marcuscom.com (8.12.2/8.12.2/Submit) id g3E5kq8j073406; Sun, 14 Apr 2002 01:46:52 -0400 (EDT) X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f Subject: Re: patch for sysutils/medusa From: Joe Marcus Clarke To: Mike Estes Cc: gnome@FreeBSD.ORG In-Reply-To: <20020414050123.GA53945@cc.wwu.edu> References: <20020414050123.GA53945@cc.wwu.edu> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-fMUGqtm/ZVgGd9G088q5" X-Mailer: Ximian Evolution 1.0.3 Date: 14 Apr 2002 02:46:52 -0300 Message-Id: <1018763212.296.14.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-fMUGqtm/ZVgGd9G088q5 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-04-14 at 02:01, Mike Estes wrote: > sysutils/medusa won't compile for me unless the following patch is in fil= es/ You're right. The recent changes to grp.h must have introduced this.=20 However, I think requiring sys/types.h for grp.h is not POSIX=20 compliant. Perhaps the rev 1.13 to grp.h needs to be rethought. Maybe grp.h needs to acutally include the new sys/_types.h. What do you think, Maxim? Maybe something like: --- src/include/grp.h.orig Sun Apr 14 01:44:35 2002 +++ src/include/grp.h Sun Apr 14 01:45:00 2002 @@ -42,6 +42,7 @@ #ifndef _GRP_H_ #define _GRP_H_ =20 +#include #include #include =20 Joe >=20 > --- libmedusa/medusa-file-info-utilities.c.orig Thu Dec 21 05:28:44 2000 > +++ libmedusa/medusa-file-info-utilities.c Sat Apr 13 21:50:27 2002 > @@ -27,10 +27,10 @@ > */ > =20 > #include > +#include > #include > #include > #include > -#include > #include > #include > =20 >=20 >=20 >=20 >=20 > this is on -CURRENT >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message >=20 --=20 PGP Key: http://www.marcuscom.com/pgp.asc --=-fMUGqtm/ZVgGd9G088q5 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEABECAAYFAjy5F8wACgkQb2iPiv4Uz4fCbwCgl5KMfEdXiJMikiOFI9CkBcqV 038AoJRGKZkSXGsim/uofpiGebTh8SEF =0/U1 -----END PGP SIGNATURE----- --=-fMUGqtm/ZVgGd9G088q5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message From owner-freebsd-gnome Sat Apr 13 23:54:37 2002 Delivered-To: freebsd-gnome@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 0696337B404 for ; Sat, 13 Apr 2002 23:54:32 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0YDF; Sun, 14 Apr 2002 09:56:01 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g3E6tAt29858; Sun, 14 Apr 2002 09:55:10 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204140655.g3E6tAt29858@vega.vega.com> Subject: Re: patch for sysutils/medusa To: marcus@marcuscom.com (Joe Marcus Clarke) Date: Sun, 14 Apr 2002 09:55:10 +0300 (EEST) Cc: estesm@cc.wwu.edu (Mike Estes), gnome@FreeBSD.ORG In-Reply-To: <1018763212.296.14.camel@gyros.marcuscom.com> from "Joe Marcus Clarke" at Apr 14, 2002 02:46:52 AM X-Mailer: ELM [version 2.5 PL5] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It should have been fixed in rev.1.10 of grp.h. I have not checked it yet, but pre-compiled GNOME was shipped with 5.0-DP1 release which means that medusa is OK on -current. Therefore, I would propose to you to do a make world from a freshly cvsuped /usr/src and try again. Of course there is a tiny possibility that grp.h was again broken after rev.1.10, therefore if revision of grp.h installed on your system is more than 1.10 please let me know and I'll try to fix it. -Maxim > > > --=-fMUGqtm/ZVgGd9G088q5 > Content-Type: text/plain > Content-Transfer-Encoding: quoted-printable > > On Sun, 2002-04-14 at 02:01, Mike Estes wrote: > > sysutils/medusa won't compile for me unless the following patch is in fil= > es/ > > You're right. The recent changes to grp.h must have introduced this.=20 > However, I think requiring sys/types.h for grp.h is not POSIX=20 > compliant. Perhaps the rev 1.13 to grp.h needs to be rethought. Maybe > grp.h needs to acutally include the new sys/_types.h. What do you > think, Maxim? Maybe something like: > > --- src/include/grp.h.orig Sun Apr 14 01:44:35 2002 > +++ src/include/grp.h Sun Apr 14 01:45:00 2002 > @@ -42,6 +42,7 @@ > #ifndef _GRP_H_ > #define _GRP_H_ > =20 > +#include > #include > #include > =20 > Joe > > >=20 > > --- libmedusa/medusa-file-info-utilities.c.orig Thu Dec 21 05:28:44 2000 > > +++ libmedusa/medusa-file-info-utilities.c Sat Apr 13 21:50:27 2002 > > @@ -27,10 +27,10 @@ > > */ > > =20 > > #include > > +#include > > #include > > #include > > #include > > -#include > > #include > > #include > > =20 > >=20 > >=20 > >=20 > >=20 > > this is on -CURRENT > >=20 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-gnome" in the body of the message > >=20 > --=20 > PGP Key: http://www.marcuscom.com/pgp.asc > > --=-fMUGqtm/ZVgGd9G088q5 > Content-Type: application/pgp-signature; name=signature.asc > Content-Description: This is a digitally signed message part > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.6 (FreeBSD) > Comment: For info see http://www.gnupg.org > > iEYEABECAAYFAjy5F8wACgkQb2iPiv4Uz4fCbwCgl5KMfEdXiJMikiOFI9CkBcqV > 038AoJRGKZkSXGsim/uofpiGebTh8SEF > =0/U1 > -----END PGP SIGNATURE----- > > --=-fMUGqtm/ZVgGd9G088q5-- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message