From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 00:01:30 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D72D637B401; Sun, 10 Aug 2003 00:01:30 -0700 (PDT) Received: from smtp-send.myrealbox.com (smtp-send.myrealbox.com [192.108.102.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557A043FA3; Sun, 10 Aug 2003 00:01:30 -0700 (PDT) (envelope-from qhwt@myrealbox.com) Received: from me qhwt@smtp-send.myrealbox.com [220.13.16.139] $ on Novell NetWare; Sun, 10 Aug 2003 01:01:33 -0600 Date: Sun, 10 Aug 2003 16:01:29 +0900 From: qhwt@myrealbox.com To: questions@FreeBSD.org Message-ID: <20030810070129.GA1045@myrealbox.com> References: <20030804023319.GA969@myrealbox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030804023319.GA969@myrealbox.com> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org cc: qhwt@myrealbox.com Subject: Who to report bugs in wide-dhcp? (was Re: wide-dhcps dumps core freeing modified pointer) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 07:01:31 -0000 Hello. On Mon, Aug 04, 2003 at 11:33:19AM +0900, qhwt@myrealbox.com wrote: > wide-dhcps dumps core upon boot if the bind file exists and non-empty > (actually I haven't tested if it dumps core even when the file exists > AND is empty, but who cares... :) > The bind file sometimes contains garbage (malloc error message) > after the core dump, but even if I delete the garbage and try to start dhcps > result in the same core dump. > The core dump occurs in function read_subnet() defined in server/database.c, > trying to free() a line buffer via a pointer already modified by prs_inaddr() > called from get_ip(). > The following patch seem to remedie the core dump. > > (I believe MIHIRA-san is the original author of this software, right?) > Regards. > > --- database.c.orig Fri Jan 1 22:35:33 1999 > +++ database.c Sun Aug 3 19:55:32 2003 > @@ -560,15 +560,15 @@ > char **cp; > struct in_addr *subnet; > { > - char *tmpstr; > + char *tmpstr, *line; > struct in_addr *tmpaddr; > > - if ((tmpstr = get_string(cp)) == NULL) { > + if ((line = get_string(cp)) == NULL) { > errno = 0; > syslog(LOG_WARNING, "Can't get strings"); > return(-1); > } > - > + tmpstr = line; > if ((tmpaddr = get_ip(&tmpstr)) == NULL) { > errno = 0; > syslog(LOG_WARNING, "get_ip() error in read_subnet()"); > @@ -576,7 +576,7 @@ > } > > *subnet = *tmpaddr; > - free(tmpstr); > + free(line); > free(tmpaddr); > > return(0); > > Does anyone know who to report bugs in wide-dhcp? I've found a bug in wide-dhcp ports the other day, and reported to ports@FreeBSD.org because the Makefile says it's the maintainer of the port. However, I've received no responses from anyone since then. Shortly after that, I realized that the bug itself is in the original code rather than FreeBSD patches, so I must have sent it to the original author, and that MIHIRA-san is not, because I had no responses from him, even though I Cc:'d on him. Then I found in one of installed documents that bug report should be sent to dhcp-dist@wide.ad.jp . I did, and the mail server at wide.ad.jp said there's no such account there. Or, should I send-pr even if I'm sure the bug is in the orignal code rather than in the FreeBSD ports? But I don't feel like using it because I don't know(and not interested in) how to configure it use my mailer instead of sendmail(1), Regards. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 00:49:31 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E412437B401 for ; Sun, 10 Aug 2003 00:49:31 -0700 (PDT) Received: from ns1.cksoft.de (ns1.cksoft.de [62.111.66.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D48BC43F3F for ; Sun, 10 Aug 2003 00:49:30 -0700 (PDT) (envelope-from ck@cksoft.de) Received: from majakka.cksoft.de (p508A83AD.dip0.t-ipconnect.de [80.138.131.173]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by ns1.cksoft.de (Postfix) with ESMTP id CF4FD15C008 for ; Sun, 10 Aug 2003 09:49:28 +0200 (CEST) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 1D2EC44C78 for ; Sun, 10 Aug 2003 09:49:28 +0200 (CEST) Received: by majakka.cksoft.de (Postfix, from userid 1000) id 4F68044C77; Sun, 10 Aug 2003 09:49:27 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 4B35C44ACB for ; Sun, 10 Aug 2003 09:49:27 +0200 (CEST) Date: Sun, 10 Aug 2003 09:49:27 +0200 (CEST) From: Christian Kratzer To: freebsd-ports@freebsd.org Message-ID: <20030810093552.J43900@majakka.cksoft.de> X-Spammer-Kill-Ratio: 75% MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020300-cksoft-02bz on majakka.cksoft.de Subject: openldap client server split (ports/54436) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 07:49:32 -0000 Hi, a large pr splitting the openldap 2.0, 2.1 and 2.2 ports into -client and -server has been pending some time now. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/54436 I would very much welcome this being committed soon for following reasons: - FreeBSD 5.2 will bring all the necessary infrastructure for nss-ldap and we would like to have a lightweight openldap??-client port for machines that do not need the server. - It's time now to commit the -client,-server split so other ports can adjust for 5.2 - I believe the KDE project would also welcome a lightweight openldap??-client as a dependency. - We would like to have one maintainer for all the openldap ports to ease maintenance and have larger consistency between the ports. I will happily turn over my openldap20 ports to Oliver Eikemeier who authored above mentioned pr. - Maintaining openldap in general is stuck before we get this major step of splitting the ports into client and server done. Oliver is still on vacation this week according to his email bouncer so I would volunteer to assist the committers in sorting out the pr in case there are questions getting this committed. So could we have a hands up on who would be interested in getting this committed soon. We had some discussion when the pr came in but nothing has happened since. Greetings Christian -- CK Software GmbH Christian Kratzer, Schwarzwaldstr. 31, 71131 Jettingen Email: ck@cksoft.de Phone: +49 7452 889-135 Open Software Solutions, Network Security Fax: +49 7452 889-136 FreeBSD spoken here! From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 01:13:10 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 596A037B401 for ; Sun, 10 Aug 2003 01:13:10 -0700 (PDT) Received: from netgecko.info (netgecko.info [217.160.92.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7285B43F75 for ; Sun, 10 Aug 2003 01:13:09 -0700 (PDT) (envelope-from alex.kiesel@document-root.de) Received: from [192.168.2.111] (dsl-082-082-077-165.arcor-ip.net [82.82.77.165]) by netgecko.info (Postfix) with ESMTP id 4F0C28819C for ; Sun, 10 Aug 2003 10:17:34 +0200 (CEST) From: Alex Kiesel To: ports@freebsd.org Content-Type: text/plain Message-Id: <1060503184.33951.4.camel@boost.home.ahk> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 10:13:05 +0200 Content-Transfer-Encoding: 7bit Subject: mozilla-1.4 broken on 5.1-RELEASE? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 08:13:10 -0000 Hi, compilation of mozilla-1.4 reproducably ends up with this: c++ -o nsUnicodeToCP864i.o -c -DOSTYPE=\"FreeBSD5\" -DOSARCH=\"FreeBSD\" -I./../util -I../../../dist/include/xpcom -I../../../dist/include/string -I../../../dist/include/uconv -I../../../dist/include/ucvibm -I../../../dist/include -I/usr/ports/www/mozilla/work/mozilla/dist/include/nspr -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC -I/usr/X11R6/include -I/usr/X11R6/include -fno-rtti -fno-exceptions -Wall -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-long-long -O -pipe -mcpu=pentiumpro -fshort-wchar -pipe -DNDEBUG -DTRIMMED -ffunction-sections -I/usr/X11R6/include -I/usr/X11R6/include -DMOZILLA_CLIENT -include ../../../mozilla-config.h nsUnicodeToCP864i.cpp rm -f libucvibm_s.a ar cr libucvibm_s.a nsCP850ToUnicode.o nsCP852ToUnicode.o nsCP855ToUnicode.o nsCP857ToUnicode.o nsCP862ToUnicode.o nsCP864ToUnicode.o nsCP864iToUnicode.o nsUnicodeToCP850.o nsUnicodeToCP852.o nsUnicodeToCP855.o nsUnicodeToCP857.o nsUnicodeToCP862.o nsUnicodeToCP864.o nsUnicodeToCP864i.o ranlib libucvibm_s.a ../../../config/nsinstall -R -m 644 libucvibm_s.a ../../../dist/lib gmake[4]: *** [libs] Bus error (core dumped) gmake[4]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/intl/uconv/ucvibm' gmake[3]: *** [libs] Error 2 gmake[3]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/intl/uconv' gmake[2]: *** [libs] Error 2 gmake[2]: Leaving directory `/usr/ports/www/mozilla/work/mozilla/intl' 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. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade38887.0 make -DWITHOUT_MAILNEWS -DWITHOUT_COMPOSER -DWITHOUT_LDAP -DWITHOUT_CHATZILLA ** Fix the problem and try again. ** The following packages were not installed or upgraded (*:skipped / !:failed) ! www/mozilla (linker error) System is a recently (yesterday) installed FreeBSD 5.1-RELEASE. - Alex From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 02:15:34 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC19637B401 for ; Sun, 10 Aug 2003 02:15:34 -0700 (PDT) Received: from iguana.simplexity.net (adsl-216-103-84-145.dsl.snfc21.pacbell.net [216.103.84.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34AEE43FAF for ; Sun, 10 Aug 2003 02:15:34 -0700 (PDT) (envelope-from ocrow@simplexity.net) Received: from localhost (vakjdgamqj5d6doo@localhost [127.0.0.1]) h7A9FWfn006997; Sun, 10 Aug 2003 02:15:33 -0700 (PDT) (envelope-from ocrow@simplexity.net) Date: Sun, 10 Aug 2003 02:15:32 -0700 (PDT) From: Oliver Crow To: Anti In-Reply-To: <20030809223043.6e5d8762.fearow@comcast.net> Message-ID: <20030810021042.M1211-100000@iguana.simplexity.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: jerry@thehutt.org cc: freebsd-ports@freebsd.org Subject: Re: problems compiling expect X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 09:15:35 -0000 On Sat, 9 Aug 2003, Anti wrote: > On Sat, 9 Aug 2003 12:31:00 -0700 (PDT) > Oliver Crow wrote: > > > > > I'm having problems building the lang/expect port. > > > > I'm running 4.8-RELEASE-p1. The PORTVERSION is 5.38.0. I cvsup'd > > ports today. > > > > I do a 'make distclean' and a 'make -DWITHOUT_X11', and get this error: > > yes, this does not compile with WITHOUT_X11 defined, you can copy the > attached patch into /usr/ports/lang/expect/files and it will work. That worked. Thanks! Will that patch be submitted to the ports tree? (Note for anyone else having this problem ... the filename to give the patch file that Anti sent is /usr/ports/lang/expect/files/patch-zz) Oliver From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 02:53:42 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38D9837B401 for ; Sun, 10 Aug 2003 02:53:42 -0700 (PDT) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B87D43F3F for ; Sun, 10 Aug 2003 02:53:41 -0700 (PDT) (envelope-from Jan.Stocker@t-online.de) Received: from fwd05.aul.t-online.de by mailout05.sul.t-online.com with smtp id 19lmtM-0005WM-01; Sun, 10 Aug 2003 11:53:36 +0200 Received: from [10.1.2.252] (GvE3MmZb8eacn555GRQCWyIZaFd0jXRbHpho9rmS1pS8Qb0f3srSgW@[217.82.141.210]) by fwd05.sul.t-online.com with esmtp id 19lmtC-22uLR20; Sun, 10 Aug 2003 11:53:26 +0200 From: Jan.Stocker@t-online.de (Jan Stocker) To: Dag-Erling Smorgrav In-Reply-To: References: <1027353348.368.30.camel@twoflower> <1027355117.368.34.camel@twoflower> Content-Type: text/plain Message-Id: <1060509151.679.8.camel@Twoflower.liebende.de> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.3 Date: 10 Aug 2003 09:52:32 +0000 Content-Transfer-Encoding: 7bit X-Seen: false X-ID: GvE3MmZb8eacn555GRQCWyIZaFd0jXRbHpho9rmS1pS8Qb0f3srSgW cc: ports@FreeBSD.org Subject: Abuse X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 09:53:42 -0000 games/abuse didn't run on my system all the years.... it tells me: "BOSS_ANT has no value" and stops... after this update to 0.7 the problem still exists and i took some mins to search for a solution.... here it is... and i think we've to add something to pkg-message or make a user-install entry: mkdir ~/.abuse echo '(setq darkest_gray 40)' > ~/.abuse/gamma.lsp On Mon, 2002-07-22 at 16:43, Dag-Erling Smorgrav wrote: > Jan.Stocker@t-online.de (Jan Stocker) writes: > > It doesnt find the ANT_BOSS, too... > > Wierd, I have no such trouble. > > DES -- Jan Stocker From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 07:15:02 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D521C37B401 for ; Sun, 10 Aug 2003 07:15:02 -0700 (PDT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 9CEAE43FA3 for ; Sun, 10 Aug 2003 07:15:01 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 28470 invoked by uid 65534); 10 Aug 2003 14:14:59 -0000 Received: from dsl-cust-145.openweb.ca (EHLO [64.39.186.145]) (64.39.186.145) by mail.gmx.net (mp005) with SMTP; 10 Aug 2003 16:14:59 +0200 From: Adam McLaurin To: ports@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-28TpFvQu/rhV5we6Kxbs" Message-Id: <1060524892.611.4.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 10:14:52 -0400 Subject: INDEX build fails with thousands of make_index errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 14:15:03 -0000 --=-28TpFvQu/rhV5we6Kxbs Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I tried rebuilding my INDEX earlier today on my server, and I had literally thousands of make_index errors. I thought maybe something was goofed in my tree, so I 'rm -rf /usr/ports' and started clean. No help.=20 Just for kicks, I tried rebuilding INDEX on my other machine (which I don't normally do, since it's so slow), and I got the exact same errors. Note that both machines just use ports-all in the ports-supfile. Here's the tail end of the output of my update script: make_index: ParMetis-3.0: no entry for /usr/ports/net/mpich make_index: ParMetis-3.0: no entry for /usr/ports/net/mpich make_index: tux_aqfh-1.0.14: no entry for /usr/ports/x11-toolkits/plib make_index: tux_aqfh-1.0.14: no entry for /usr/ports/x11/XFree86-4-libraries make_index: tux_aqfh-1.0.14: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xmcd-3.2.1: no entry for /usr/ports/x11-toolkits/open-motif make_index: xmcd-3.2.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xmcd-3.2.1: no entry for /usr/ports/x11-toolkits/open-motif make_index: xmcd-3.2.1: no entry for /usr/ports/x11/XFree86-4-libraries Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry:=20 Done. [Updating the portsdb in /usr/ports ... - 5467 port entries found /usr/ports/INDEX-5:1:Port info line must consist of 10 fields. /usr/ports/INDEX-5:2:Port info line must consist of 10 fields. /usr/ports/INDEX-5:3:Port info line must consist of 10 fields. /usr/ports/INDEX-5:4:Port info line must consist of 10 fields. .........1000.........2000.........3000.........4000.........5000.... ..... done] Cleaning out /usr/ports/*/*/work... done. ---> Updating the pkgdb Here is the script I use to update: #!/bin/sh CVSUP_MIRROR=3Dcvsup12.FreeBSD.org OUTDATED_LOG=3D/home/eskimo/logs/outdated.ports.txt CVSUP_SUPFILE=3D/usr/share/examples/cvsup/ports-supfile /usr/local/bin/cvsup -h $CVSUP_MIRROR -P - -g -L 2 $CVSUP_SUPFILE /usr/local/sbin/pkgdb -aF cd /usr/ports /usr/bin/make -v index /usr/local/sbin/portsdb -u /usr/local/sbin/portsclean -C /usr/local/sbin/pkgdb -u /usr/local/sbin/portversion -v |/usr/bin/fgrep "needs" >$OUTDATED_LOG Anyone else seeing anything like this as of yesterday/today? --=20 Adam McLaurin --=-28TpFvQu/rhV5we6Kxbs Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/NlNct+DSc2Q4lGYRAmsRAJ9XWWNb86VgMIgv7f3EeQzMptSl8QCfSlWh gqWzdHhS0W1xw6rGOvT2Rys= =eV7G -----END PGP SIGNATURE----- --=-28TpFvQu/rhV5we6Kxbs-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 07:22:34 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 383FD37B405 for ; Sun, 10 Aug 2003 07:22:34 -0700 (PDT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0CDC143F3F for ; Sun, 10 Aug 2003 07:22:33 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 27843 invoked by uid 65534); 10 Aug 2003 14:22:32 -0000 Received: from dsl-cust-145.openweb.ca (EHLO [64.39.186.145]) (64.39.186.145) by mail.gmx.net (mp007) with SMTP; 10 Aug 2003 16:22:32 +0200 From: Adam McLaurin To: freebsd-ports@freebsd.org In-Reply-To: <1060524892.611.4.camel@jake> References: <1060524892.611.4.camel@jake> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-8eGLxTTCoWR7+gSo0z6X" Message-Id: <1060525346.611.6.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 10:22:26 -0400 Subject: Re: INDEX build fails with thousands of make_index errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 14:22:34 -0000 --=-8eGLxTTCoWR7+gSo0z6X Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-08-10 at 10:14, Adam McLaurin wrote: > I tried rebuilding my INDEX earlier today on my server, and I had > literally thousands of make_index errors. I thought maybe something was > goofed in my tree, so I 'rm -rf /usr/ports' and started clean. No help.=20 Here's the first few lines of my INDEX. Perhaps this will shed some light: *** Error code 1||||||| Stop in /usr/ports/multimedia.||||||| Stop in /usr/ports.||||||| ||||||| 9e-1.0|/usr/ports/archivers/9e|/usr/local|Explode Plan9 archives|/usr/ports/archivers/9e/pkg-descr|ports@FreeBSD.Org|archivers|||ht= tp://www.eecs.harvard.edu/~wkj/Software/9e/ --=20 Adam McLaurin --=-8eGLxTTCoWR7+gSo0z6X Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/NlUit+DSc2Q4lGYRAs9ZAKCqV+M/U9KgR40tof+hVYXxddxn4QCfdWYM 3YXEOZf5iIjZsJwslNRm628= =4cE6 -----END PGP SIGNATURE----- --=-8eGLxTTCoWR7+gSo0z6X-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 07:29:11 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C170F37B401 for ; Sun, 10 Aug 2003 07:29:11 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id A9AF843F85 for ; Sun, 10 Aug 2003 07:29:10 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 12865 invoked by uid 65534); 10 Aug 2003 14:29:09 -0000 Received: from dsl-cust-145.openweb.ca (EHLO [64.39.186.145]) (64.39.186.145) by mail.gmx.net (mp003) with SMTP; 10 Aug 2003 16:29:09 +0200 From: Adam McLaurin To: freebsd-ports@freebsd.org In-Reply-To: <1060524892.611.4.camel@jake> References: <1060524892.611.4.camel@jake> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-PBTuz75yZm7A2U/WX28l" Message-Id: <1060525743.611.9.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 10:29:04 -0400 Subject: Re: INDEX build fails with thousands of make_index errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 14:29:12 -0000 --=-PBTuz75yZm7A2U/WX28l Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-08-10 at 10:14, Adam McLaurin wrote: > I tried rebuilding my INDEX earlier today on my server, and I had > literally thousands of make_index errors. I thought maybe something was > goofed in my tree, so I 'rm -rf /usr/ports' and started clean. No help.=20 Here are the last few lines of INDEX: libfame-0.9.0|/usr/ports/multimedia/libfame|/usr/local|A video encoding library|/usr/ports/multimedia/libfame/pkg-descr|ports@FreeBSD.org|multimedi= a|libtool-1.3.5_1||http://fame.sourceforge.net/ libmatroska-0.4.3|/usr/ports/multimedia/libmatroska|/usr/local|Extensible M= ultimedia Container Format|/usr/ports/multimedia/libmatroska/pkg-descr|liou= x@FreeBSD.org|multimedia audio|gcc-3.1.1_20020909 gettext-0.11.5_1 gmake-3.= 80 libiconv-1.9.1_1||http://www.matroska.org/ libmovtar-0.1.3|/usr/ports/multimedia/libmovtar|/usr/local|Supports reading/writing of MJPEG video in YUV 4:2:2 JPEG|/usr/ports/multimedia/libmovtar/pkg-descr|lioux@FreeBSD.org|multimedia= |Mesa-3.4.2_2 aalib-1.4.r5_1 gettext-0.11.5_1 glib-1.2.10_9 gmake-3.80 jpeg= -6b_1 libiconv-1.9.1_1 pkgconfig-0.15.0 sdl-1.2.5_2 svgalib-1.4.3|Mesa-3.4.= 2_2 aalib-1.4.r5_1 glib-1.2.10_9 jpeg-6b_1 pkgconfig-0.15.0 sdl-1.2.5_2 svg= alib-1.4.3|http://sourceforge.net/projects/mjpeg/ libmpeg2-0.3.1_1|/usr/ports/multimedia/libmpeg2|/usr/local|A free library for decoding mpeg-2 and mpeg-1 video streams|/usr/ports/multimedia/libmpeg2/pkg-descr|lioux@FreeBSD.org|multimed= ia|libtool-1.3.5_1||http://libmpeg2.sourceforge.net/ libquicktime-0.9.1_2|/usr/ports/multimedia/libquicktime|/usr/local|A library for reading and writing quicktime files|/usr/ports/multimedia/libquicktime/pkg-descr|ports@FreeBSD.org|multim= edia|Mesa-3.4.2_2 aalib-1.4.r5_1 gettext-0.11.5_1 glib-1.2.10_9 jpeg-6b_1 l= ibdv-0.9.9 libiconv-1.9.1_1 libogg-1.0_1,3 libtool-1.3.5_1 libvorbis-1.0_1,= 3 pkgconfig-0.15.0 png-1.2.5_2 popt-1.6.4 sdl-1.2.5_2 svgalib-1.4.3|Mesa-3.= 4.2_2 aalib-1.4.r5_1 gettext-0.11.5_1 glib-1.2.10_9 jpeg-6b_1 libdv-0.9.9 l= ibiconv-1.9.1_1 libogg-1.0_1,3 libvorbis-1.0_1,3 pkgconfig-0.15.0 png-1.2.5= _2 popt-1.6.4 sdl-1.2.5_2 svgalib-1.4.3|http://libquicktime.sourceforge.net= / --=20 Adam McLaurin --=-PBTuz75yZm7A2U/WX28l Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/Nlavt+DSc2Q4lGYRAkzjAJ4hk8JaU8HviSxcuucwpKjcCfeNiwCgh4eg pd/f3iERq61MK+ZjZS0lzhY= =OGhQ -----END PGP SIGNATURE----- --=-PBTuz75yZm7A2U/WX28l-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 08:08:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 580FB37B401 for ; Sun, 10 Aug 2003 08:08:20 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 76A3A43FB1 for ; Sun, 10 Aug 2003 08:08:18 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 15158 invoked by uid 65534); 10 Aug 2003 15:08:17 -0000 Received: from dsl-cust-145.openweb.ca (EHLO [64.39.186.145]) (64.39.186.145) by mail.gmx.net (mp002) with SMTP; 10 Aug 2003 17:08:17 +0200 From: Adam McLaurin To: freebsd-ports@freebsd.org In-Reply-To: <1060524892.611.4.camel@jake> References: <1060524892.611.4.camel@jake> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-94tP6wphPSYQ4JQE/8cm" Message-Id: <1060528091.611.11.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 11:08:11 -0400 Subject: Re: INDEX build fails with thousands of make_index errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 15:08:23 -0000 --=-94tP6wphPSYQ4JQE/8cm Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-08-10 at 10:14, Adam McLaurin wrote: > I tried rebuilding my INDEX earlier today on my server, and I had > literally thousands of make_index errors. I thought maybe something was > goofed in my tree, so I 'rm -rf /usr/ports' and started clean. No help.=20 Found the culprit: -$ make -f /usr/ports/multimedia/libxine/Makefile describe =20 "/usr/ports/multimedia/libxine/Makefile", line 53: warning: String comparison operator should be either =3D=3D or !=3D "/usr/ports/multimedia/libxine/Makefile", line 53: Malformed conditional ((${OSVERSION} < 500028)) "/usr/ports/multimedia/libxine/Makefile", line 53: Missing dependency operator "/usr/ports/multimedia/libxine/Makefile", line 55: if-less endif "/usr/ports/multimedia/libxine/Makefile", line 55: Need an operator make: fatal errors encountered -- cannot continue --=20 Adam McLaurin --=-94tP6wphPSYQ4JQE/8cm Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/Nl/bt+DSc2Q4lGYRApnWAJwPfaH1EvGURq4q4yU4M3HZJTPiVwCgtABk r5rmC9Op7c7XTnsHIFbggKY= =JiMh -----END PGP SIGNATURE----- --=-94tP6wphPSYQ4JQE/8cm-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 08:54:46 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 140BB37B401 for ; Sun, 10 Aug 2003 08:54:46 -0700 (PDT) Received: from apate.telenet-ops.be (apate.telenet-ops.be [195.130.132.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A1BF43FA3 for ; Sun, 10 Aug 2003 08:54:45 -0700 (PDT) (envelope-from memento_mori@pandora.be) Received: from localhost (localhost.localdomain [127.0.0.1]) by apate.telenet-ops.be (Postfix) with SMTP id 7FD2337F89 for ; Sun, 10 Aug 2003 17:54:43 +0200 (MEST) Received: from f4phantom2.erathia (D576442F.kabel.telenet.be [213.118.68.47]) by apate.telenet-ops.be (Postfix) with ESMTP id 2066E37EED for ; Sun, 10 Aug 2003 17:54:43 +0200 (MEST) From: Memento Mori To: ports@FreeBSD.org Date: Sun, 10 Aug 2003 17:54:37 +0200 User-Agent: KMail/1.5.3 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200308101754.37296.memento_mori@pandora.be> Subject: gimp-dev won't build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 15:54:46 -0000 hi, can't compile gimp-dev with the latest tree on 4.8-stable. when i build it with libexif already installed, it sees it and stops to compile, asking me to delete libexif. so i do, and then i get this error: ===> gimp-1.3.17_2,1 depends on shared library: exif.9 - not found ===> Verifying install for exif.9 in /usr/ports/graphics/libexif ===> Returning to build of gimp-1.3.17_2,1 Error: shared library "exif.9" does not exist *** Error code 1 can whoever please fix ? thanks From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 09:04:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0817937B401 for ; Sun, 10 Aug 2003 09:04:26 -0700 (PDT) Received: from hood.oook.cz (hood.oook.cz [212.27.205.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8992943F93 for ; Sun, 10 Aug 2003 09:04:24 -0700 (PDT) (envelope-from cvs@oook.cz) Received: from hood.oook.cz (localhost.oook.cz [127.0.0.1]) by hood.oook.cz (8.12.9/8.12.9) with ESMTP id h7AG4M6R027626 for ; Sun, 10 Aug 2003 18:04:22 +0200 (CEST) (envelope-from cvs@oook.cz) Received: (from pav@localhost) by hood.oook.cz (8.12.9/8.12.9/Submit) id h7AG4M0n027625 for freebsd-ports@freebsd.org; Sun, 10 Aug 2003 18:04:22 +0200 (CEST) X-Authentication-Warning: hood.oook.cz: pav set sender to cvs@oook.cz using -f From: Pav Lucistnik To: freebsd-ports@freebsd.org In-Reply-To: <200308101754.37296.memento_mori@pandora.be> References: <200308101754.37296.memento_mori@pandora.be> Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: quoted-printable Message-Id: <1060531461.683.4.camel@hood.oook.cz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 18:04:21 +0200 Subject: Re: gimp-dev won't build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pav@oook.cz List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 16:04:26 -0000 V ne, 10. 08. 2003 v 17:54, Memento Mori p=ED=B9e: > can't compile gimp-dev with the latest tree on 4.8-stable. >=20 > when i build it with libexif already installed, it sees it and stops to=20 > compile, asking me to delete libexif. so i do, and then i get this error: >=20 > =3D=3D=3D> gimp-1.3.17_2,1 depends on shared library: exif.9 - not foun= d > =3D=3D=3D> Verifying install for exif.9 in /usr/ports/graphics/libexif > =3D=3D=3D> Returning to build of gimp-1.3.17_2,1 > Error: shared library "exif.9" does not exist > *** Error code 1 >=20 > can whoever please fix ? thanks This was fixed by maho@ 3 hours ago. Please cvsup your ports tree again. --=20 Pav Lucistnik What do we know about love? Love is like a pear. Pear is sweet and have a specific shape. Try to exactly define the shape of a pear. -- Marigold: 50 Years Of Poetry From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 09:15:04 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8D2237B401 for ; Sun, 10 Aug 2003 09:15:04 -0700 (PDT) Received: from hoolan.org (db217.csie.ncu.edu.tw [140.115.50.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id D295943F93 for ; Sun, 10 Aug 2003 09:15:03 -0700 (PDT) (envelope-from freebsd@hoolan.org) Received: from hoolan.org (localhost [127.0.0.1]) by hoolan.org (8.12.9/8.12.9) with ESMTP id h7AGF4WU049882 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 11 Aug 2003 00:15:05 +0800 (CST) (envelope-from freebsd@hoolan.org) Received: from localhost (jeff@localhost) by hoolan.org (8.12.9/8.12.9/Submit) with ESMTP id h7AGF43D049879 for ; Mon, 11 Aug 2003 00:15:04 +0800 (CST) (envelope-from freebsd@hoolan.org) Date: Mon, 11 Aug 2003 00:15:03 +0800 (CST) From: Yung-Sheng Tang X-X-Sender: jeff@hoolan.org To: freebsd-ports@freebsd.org Message-ID: <20030811001416.V49842-100000@hoolan.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Apache 1.3.28 fail to timeout idle keep-alive connection X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 16:15:05 -0000 Hello, After upgrading from Apache 1.3.27 to 1.3.28 (using ports), I notice memory utilization increases a lot, because httpd does not terminate some of idle keep-alive connection. It can not be re-produced with interactive talking to httpd yet. I have default Timeout and KeepaliveTimeout setting in httpd.conf. Any one else has the same situation there? I don't subscribe to the list, so any input please CC me as well. Thank you. -jeff From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 09:42:10 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 024EC37B401; Sun, 10 Aug 2003 09:42:09 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EE8443F93; Sun, 10 Aug 2003 09:42:09 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id E88E1142DC; Sun, 10 Aug 2003 11:42:08 -0500 (CDT) Date: Sun, 10 Aug 2003 11:42:08 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: Kris Kennaway In-Reply-To: <20030810062254.GA11719@rot13.obsecurity.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Greg 'groggy' Lehey cc: ports@FreeBSD.org Subject: Re: Ports scheduled for removal on Nov 7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 16:42:10 -0000 > I think it would definitely be off-topic for freebsd-questions, but > I'd be more open to -announce. The only thing is that port removals > are a periodic event (I just happen to have more than usual queued up > this time), so if I do it this time I should do it every time. Well, I can suggest a class of messages such as (ports scheduled for deletion|changes to ports framework that will affect various ports|freeze in effect|freeze lifted), possibly others. I think there would be an audience for this mailing list who would not otherwise be able to follow the large-volume ports mailing lists. freebsd-ports-announce? mcl From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 10:00:29 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37E4937B401 for ; Sun, 10 Aug 2003 10:00:29 -0700 (PDT) Received: from tomts21-srv.bellnexxia.net (tomts21-srv.bellnexxia.net [209.226.175.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE67743F75 for ; Sun, 10 Aug 2003 10:00:27 -0700 (PDT) (envelope-from dmagda@magda.ca) Received: from number6.magda.ca ([64.229.176.216]) by tomts21-srv.bellnexxia.netESMTP <20030810170026.DDZB19697.tomts21-srv.bellnexxia.net@number6.magda.ca> for ; Sun, 10 Aug 2003 13:00:26 -0400 Received: from number6.magda.ca (localhost.magda.ca [127.0.0.1]) by number6.magda.ca (8.12.9/8.12.9) with ESMTP id h7AH0QPl000551 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 10 Aug 2003 13:00:26 -0400 (EDT) (envelope-from dmagda@magda.ca) Received: (from dmagda@localhost) by number6.magda.ca (8.12.9/8.12.9/Submit) id h7AH0QQo000550 for ports@freebsd.org; Sun, 10 Aug 2003 13:00:26 -0400 (EDT) (envelope-from dmagda) Date: Sun, 10 Aug 2003 13:00:26 -0400 From: David Magda To: ports@freebsd.org Message-ID: <20030810170025.GA532@number6.magda.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: status of some PRs X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Magda List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 17:00:29 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, Can someone look at the following PRs that I submitted: . ports/45977 - this can be closed . ports/50324 - this can be closed . ports/54717 - check if it's okay, and commit the new port if so Thanks for your time. =20 --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/Nnop2MrIoZGj+vYRAtPgAJ9xcCx/BXOhOrCuVXpKfmZ46x284ACfffWx EnjbygnkX362pruiReyu9nk= =EKTR -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 10:26:59 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 031A837B401; Sun, 10 Aug 2003 10:26:59 -0700 (PDT) Received: from totem.fix.no (totem.fix.no [80.91.36.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E7D743F3F; Sun, 10 Aug 2003 10:26:58 -0700 (PDT) (envelope-from anders@FreeBSD.org) Received: by totem.fix.no (Postfix, from userid 1000) id EF4112024B; Sun, 10 Aug 2003 19:27:13 +0200 (CEST) Date: Sun, 10 Aug 2003 19:27:13 +0200 From: Anders Nordby To: Christoph Kukulies Message-ID: <20030810172713.GA59792@totem.fix.no> Mail-Followup-To: Anders Nordby , Christoph Kukulies , freebsd-current@freebsd.org, ports@FreeBSD.org References: <200308101409.h7AE9f502750@accms33.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200308101409.h7AE9f502750@accms33.physik.rwth-aachen.de> X-PGP-Key: http://anders.fix.no/pgp/ X-PGP-Key-FingerPrint: 1E0F C53C D8DF 6A8F EAAD 19C5 D12A BC9F 0083 5956 User-Agent: Mutt/1.5.1i cc: ports@FreeBSD.org cc: freebsd-current@freebsd.org Subject: Re: X11 fonts ugly X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 17:26:59 -0000 Hello, There is a howto: XFree86 Font De-uglification HOWTO http://feenix.burgiss.net/ldp/fdu/ Also consider setting minimum font size in Mozilla font preferences. (And this question should have been sent to the ports list, not here on current.) On Sun, Aug 10, 2003 at 04:09:41PM +0200, Christoph Kukulies wrote: > I compiled XFree86/4.3.1 and installed mozilla 1.4 as package > and when I start mozilla fonts show up unevenly weighted (rounding > problems?) > > I wonder if this is a problem with the installed fonts themselves, > or with X11? > > XF86Config looks like this (regarding fontpath): > > Section "Files" > > RgbPath "/usr/X11R6/lib/X11/rgb" > # FontPath "unix/:-1" > FontPath "/usr/X11R6/lib/X11/fonts/local/" > FontPath "/usr/X11R6/lib/X11/fonts/misc/" > FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled" > FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled" > FontPath "/usr/X11R6/lib/X11/fonts/Type1/" > FontPath "/usr/X11R6/lib/X11/fonts/CID/" > FontPath "/usr/X11R6/lib/X11/fonts/Speedo/" > FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" > FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" > EndSection > > I read somewhere of antialiasing can be switched on or of > but I forgot whether it was with X11, mozilla or NVIDIA driver > compilation. > > > -- > Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" -- Anders. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 11:07:05 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15B0337B401 for ; Sun, 10 Aug 2003 11:07:05 -0700 (PDT) Received: from fatpipi.cirx.org (fatpipi.cirx.org [211.23.144.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0983743F3F for ; Sun, 10 Aug 2003 11:07:04 -0700 (PDT) (envelope-from clive@tongi.org) Received: from fatpipi.cirx.org (nullmail@internal-fxp.home [192.168.1.254]) by fatpipi.cirx.org (8.12.8p1/8.12.8) with SMTP id h7AI6wUM003301; Mon, 11 Aug 2003 02:06:58 +0800 (CST) (envelope-from clive@tongi.org) Received: (nullmailer pid 3299 invoked by uid 1000); Sun, 10 Aug 2003 18:06:57 -0000 Date: Mon, 11 Aug 2003 02:06:57 +0800 From: Clive Lin To: Thierry Stephan Message-ID: <20030810180657.GA3218@fatpipi.cirx.org> References: <20030810173852.GA20311@urania> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030810173852.GA20311@urania> X-Operating-System: FreeBSD i386 X-PGP-key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xA008C03E User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org Subject: Re: Pb using gpa on FreeBSD 5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2003 18:07:05 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sun, Aug 10, 2003 at 07:38:52PM +0200, Thierry Stephan wrote: > Dear sir, > I am trying to use gpa on FreeBSD 5.1, it does not want to work: > -bash-2.05b$ gpa > gpa in free(): warning: modified (page-) pointer > gpa in free(): warning: pointer to wrong page > gpa in free(): warning: pointer to wrong page > gpa in free(): warning: pointer to wrong page > gpa in free(): warning: modified (chunk-) pointer > gpa in free(): warning: modified (chunk-) pointer > gpa in free(): warning: modified (chunk-) pointer > gpa in free(): warning: modified (chunk-) pointer > gpa in free(): warning: modified (chunk-) pointer > gpa in free(): warning: modified (chunk-) pointer > Segmentation fault Hi, Although it's me who imported gpa into ports tree, but I rarely use it for ages... The MAINTAINER bit is set to ports@FreeBSD.org, a list for people who are interested in ports stuff. I've cc'd the list in this reply, and hope there might be other people can help you :) Since this is an issue, I'll take a look on it. Please don't expect that I'll solve it in short time, though :) Regards, Clive -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/NomldFUoBaAIwD4RAi/NAJ9W9Ugm+QfUQiH/d+n+9Gk9weX4rACfajNm pKmytKcL+EURNVkGp+m/5nk= =InKW -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 21:15:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3101137B476 for ; Sun, 10 Aug 2003 21:15:25 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 52321441C0 for ; Sun, 10 Aug 2003 16:55:36 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 20513 invoked by uid 65534); 10 Aug 2003 23:55:34 -0000 Received: from dsl-cust-145.openweb.ca (EHLO [64.39.186.145]) (64.39.186.145) by mail.gmx.net (mp026) with SMTP; 11 Aug 2003 01:55:34 +0200 From: Adam McLaurin To: Kris Kennaway In-Reply-To: <20030810225512.GA38231@rot13.obsecurity.org> References: <1060524892.611.4.camel@jake> <20030810225512.GA38231@rot13.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-rGJ/ShAcRXUXBkDj3+K3" Message-Id: <1060559728.611.13.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sun, 10 Aug 2003 19:55:28 -0400 cc: ports@freebsd.org Subject: Re: INDEX build fails with thousands of make_index errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:15:51 -0000 --=-rGJ/ShAcRXUXBkDj3+K3 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-08-10 at 18:55, Kris Kennaway wrote: > On Sun, Aug 10, 2003 at 10:14:52AM -0400, Adam McLaurin wrote: >=20 > > Warning: Duplicate INDEX entry: *** Error code 1 > > Warning: Duplicate INDEX entry:=20 >=20 > 'make describe' failed with error 1. Run this target by hand to see > where it died. It was a problem with the libxine Makefile, and was fixed shortly after I posted the problem to the mailing list. --=20 Adam McLaurin --=-rGJ/ShAcRXUXBkDj3+K3 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/Nttwt+DSc2Q4lGYRAtLVAJ0ReMspY1GdPH9eVQttqtFPDH8vDACeJ0ox iTiuc71kIh8GbvmCzQHmS28= =nKxM -----END PGP SIGNATURE----- --=-rGJ/ShAcRXUXBkDj3+K3-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 21:16:28 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5429137B4A4 for ; Sun, 10 Aug 2003 21:15:25 -0700 (PDT) Received: from spam2.snu.ac.kr (spam2.snu.ac.kr [147.46.10.68]) by mx1.FreeBSD.org (Postfix) with SMTP id 52157448C3 for ; Sun, 10 Aug 2003 20:23:02 -0700 (PDT) (envelope-from lahaye@snu.ac.kr) Received: (snipe 17952 invoked by alias); 11 Aug 2003 03:42:14 -0000 Received: from lahaye@snu.ac.kr with Spamsniper2.0 (Processed in 0.017083 secs); Received: from unknown (HELO sis1.snu.ac.kr) (147.46.10.36) by 0 with SMTP; 11 Aug 2003 03:42:14 -0000 X-RCPTTO: ports@FreeBSD.org,kde@FreeBSD.org,qt-bugs@trolltech.com, Received: from snu.ac.kr ([147.46.44.183]) by sis1.snu.ac.kr (8.12.9/8.12.9) with ESMTP id h7B3Mhmx129072; Mon, 11 Aug 2003 12:22:43 +0900 Message-ID: <3F370C25.3000506@snu.ac.kr> Date: Mon, 11 Aug 2003 12:23:17 +0900 From: Rob Lahaye Organization: Seoul National University - South Korea User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030726 X-Accept-Language: en-us, ko-kr MIME-Version: 1.0 To: qt-bugs@trolltech.com, kde@FreeBSD.org References: <3F2B649F.5060300@snu.ac.kr> <20030804160532Z22377-26787+1191@trolltech.com> In-Reply-To: <20030804160532Z22377-26787+1191@trolltech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: [Issue N28081] designer nuissances / FreeBSD Port: qt-3.1.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:16:29 -0000 qt-bugs@trolltech.com (Sigrid) wrote: > > I am not able to reproduce your problem here. I create a form in > Designer, add a QWidgetStack to the form and then add a QPushButton to > the stack by clicking on the QPushButton and then clicking on the form. > Is this the correct way of reproducing the problem? I have traced the problem down a bit further and discovered the following, which is either a problem in the original qt package, or in the FreeBSD port. I have two FreeBSD PC's: One has KDE, Gnome and lots of other desktop stuff installed, together with Qt 3.1.2. The second one has merely the plain OS and system installation (no KDE, nor Gnome), but it has the same version of Qt. The one with KDE, does not have the problems I've described. The problems only appear on the "plain" PC. Comparing 'ldd /usr/X11R6/bin/designer' on both machines, shows that BOTH are linked against libqui.so.1 => /usr/X11R6/lib/libqui.so.1 (0x28284000) libqt-mt.so.3 => /usr/X11R6/lib/libqt-mt.so.3 (0x282b1000) libmng.so.1 => /usr/local/lib/libmng.so.1 (0x28890000) libjpeg.so.9 => /usr/local/lib/libjpeg.so.9 (0x288e3000) libpng.so.5 => /usr/local/lib/libpng.so.5 (0x28901000) libz.so.2 => /usr/lib/libz.so.2 (0x28924000) libXrender.so.1 => /usr/X11R6/lib/libXrender.so.1 (0x28a12000) libXft.so.2 => /usr/X11R6/lib/libXft.so.2 (0x28a1a000) libfreetype.so.9 => /usr/local/lib/libfreetype.so.9 (0x28a2b000) libfontconfig.so.1 => /usr/X11R6/lib/libfontconfig.so.1 (0x28a7b000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x28aa1000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28aaf000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x28b6b000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x28b74000) libstdc++.so.3 => /usr/lib/libstdc++.so.3 (0x28b8a000) libm.so.2 => /usr/lib/libm.so.2 (0x28bcf000) libc_r.so.4 => /usr/lib/libc_r.so.4 (0x28bea000) liblcms.so.1 => /usr/local/lib/liblcms.so.1 (0x28c9f000) libXThrStub.so.6 => /usr/X11R6/lib/libXThrStub.so.6 (0x28cb9000) libexpat.so.4 => /usr/local/lib/libexpat.so.4 (0x28bce000) But the PC with KDE has additional links against libGLU.so.1 => /usr/X11R6/lib/libGLU.so.1 (0x28931000) libGL.so.1 => /usr/X11R6/lib/libGL.so.1 (0x2899f000) libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x289fd000) libc.so.4 => /usr/lib/libc.so.4 (0x28cbb000) libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x28d54000) Does this shine any light on why the designer shows some unusual behaviour when KDE is not there? Crucial question: is the FreeBSD port or the original Qt package broken when KDE is not there? Regards, Rob. > Rob Lahaye wrote: >> The problem arises from following the designer manual html pages. >> It's the section "Creating a Main Window Application". >> >> Short cutting the manual, please do this: >> >> 1) start designer, and open "New/Open...Main window". >> >> 2) the Wizard choices for the menus and toolbar is not relevant. >> so keep clicking in the wizard until finished, to get the form. >> >> 3) Now, according the designer manual one should do following: >> - select WidgetStack from Containers, and drop it on the main form >> - click on main form (to give focus to main form) and do Layout->>Layout Vertically. >> the WidgetStack now fills the entire form. >> - select Table widget from Views and drop it on the WidgetStack. >> ===>> Boom, this causes a dialog to pop up telling me that I cannot insert >> a widget into the layout Container Widget 'central widget'. >> To do this, I must first break the layout. >> >> The dialog gives me a choice out of two: >> 1) [Cancel] do not add widgets to the StackWidget (nonsense option in this case, >> since what else is the purpose of the StackWidget...) >> 2) [break the layout] but this will not add the Table widget to the StackWidget >> page, but instead to the main form (so the new widget is not part of the >> StackWidget). >> >> >> With Vertical Layout for the WidgetStack, only a complex cut and paste manoeuvre in the Objects >> Explorer allows me to add widgets to the pages of a WidgetStack. But then I cannot change the >> Layout of these new widgets on the WidgetStack. >> >> By the way, the TabWidget has exactly the same problems as WidgetStack. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 21:17:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4FF537B476 for ; Sun, 10 Aug 2003 21:15:51 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B54D441C6 for ; Sun, 10 Aug 2003 15:55:17 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 16CDC66D74; Sun, 10 Aug 2003 15:55:13 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id D15DE787; Sun, 10 Aug 2003 15:55:12 -0700 (PDT) Date: Sun, 10 Aug 2003 15:55:12 -0700 From: Kris Kennaway To: Adam McLaurin Message-ID: <20030810225512.GA38231@rot13.obsecurity.org> References: <1060524892.611.4.camel@jake> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <1060524892.611.4.camel@jake> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: INDEX build fails with thousands of make_index errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:17:24 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 10, 2003 at 10:14:52AM -0400, Adam McLaurin wrote: > Warning: Duplicate INDEX entry: *** Error code 1 > Warning: Duplicate INDEX entry:=20 'make describe' failed with error 1. Run this target by hand to see where it died. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/Ns1QWry0BWjoQKURAlnuAJ9KsmJfY3xwXcD8HC1MpmGVuZdUDgCgozam AKrx314jOfPtwYKOUpgS3Vk= =xfyA -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 21:18:09 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24A8B37B708 for ; Sun, 10 Aug 2003 21:16:20 -0700 (PDT) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3837A445C7 for ; Sun, 10 Aug 2003 18:07:55 -0700 (PDT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 3B26C526C3; Mon, 11 Aug 2003 10:38:01 +0930 (CST) Date: Mon, 11 Aug 2003 10:38:01 +0930 From: Greg 'groggy' Lehey To: Mark Linimon Message-ID: <20030811010801.GH83425@wantadilla.lemis.com> References: <20030810062254.GA11719@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aAwQsp3R3A4c5Jjk" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: Ports scheduled for removal on Nov 7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:18:10 -0000 --aAwQsp3R3A4c5Jjk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sunday, 10 August 2003 at 11:42:08 -0500, Mark Linimon wrote: >> I think it would definitely be off-topic for freebsd-questions, but >> I'd be more open to -announce. The only thing is that port removals >> are a periodic event (I just happen to have more than usual queued up >> this time), so if I do it this time I should do it every time. > > Well, I can suggest a class of messages such as (ports scheduled > for deletion|changes to ports framework that will affect various > ports|freeze in effect|freeze lifted), possibly others. I think > there would be an audience for this mailing list who would not > otherwise be able to follow the large-volume ports mailing lists. > > freebsd-ports-announce? Given the central importance of ports to FreeBSD and the low traffic volume of -announce, I can't see any good reason for a separate list. Greg -- See complete headers for address and phone numbers --aAwQsp3R3A4c5Jjk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE/NuxxIubykFB6QiMRAnJGAJ9SEO+o5pWqIDjpwTtu9hR+qZUvuACfX6EG DPvCH4Xz3r9t4BUi6klt7As= =vD5a -----END PGP SIGNATURE----- --aAwQsp3R3A4c5Jjk-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 21:18:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02D5637B5FD for ; Sun, 10 Aug 2003 21:16:58 -0700 (PDT) Received: from smtp6.mindspring.com (smtp6.mindspring.com [207.69.200.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE9744817 for ; Sun, 10 Aug 2003 19:49:07 -0700 (PDT) (envelope-from dave@bodenstab.org) Received: from dialup-67.73.134.177.dial1.chicago1.level3.net ([67.73.134.177] helo=base486.home.org) by smtp6.mindspring.com with esmtp (Exim 3.33 #1) id 19m2k6-0004xy-00; Sun, 10 Aug 2003 22:49:06 -0400 Received: (from imdave@localhost) by base486.home.org (8.11.5/8.11.5) id h7B2nMZ11127; Sun, 10 Aug 2003 21:49:22 -0500 (CDT) Date: Sun, 10 Aug 2003 21:49:22 -0500 (CDT) From: Dave Bodenstab Message-Id: <200308110249.h7B2nMZ11127@base486.home.org> To: dyeske@yahoo.com cc: ports@FreeBSD.org Subject: FreeBSD Port: blender-devel-2.27 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 04:18:55 -0000 Hi, You are listed as the maintainer for the blender-devel port. I installed blender-devel-2.27 on a fresh 4.8 system but I get a segmentation fault. Perhaps it's due to python v2.3 vs. v2.2.? or perhaps 4.8 vs 4.7... It *did* work on my 4.7 system before I wiped it and installed 4.8. Since blender 2.28 is now released, I was wondering if you had plans to update the port? Thank you. Dave Bodenstab From owner-freebsd-ports@FreeBSD.ORG Sun Aug 10 23:29:32 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1EC137B401 for ; Sun, 10 Aug 2003 23:29:32 -0700 (PDT) Received: from spam2.snu.ac.kr (spam2.snu.ac.kr [147.46.10.68]) by mx1.FreeBSD.org (Postfix) with SMTP id 97C8043FE3 for ; Sun, 10 Aug 2003 23:29:29 -0700 (PDT) (envelope-from lahaye@snu.ac.kr) Received: (snipe 31939 invoked by alias); 11 Aug 2003 06:48:43 -0000 Received: from lahaye@snu.ac.kr with Spamsniper2.0 (Processed in 0.015675 secs); Received: from unknown (HELO sis1.snu.ac.kr) (147.46.10.36) by 0 with SMTP; 11 Aug 2003 06:48:43 -0000 X-RCPTTO: ports@FreeBSD.org,kde@FreeBSD.org,qt-bugs@trolltech.com, Received: from snu.ac.kr ([147.46.44.183]) by sis1.snu.ac.kr (8.12.9/8.12.9) with ESMTP id h7B6TAmx130530; Mon, 11 Aug 2003 15:29:11 +0900 Message-ID: <3F3737D9.9000908@snu.ac.kr> Date: Mon, 11 Aug 2003 15:29:45 +0900 From: Rob Lahaye Organization: Seoul National University - South Korea User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030726 X-Accept-Language: en-us, ko-kr MIME-Version: 1.0 To: qt-bugs@trolltech.com, kde@FreeBSD.org References: <3F2B649F.5060300@snu.ac.kr> <20030804160532Z22377-26787+1191@trolltech.com> <3F370C25.3000506@snu.ac.kr> In-Reply-To: <3F370C25.3000506@snu.ac.kr> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: [Issue N28081] designer nuissances / FreeBSD Port: qt-3.1.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 06:29:32 -0000 Rob Lahaye wrote: > qt-bugs@trolltech.com (Sigrid) wrote: > >>I am not able to reproduce your problem here. I create a form in >>Designer, add a QWidgetStack to the form and then add a QPushButton to >>the stack by clicking on the QPushButton and then clicking on the form. >>Is this the correct way of reproducing the problem? Problem solved! Until now, I was not aware of the existance of .qt/ and .designer/ directories in my home directory. Deleting both solved all my problems. Sorry for the noice. Rob. > > I have traced the problem down a bit further and discovered the following, > which is either a problem in the original qt package, or in the FreeBSD port. > > I have two FreeBSD PC's: > One has KDE, Gnome and lots of other desktop stuff installed, together with Qt 3.1.2. > The second one has merely the plain OS and system installation (no KDE, nor Gnome), > but it has the same version of Qt. > > The one with KDE, does not have the problems I've described. The problems only > appear on the "plain" PC. > > Comparing 'ldd /usr/X11R6/bin/designer' on both machines, shows that BOTH are linked > against > libqui.so.1 => /usr/X11R6/lib/libqui.so.1 (0x28284000) > libqt-mt.so.3 => /usr/X11R6/lib/libqt-mt.so.3 (0x282b1000) > libmng.so.1 => /usr/local/lib/libmng.so.1 (0x28890000) > libjpeg.so.9 => /usr/local/lib/libjpeg.so.9 (0x288e3000) > libpng.so.5 => /usr/local/lib/libpng.so.5 (0x28901000) > libz.so.2 => /usr/lib/libz.so.2 (0x28924000) > libXrender.so.1 => /usr/X11R6/lib/libXrender.so.1 (0x28a12000) > libXft.so.2 => /usr/X11R6/lib/libXft.so.2 (0x28a1a000) > libfreetype.so.9 => /usr/local/lib/libfreetype.so.9 (0x28a2b000) > libfontconfig.so.1 => /usr/X11R6/lib/libfontconfig.so.1 (0x28a7b000) > libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x28aa1000) > libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28aaf000) > libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x28b6b000) > libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x28b74000) > libstdc++.so.3 => /usr/lib/libstdc++.so.3 (0x28b8a000) > libm.so.2 => /usr/lib/libm.so.2 (0x28bcf000) > libc_r.so.4 => /usr/lib/libc_r.so.4 (0x28bea000) > liblcms.so.1 => /usr/local/lib/liblcms.so.1 (0x28c9f000) > libXThrStub.so.6 => /usr/X11R6/lib/libXThrStub.so.6 (0x28cb9000) > libexpat.so.4 => /usr/local/lib/libexpat.so.4 (0x28bce000) > > > But the PC with KDE has additional links against > libGLU.so.1 => /usr/X11R6/lib/libGLU.so.1 (0x28931000) > libGL.so.1 => /usr/X11R6/lib/libGL.so.1 (0x2899f000) > libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x289fd000) > libc.so.4 => /usr/lib/libc.so.4 (0x28cbb000) > libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x28d54000) > > > Does this shine any light on why the designer shows some unusual behaviour when > KDE is not there? > > Crucial question: is the FreeBSD port or the original Qt package broken when > KDE is not there? > > Regards, > Rob. > > > >>Rob Lahaye wrote: >> >>>The problem arises from following the designer manual html pages. >>>It's the section "Creating a Main Window Application". >>> >>>Short cutting the manual, please do this: >>> >>>1) start designer, and open "New/Open...Main window". >>> >>>2) the Wizard choices for the menus and toolbar is not relevant. >>> so keep clicking in the wizard until finished, to get the form. >>> >>>3) Now, according the designer manual one should do following: >>> - select WidgetStack from Containers, and drop it on the main form >>> - click on main form (to give focus to main form) and do Layout->>Layout Vertically. >>> the WidgetStack now fills the entire form. >>> - select Table widget from Views and drop it on the WidgetStack. >>> ===>> Boom, this causes a dialog to pop up telling me that I cannot insert >>> a widget into the layout Container Widget 'central widget'. >>> To do this, I must first break the layout. >>> >>> The dialog gives me a choice out of two: >>> 1) [Cancel] do not add widgets to the StackWidget (nonsense option in this case, >>> since what else is the purpose of the StackWidget...) >>> 2) [break the layout] but this will not add the Table widget to the StackWidget >>> page, but instead to the main form (so the new widget is not part of the >>> StackWidget). >>> >>> >>>With Vertical Layout for the WidgetStack, only a complex cut and paste manoeuvre in the Objects >>>Explorer allows me to add widgets to the pages of a WidgetStack. But then I cannot change the >>>Layout of these new widgets on the WidgetStack. >>> >>>By the way, the TabWidget has exactly the same problems as WidgetStack. > > > > From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 05:12:20 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A97937B401; Mon, 11 Aug 2003 05:12:20 -0700 (PDT) Received: from striker.xs4all.nl (striker.nl [213.84.19.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2532043FB1; Mon, 11 Aug 2003 05:12:19 -0700 (PDT) (envelope-from striker@apache.org) Received: from cheetah (cheetah.striker.nl [192.168.0.10]) by striker.xs4all.nl (Postfix) with SMTP id 1402850916; Mon, 11 Aug 2003 14:12:17 +0200 (CEST) From: "Sander Striker" To: , "Daniel S. Haischt" Date: Mon, 11 Aug 2003 14:12:16 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In-Reply-To: Importance: Normal cc: ports@FreeBSD.org cc: bmah@freebsd.org cc: users@subversion.tigris.org Subject: RE: [PYTHON-BINDINGS] compiling FreeBSD port with svn bindings X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 12:12:20 -0000 > From: sussman@collab.net [mailto:sussman@collab.net] > Sent: Monday, August 11, 2003 2:05 PM > "Daniel S. Haischt" writes: > > > /usr/local/lib/apache2/libapr-0.so: undefined reference to `pthread_create' > > > > can you give me any pointers what is going wrong or how to > > compile subversion with the --with-swig option set to yes? > > The swig-py bindings require APR threads, but on FreeBSD, APR disables > threads by default. You need to make sure APR is configured with the > --enable-threads option. No. Not anymore. Justin fixed the python bindings to not require a threaded apr. Sander From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 05:13:13 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D0A737B401 for ; Mon, 11 Aug 2003 05:13:13 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id B524D43FB1 for ; Mon, 11 Aug 2003 05:13:11 -0700 (PDT) (envelope-from rooneg@electricjellyfish.net) Received: (qmail 58765 invoked from network); 11 Aug 2003 12:13:10 -0000 Received: from unknown (HELO electricjellyfish.net) (66.9.75.43) by relay.pair.com with SMTP; 11 Aug 2003 12:13:10 -0000 X-pair-Authenticated: 66.9.75.43 Message-ID: <3F378856.1010601@electricjellyfish.net> Date: Mon, 11 Aug 2003 08:13:10 -0400 From: Garrett Rooney User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5a) Gecko/20030701 Thunderbird/0.1a X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ben Collins-Sussman References: <3F371A07.8000604@daniel.stefan.haischt.name> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: bmah@freebsd.org cc: users@subversion.tigris.org cc: "Daniel S. Haischt" Subject: Re: [PYTHON-BINDINGS] compiling FreeBSD port with svn bindings X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 12:13:13 -0000 Ben Collins-Sussman wrote: > "Daniel S. Haischt" writes: > > >>/usr/local/lib/apache2/libapr-0.so: undefined reference to `pthread_create' >> >>can you give me any pointers what is going wrong or how to >>compile subversion with the --with-swig option set to yes? > > > The swig-py bindings require APR threads, but on FreeBSD, APR disables > threads by default. You need to make sure APR is configured with the > --enable-threads option. Actually, gstein, jerenkrantz, and myself discussed this at OSCON, and came up with a way to make it work without apr threads, something about requiring us to pick up the python interpreter lock when entering subversion code if we don't have threads turned on in apr (since all subversion calls are potentially not thread safe in that case). I don't think anyone has gotten around to implementing this, but it seems like this problem can be made to go away in the near future. -garrett From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 05:19:32 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B00FB37B401 for ; Mon, 11 Aug 2003 05:19:32 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 71CD243FA3 for ; Mon, 11 Aug 2003 05:19:31 -0700 (PDT) (envelope-from rooneg@electricjellyfish.net) Received: (qmail 60836 invoked from network); 11 Aug 2003 12:19:30 -0000 Received: from unknown (HELO electricjellyfish.net) (66.9.75.43) by relay.pair.com with SMTP; 11 Aug 2003 12:19:30 -0000 X-pair-Authenticated: 66.9.75.43 Message-ID: <3F3789D2.7030601@electricjellyfish.net> Date: Mon, 11 Aug 2003 08:19:30 -0400 From: Garrett Rooney User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5a) Gecko/20030701 Thunderbird/0.1a X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sander Striker References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: sussman@collab.net cc: bmah@freebsd.org cc: ports@FreeBSD.org cc: users@subversion.tigris.org cc: "Daniel S. Haischt" Subject: Re: [PYTHON-BINDINGS] compiling FreeBSD port with svn bindings X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 12:19:33 -0000 Sander Striker wrote: >>From: sussman@collab.net [mailto:sussman@collab.net] >>Sent: Monday, August 11, 2003 2:05 PM > > >>"Daniel S. Haischt" writes: >> >> >>>/usr/local/lib/apache2/libapr-0.so: undefined reference to `pthread_create' >>> >>>can you give me any pointers what is going wrong or how to >>>compile subversion with the --with-swig option set to yes? >> >>The swig-py bindings require APR threads, but on FreeBSD, APR disables >>threads by default. You need to make sure APR is configured with the >>--enable-threads option. > > > No. Not anymore. Justin fixed the python bindings to not require > a threaded apr. Ah! cool, I didn't know he had gotten around to it. -garrett From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 05:21:06 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5454037B401; Mon, 11 Aug 2003 05:21:06 -0700 (PDT) Received: from striker.xs4all.nl (striker.nl [213.84.19.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99E3443F3F; Mon, 11 Aug 2003 05:21:05 -0700 (PDT) (envelope-from striker@apache.org) Received: from cheetah (cheetah.striker.nl [192.168.0.10]) by striker.xs4all.nl (Postfix) with SMTP id C067E50916; Mon, 11 Aug 2003 14:21:04 +0200 (CEST) From: "Sander Striker" To: "Garrett Rooney" , "Ben Collins-Sussman" Date: Mon, 11 Aug 2003 14:21:04 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In-Reply-To: <3F378856.1010601@electricjellyfish.net> Importance: Normal cc: ports@FreeBSD.org cc: bmah@freebsd.org cc: users@subversion.tigris.org cc: "Daniel S. Haischt" Subject: RE: [PYTHON-BINDINGS] compiling FreeBSD port with svn bindings X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 12:21:06 -0000 > From: Garrett Rooney [mailto:rooneg@electricjellyfish.net] > Sent: Monday, August 11, 2003 2:13 PM > Actually, gstein, jerenkrantz, and myself discussed this at OSCON, and > came up with a way to make it work without apr threads, something about > requiring us to pick up the python interpreter lock when entering > subversion code if we don't have threads turned on in apr (since all > subversion calls are potentially not thread safe in that case). > > I don't think anyone has gotten around to implementing this, but it > seems like this problem can be made to go away in the near future. See rev 6590 ;). Sander From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 07:49:12 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5540637B401 for ; Mon, 11 Aug 2003 07:49:12 -0700 (PDT) Received: from mail.ciam.ru (main.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 975F443F75 for ; Mon, 11 Aug 2003 07:49:11 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from exim by mail.ciam.ru with drweb-scanned (Exim 4.20) id 19mDyw-00084L-D3 for ports@freebsd.org; Mon, 11 Aug 2003 18:49:10 +0400 Received: from sem.ciam.ru ([192.168.45.10] helo=ciam.ru) by mail.ciam.ru with esmtp (Exim 4.20) id 19mDyv-00084B-PU for ports@freebsd.org; Mon, 11 Aug 2003 18:49:09 +0400 Message-ID: <3F37AD08.2080109@ciam.ru> Date: Mon, 11 Aug 2003 18:49:44 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; ru-RU; rv:1.3) Gecko/20030309 X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: perl subsystem improvements X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 14:49:12 -0000 Because of there are a few people who interested in my work and discussing, I'v opened a simple mail-list freebsd-perlATciam.ru. I'v plan to publish reports about work progress and patches for testing. Any ideas, comments are welcome there. Anyone who interested can subscribe just sending me email in free form. ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 08:03:06 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC5CF37B401 for ; Mon, 11 Aug 2003 08:03:06 -0700 (PDT) Received: from azrael.xs4all.nl (azrael.xs4all.nl [213.84.50.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8312943FB1 for ; Mon, 11 Aug 2003 08:03:05 -0700 (PDT) (envelope-from remco@azrael.xs4all.nl) Received: from azrael.xs4all.nl (localhost [127.0.0.1]) by azrael.xs4all.nl (8.12.8p1/8.12.8) with ESMTP id h7BF31Nh006070; Mon, 11 Aug 2003 17:03:01 +0200 (CEST) (envelope-from remco@azrael.xs4all.nl) Received: (from remco@localhost) by azrael.xs4all.nl (8.12.8p1/8.12.8/Submit) id h7BF31DY006069; Mon, 11 Aug 2003 17:03:01 +0200 (CEST) Date: Mon, 11 Aug 2003 17:03:01 +0200 From: remco+fb@azrael.xs4all.nl To: Randy Bush Message-ID: <20030811150300.GI14718@azrael.xs4all.nl> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spook: NSO COSMOS-2224 Glock 26 argus Morse Mayfly ULF Yakima XTC hacker User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: convert: No decode delegate for this image format (jpeg) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 15:03:07 -0000 On Sun, Jul 27, 2003 at 16:14, Randy Bush wrote: > fresh portupgrade -fR of ImageMagick-5.5.6_1 on a three day old 4.8-stable > > % convert -size 120x120 720923-000000.jpg -resize 120x120 \ > +profile "*" thumbnail.jpg > convert: No decode delegate for this image format (720923-000000.jpg) [Invalid argument]. > > this is indeed a JPEG, as, for example, xv testifies. > > and this used to work. > > randy I noted the same problem last week and decovered the imagemagick port does not support the jpeg codec by default any more.. To fix this you need to rebuild, doing something like: portupgrade -f -m '-DWITH_JPEG' ImageMagick-5.5.6_1 Other formats, like png, need to be added in the same way. A real annoyance, IMO. HTH, Remco From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 10:55:18 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B44237B401 for ; Mon, 11 Aug 2003 10:55:18 -0700 (PDT) Received: from freebsd.schema.ca (freebsd.schema.ca [142.59.253.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F16743F93 for ; Mon, 11 Aug 2003 10:55:17 -0700 (PDT) (envelope-from pandaro@freebsd.schema.ca) Received: from localhost (localhost [127.0.0.1]) by freebsd.schema.ca (Postfix) with ESMTP id B209161DB89 for ; Mon, 11 Aug 2003 11:55:16 -0600 (MDT) Received: from freebsd.schema.ca ([127.0.0.1]) by localhost (freebsd.schema.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 09000-03-2 for ; Mon, 11 Aug 2003 11:55:14 -0600 (MDT) Received: from freebsd.schema.ca (halo24.internal.backtrack.ca [192.168.0.53]) by freebsd.schema.ca (Postfix) with ESMTP id C1BDC61DB90 for ; Mon, 11 Aug 2003 11:55:14 -0600 (MDT) Message-ID: <3F37D882.8050303@freebsd.schema.ca> Date: Mon, 11 Aug 2003 11:55:14 -0600 From: "Mike A. Oligny" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030807 Thunderbird/0.2a X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at schema.ca Subject: ghostscript still... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 17:55:18 -0000 /usr/local/bin/ps2* do not specify installed paths: ps2pdf contains exec ps2pdf12 "$@" should probably say (depending on where it gets installed) exec /usr/local/bin/ps2pdf12"$@" I'm going to read porters handbook and hopefully figure out how to submit a proper fix for this, providing I am correct that it is a problem. Any script that does not set environment path will be unable to use these, it seems? I'm not on the list at the moment, if you could CC me that would be great. Thanks! -Mike From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 11:00:32 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3705F37B40C for ; Mon, 11 Aug 2003 11:00:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3F4043FBF for ; Mon, 11 Aug 2003 11:00:25 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h7BI0PUp079645 for ; Mon, 11 Aug 2003 11:00:25 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h7BI0O1v079639 for freebsd-ports@freebsd.org; Mon, 11 Aug 2003 11:00:24 -0700 (PDT) Date: Mon, 11 Aug 2003 11:00:24 -0700 (PDT) Message-Id: <200308111800.h7BI0O1v079639@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 18:00:32 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/04/15] ports/50999 ports-bugs SSL with (mail/)dovecot simply doesn't wo o [2003/05/23] ports/52632 ports-bugs vmware3 port is missing /usr/lib/vmware/v o [2003/06/21] ports/53600 ports-bugs /usr/port/emulators/linux_base says "linu o [2003/06/28] ports/53874 ports-bugs /usr/ports/emulators/linux_base isn't wor o [2003/07/08] ports/54230 ports-bugs fsck_ext2fs is broken (unable to perform o [2003/07/14] ports/54465 ports-bugs ipfm (/usr/ports/ipfm) destroys all accou o [2003/07/17] ports/54584 ports-bugs ports/devel/tclxml depends on ports/devel f [2003/07/22] ports/54753 ports-bugs print/lyx core dump o [2003/08/01] ports/55173 ports-bugs VMware3 hangs as normal user o [2003/08/04] ports/55267 ports-bugs Update port: databases/gauche-gdbm (fix b o [2003/08/11] ports/55471 ports-bugs [PATCH] net/xmule upgrade to 1.4.3 11 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/06/12] ports/28102 ports-bugs Recent changes to 4.3-STABLE break arla-0 o [2001/06/24] ports/28398 ports-bugs ja-dvips cannot find tex.pro o [2001/09/25] ports/30823 ports-bugs New port: KinterbasDB, Python module to a o [2001/09/30] ports/30947 ports-bugs mail/mahogany fails to build, conflicts w o [2001/10/10] ports/31191 ports-bugs netsaint - plugins sometimes not found o [2002/01/15] ports/33927 ports-bugs ja-dvipdfm port requires texmf/dvips/base o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/19] ports/37262 ports-bugs gphoto2 fails to find supported USB digit o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex f [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX f [2002/09/09] ports/42612 ports-bugs gphoto2 2.1 core dumps on DC290 f [2002/09/10] ports/42647 ports-bugs port pybliographger does not configure o [2002/10/07] ports/43796 ports-bugs x11-toolkits/xview does not build on 5.0 o [2002/10/19] ports/44295 ports-bugs New port: MLton, an optimizing Standard M o [2002/10/08] ports/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw f [2002/10/30] ports/44759 ports-bugs ghostscript-gnu-7.05_3 produces incorrect o [2002/11/12] ports/45234 ports-bugs timidity++ portupgrade problem, removes s o [2002/11/19] ports/45490 ports-bugs tightvnc leaks connections o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha o [2002/12/06] ports/46039 ports-bugs adzapper install fails out of the box o [2002/12/11] ports/46180 ports-bugs lang/squeak3 creates $PREFIX/bin/squeak s o [2002/12/17] ports/46338 ports-bugs cyrus-sasl-1.5.27_7 mysql_verify_password o [2002/12/20] ports/46399 ports-bugs libdvxencore permissions o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure o [2002/12/25] ports/46530 ports-bugs GtkAda2 links against unexistent libgthre o [2003/01/03] ports/46741 ports-bugs PVM-POV fails trying to locate file/folde o [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex o [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr o [2002/11/11] ports/45210 ports-bugs Broken Linux ABI Emulation in FreeBSD 4.7 o [2003/01/30] ports/47700 ports-bugs New port: XawPlus, a 3D replacement for X f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't o [2003/02/02] ports/47809 ports-bugs New port: Ukrainian accounting system. o [2003/02/07] ports/48073 ports-bugs ports version of linux-eagle missing libs o [2003/02/08] ports/48091 ports-bugs port install fails on minimum system o [2003/02/16] ports/48343 ports-bugs Several issues with the www/zope port o [2003/03/02] ports/48841 ports-bugs tls on postfix does not work (smtp and sm o [2003/03/18] ports/50104 ports-bugs Zope package does not set sticky bit on v o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function o [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/23] ports/51316 ports-bugs games/bsdtris: fails to run after install o [2003/04/23] ports/51334 ports-bugs [New Port] Zend Optimizer 2.1.0a o [2003/04/27] ports/51464 ports-bugs [Patch Port] devel/viewcvs (unforbidden) o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal f [2003/05/05] ports/51789 ports-bugs high security hole in old dcgui/dclib por o [2003/05/05] ports/51807 ports-bugs g++295 can't parse header file f [2003/05/05] ports/51813 ports-bugs wrong mod_perl dependencies o [2003/05/07] ports/51941 ports-bugs Compiling error in /usr/ports/japanese/gn o [2003/05/11] ports/52064 ports-bugs ns2 (ports/net/ns) was broken o [2003/05/16] ports/52352 ports-bugs Postfix Configuration Summary Reporter f [2002/04/25] ports/37468 ports-bugs mpeg_play compiled on current/DP1 does no f [2002/05/23] ports/38460 ports-bugs core dumps with ghostscript o [2003/05/23] ports/52602 ports-bugs security/ident2 port segfaults when retur f [2003/06/04] ports/52944 ports-bugs CUPS is not configurable on 4.8-RELEASE o [2003/06/10] ports/53181 ports-bugs New port: postgresql-contrib o [2003/06/11] ports/53214 ports-bugs emulators/vmware3 tries to install emulat o [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri o [2003/06/18] ports/53458 ports-bugs irc/tr-ircd breaks on non-IPv6 kernels o [2003/06/24] ports/53696 ports-bugs new port: Security scanner for Samba o [2003/06/27] ports/53843 ports-bugs trouble running getmail from cron o [2003/06/27] ports/53862 ports-bugs -CURRENT ports symlink busted o [2003/06/28] ports/53888 ports-bugs Linux Realplayer esound support and depen o [2003/07/05] ports/54125 ports-bugs new port: x11/xinput f [2003/07/09] ports/54302 ports-bugs New port: p5-X11-IdleTime, Perl module to o [2003/07/08] ports/54234 ports-bugs gnu-radius fails to build on 4.8-STABLE o [2003/07/16] ports/54552 ports-bugs Easytag Fillall Field fails o [2003/07/19] ports/54640 ports-bugs [PATCH] ports/net/gnu-radius/ cannot crea o [2003/07/19] ports/54647 ports-bugs Updated gsfonts 6.0 disables printing in o [2003/07/22] ports/54743 ports-bugs Add support for Canon PowerShot A60 to s1 f [2003/07/23] ports/54792 ports-bugs [patch] port lang/mozart unbreak and upda o [2003/07/25] ports/54848 ports-bugs print/ghostscript-gnu fails building whil o [2003/07/25] ports/54875 ports-bugs hpijs loops on fatal error o [2003/07/28] ports/54970 ports-bugs emulators/linux_base Port Makefile "dange o [2003/07/28] ports/54972 ports-bugs net/simicq compilation error o [2003/07/30] ports/55072 ports-bugs [PATCH] Update postgresql7 to 7.3.4 o [2003/07/30] ports/55083 ports-bugs [Update] Port: net/mydns o [2003/08/03] ports/55219 ports-bugs devel/fam: NFS support broken o [2003/08/04] ports/55230 ports-bugs update ports/www/phpbb to 2.0.6 o [2003/08/04] ports/55252 ports-bugs Berkley DB crashes on Serverworks based c o [2003/08/04] ports/55259 ports-bugs Theme category change: clean-theme-gtk o [2003/08/05] ports/55270 ports-bugs New port: kaffe-devel, development releas o [2003/08/05] ports/55291 ports-bugs New Port: howl 0.6.1: zerconf/rendezvous o [2003/08/06] ports/55334 ports-bugs fix zhcon build error on 5.1 current o [2003/08/07] ports/55354 ports-bugs postgresql update to 7.3.4 o [2003/08/07] ports/55355 ports-bugs update pgaccess a [2003/08/08] ports/55368 ports-bugs port lang/cli illegaly marked as BROKEN, o [2003/08/08] ports/55372 ports-bugs mod_php4 port ignores PREFIX o [2003/08/08] ports/55374 ports-bugs sitescooper doesn't work with plucker o [2003/08/08] ports/55403 ports-bugs Patch : net/openldap21: include db41 depe o [2003/08/10] ports/55439 ports-bugs Change in tcsetattr in 5.1-RELEASE breaks o [2003/08/11] ports/55461 ports-bugs New version of mailscanner port 4.22-5 o [2003/08/11] ports/55472 ports-bugs net/wide-dhcp dumps core on free() 93 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/07/17] ports/54583 ports-bugs adding Naken Chat to FreeBSD ports o [2002/03/17] java/36024 ports-bugs port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2001/01/12] ports/24299 ports-bugs Configure the synaptics touchpad. o [2001/07/25] ports/29223 ports-bugs cyrus-imapd and postfix master.8 manpage o [2001/08/21] ports/29929 ports-bugs wginstall.pl script chokes on calculated o [2001/09/27] ports/30870 ports-bugs httpd in free(): warning: recursive call o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug o [2002/01/30] ports/34442 ports-bugs xt, xalan-j, saxon should have the same C o [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/27] ports/35372 ports-bugs pgp6 ports fails to compile on alpha plat s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies o [2002/03/14] ports/35897 ports-bugs upgrading the linux_base port runs into t o [2002/03/29] ports/36503 ports-bugs several files conflict in ports/databases o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic o [2002/04/22] ports/37362 ports-bugs The Ted port is incompatible with FreeBSD o [2002/04/30] ports/37597 ports-bugs aureal-kmod-1.5_3 fails to build o [2002/05/10] ports/37927 ports-bugs port to install linux Lahey Fortran 95 v6 o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/15] ports/38125 ports-bugs ApacheCylical Link error/bug in Virtualse f [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 o [2002/06/07] ports/38989 ports-bugs Fix to BROKEN arla port (arla-0.35.6) o [2002/06/11] ports/39182 ports-bugs netsaint-plugins util.c functions don't q a [2002/06/19] ports/39544 ports-bugs mayavi port disfunctional a [2002/06/20] ports/39608 ports-bugs upgrade games/cgoban to 1.9.13 o [2002/06/21] ports/39620 ports-bugs flashplugin-mozilla crashes when viewing o [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i o [2002/07/17] ports/40705 ports-bugs Upgrade of gnome-commander to 0.9.8 o [2002/07/18] ports/40756 ports-bugs insecure default options o [2002/07/21] ports/40866 ports-bugs sml-nj port CM autoloading compilation pr a [2002/07/22] ports/40904 ports-bugs new port: www/tclcurl o [2002/08/02] ports/41259 ports-bugs Info directory change for various GNU Ema a [2002/08/03] ports/41282 ports-bugs New_Ports japanese/stevie-* o [2002/08/07] ports/41434 ports-bugs New port: www/light: another Mozilla-base o [2002/08/19] ports/41773 ports-bugs new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports-bugs vmware2 causes panic on recent -current o [2002/08/20] ports/41829 ports-bugs New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports-bugs new port - virus filtering tool for qmail f [2002/08/24] ports/41971 ports-bugs New Port: sysutils/ipfw-manager o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/08/31] ports/42280 ports-bugs New port: florist (Ada-POSIX bindings) o [2002/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch o [2002/09/01] ports/42296 ports-bugs New port: mod_webkit (adapter between Web o [2002/09/03] ports/42371 ports-bugs libncurses.so.4 missing from ports/emulat o [2002/09/03] ports/42378 ports-bugs New port: science/at Acoustic ToolBox a [2002/09/21] ports/43171 ports-bugs Port misc/upclient setgid kmem o [2002/09/26] ports/43394 ports-bugs New port yptransitd, an nss_ldap replacem f [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 o [2002/10/04] ports/43670 ports-bugs RC_NG script for net/openldap12 o [2002/10/04] ports/43671 ports-bugs RC_NG script for net/openldap20 o [2002/10/05] ports/43718 ports-bugs New port: x11-wm/icebgset (set IceWM back o [2002/10/07] ports/43764 ports-bugs New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading a [2002/10/11] ports/43956 ports-bugs New port: x11-wm/ion-devel o [2002/10/13] ports/43997 ports-bugs New port: www/apache13-modsnmp: apache-1. o [2002/10/19] ports/44270 ports-bugs New port: net/bind9-sdb-ldap o [2002/10/24] ports/44430 ports-bugs New port: xalan-c v. 1.4 (XSLT engine and a [2002/10/25] ports/44464 ports-bugs Ports addition o [2002/10/28] ports/44565 ports-bugs NEW PORT: devel/libds (Useful data struct o [2002/11/02] ports/44836 ports-bugs New port: hunch - Scan httpd log files, f o [2002/11/03] ports/44854 ports-bugs [PATCH] add xaw3d build option to games/x o [2002/11/05] ports/44949 ports-bugs New port Squid Access Report Generator o [2002/11/09] ports/45180 ports-bugs New port (split out from old port): net/s o [2002/11/11] ports/45227 ports-bugs problems building/installing db3 and open o [2002/11/12] ports/45247 ports-bugs New port: www/scoop collaborative media o [2002/11/15] ports/45316 ports-bugs new-port: game, train control simulation o [2002/11/15] ports/45329 ports-bugs New port: xnodecor (x11 utility on Overri o [2002/11/19] ports/45491 ports-bugs New Port: apache-soap (Apache SOAP Toolki o [2002/11/20] ports/45522 ports-bugs new port database/WWWdb-0.8.2 o [2002/06/21] ports/39619 ports-bugs flashplugin-mozilla crashes and doesnt pl o [2002/11/24] ports/45693 ports-bugs New port: net/gkrellmmultiping2 f [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer o [2002/11/27] ports/45812 ports-bugs New port for print/mup o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/01] ports/45909 ports-bugs New port: Python DBI Sybase module o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s o [2002/12/06] ports/46024 ports-bugs palm/plucker-1.2 doesn't work with python o [2002/12/07] ports/46063 ports-bugs New port: USB FM Radio Control utility f [2002/12/07] ports/46065 ports-bugs [patch] fix fetch for devel/libvanessa_* f [2002/12/07] ports/46089 ports-bugs multimedia/xmms Vorbis plugin built incor o [2002/12/17] ports/46325 ports-bugs new port: net/luasocket - IP library for o [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f o [2002/12/20] ports/46394 ports-bugs New port: special purpose database applic o [2002/12/20] ports/46410 ports-bugs New port: SGL - incomplete STL implementa o [2002/12/21] ports/46442 ports-bugs New port: Ada thin binding to SDL and Ope o [2002/12/21] ports/46448 ports-bugs New port: adabooch is a Booch implementat f [2002/12/21] ports/46457 ports-bugs Update x11/temperature.app to 1.4 and use o [2002/12/23] ports/46487 ports-bugs New port: cbind - Translator for "thin" A o [2002/12/23] ports/46505 ports-bugs New port: adabindx - an Ada-binding to th o [2002/12/23] ports/46510 ports-bugs sshd does not correctly store the remote f [2002/12/24] ports/46520 ports-bugs stability issues re - mplayer and audio o o [2002/12/28] ports/46602 ports-bugs new port devel/tkinspect o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep o [2003/01/02] ports/46707 ports-bugs [NEW PORT} audio/asmix mixer for afterste o [2003/01/02] ports/46708 ports-bugs [NEW PORT} audio/asmixer Another mixer fo o [2003/01/04] ports/46756 ports-bugs new port: net/fpl o [2003/01/04] ports/46766 ports-bugs New port: kix-kmod : Syscons screen saver o [2003/01/04] ports/46774 ports-bugs New port: comms/lirc: Linux Infared Remot o [2003/01/07] ports/46847 ports-bugs new port: multimedia/nxtvepg (electronic o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/13] ports/47026 ports-bugs New port: a small assembly to HTML conver o [2003/01/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47112 ports-bugs web2ldap compile abends with `LDAP_FILT_M o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- o [2003/01/16] ports/47138 ports-bugs ports/latex cannot be installed o [2003/01/17] ports/47161 ports-bugs New Port: audio/xmms-kj Add K-JoefolSkinS o [2003/01/18] ports/47189 ports-bugs New port: x11/chameleon o [2003/01/18] ports/47197 ports-bugs multimedia/xmms cdaudio plugin issues ill o [2003/01/19] ports/47216 ports-bugs daily_clean_hoststat_enable causes errors o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/19] ports/47220 ports-bugs New port: games/gnmm (GNOME Nine mens' mo o [2003/01/22] ports/47379 ports-bugs patch for elm port o [2003/01/25] ports/47473 ports-bugs Exitstatus passing in vgetty for external o [2003/01/26] ports/47520 ports-bugs New port: net/roadrunner - a BEEP library o [2003/01/27] ports/47542 ports-bugs [PATCH] Keynote2 support configuration op o [2003/01/27] ports/47545 ports-bugs New port: jpegoptim is an command-line jp o [2003/01/27] ports/47571 ports-bugs new port: gnotime tracker o [2003/01/28] ports/47622 ports-bugs New Port: misc/gkrellshoot2 o [2003/01/29] ports/47649 ports-bugs New port: audio/eTktab - guitar tabulatur o [2003/01/29] ports/47651 ports-bugs unPERLify ports/audio o [2003/01/29] ports/47652 ports-bugs unPERLify ports/astro o [2003/01/29] ports/47654 ports-bugs unPERLify ports/biology o [2003/01/29] ports/47656 ports-bugs unPERLify ports/comms f [2003/02/03] ports/47862 ports-bugs Maintainer update: databases/mysql-gui (b o [2003/02/04] ports/47904 ports-bugs drweb - cron example don't work o [2003/02/04] ports/47917 ports-bugs New port: audio/gkrellmss2 o [2003/02/06] ports/47995 ports-bugs New port: Showing moving blobs o [2003/02/06] ports/48021 ports-bugs New Port: www/photo_gallery f [2003/02/09] ports/48115 ports-bugs Update port: math/abs o [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing o [2003/02/13] ports/48247 ports-bugs unPERLify ports/deskutils o [2003/02/13] ports/48248 ports-bugs unPERLify ports/editors o [2003/02/13] ports/48253 ports-bugs unPERLify ports/devel f [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/02/14] ports/48292 ports-bugs new port: print/epsonepl "Printer filter o [2003/02/17] ports/48382 ports-bugs /usr/ports/net/cflowd compile errors, wil o [2003/02/17] ports/48404 ports-bugs gnuchess doesn't install the gnuchessx al o [2003/02/18] ports/48418 ports-bugs mail/teapop: 2 problems o [2003/02/18] ports/48422 ports-bugs New POrt: webstats o [2003/02/18] ports/48448 ports-bugs New port: orca text data grapher (uses rr o [2003/02/21] ports/48552 ports-bugs new port: sysutils/ganglia-webfrontend: G o [2003/02/25] ports/48694 ports-bugs New port: Plan9 compatibility libraries o [2003/02/27] ports/48764 ports-bugs new port for mpexpr o [2003/02/28] ports/48771 ports-bugs Bug in audio/shout when using with SHOUTc o [2003/03/01] ports/48812 ports-bugs New port: print/foomatic-db-engine o [2003/03/01] ports/48813 ports-bugs New port: print/foomatic-filters o [2003/03/02] ports/48832 ports-bugs New port: print/foomatic-db-hpijs o [2003/03/03] ports/48890 ports-bugs New port: audio/streamtuner-python 0.0.1 o [2003/03/04] ports/48913 ports-bugs vtk does not compile with nvidia-drivers o [2003/03/04] ports/48929 ports-bugs New port: JRTPLIB - RTP library in C++ o [2003/03/04] ports/48934 ports-bugs new port: games/eif (empire text client) o [2003/03/07] ports/49002 ports-bugs fix duplicated categories on a 34 slave p o [2003/03/07] ports/49003 ports-bugs New port: A virtual note-pad system for y o [2003/03/10] ports/49061 ports-bugs Update port: net/mmucl o [2003/03/10] ports/49080 ports-bugs New port: emacs-chess, a chessboard for e o [2003/03/11] ports/49944 ports-bugs New Port: mail/pop-before-smtp - smtp aut o [2003/03/11] ports/49948 ports-bugs Port submission o [2003/03/12] ports/49961 ports-bugs [PATCH] Mega tree sweep for SITE_PERL usa o [2003/03/13] ports/49986 ports-bugs new port: myphpmoney o [2003/03/14] ports/49999 ports-bugs lrz in lrzsz-0.12.20(comms/lrzsz) sets in o [2003/03/14] ports/50005 ports-bugs net/flow-extract: new port o [2003/03/15] ports/50029 ports-bugs fix for "user stats" function in tkseti o [2003/03/17] ports/50068 ports-bugs New port: sybase_ase (Sybase ASE RDBMS) o [2003/03/17] ports/50072 ports-bugs New port: net/gkrellmwireless2 o [2003/03/19] ports/50135 ports-bugs conflicting types for mkdir() and rename( o [2003/03/20] ports/50140 ports-bugs [patch] fix plist devl/linux_devtools (al o [2003/03/20] ports/50142 ports-bugs misc/compat4x broken o [2003/03/20] ports/50146 ports-bugs mount.app new port submission o [2003/03/22] ports/50195 ports-bugs [PATCH] Import of OpenBSD fdisk o [2003/03/23] ports/50230 ports-bugs grail don't work with Python 2.x. f [2003/03/24] ports/50256 ports-bugs new port version: sysutils/stmpclean o [2003/03/25] ports/50291 ports-bugs FreeBSD Port Submission for "Destroy" o [2003/03/25] ports/50303 ports-bugs [NEW PORT] detachtty: Run interactive pro a [2003/03/26] ports/50313 ports-bugs Upgrade emulators/linux_base's glibc o [2003/03/28] ports/50405 ports-bugs New port: x11-wm/fluxspace o [2003/03/28] ports/50411 ports-bugs Revised [UPDATE] sysutils/fastresolve fro o [2003/03/28] ports/50415 ports-bugs New port: irc/onis o [2003/03/29] ports/50423 ports-bugs New port: www/phpftp o [2003/03/29] ports/50443 ports-bugs New port for libirman 0.4.2 o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50475 ports-bugs Port of rubber. f [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] ports/50478 ports-bugs New port: games/monopd o [2003/03/31] ports/50484 ports-bugs Lots of warnings when compiling hping o [2003/04/03] ports/50578 ports-bugs pktrace has been renamed to mftrace by th o [2003/04/03] ports/50586 ports-bugs JDEE port needs updates o [2003/04/04] ports/50609 ports-bugs New port: russian/muttprint (pretty print o [2003/04/04] ports/50616 ports-bugs UPDATE-PORT: devel/linux-sdl12 update to o [2003/04/05] ports/50628 ports-bugs [PATCH] waimea port has missing run-depen o [2003/04/06] ports/50645 ports-bugs New port: benchmarks/scimark2 - a Java b o [2003/04/06] ports/50646 ports-bugs New port: benchmarks/scimark2c - an ANSI o [2003/04/07] ports/50672 ports-bugs New port submission o [2003/04/08] ports/50710 ports-bugs New port: misc/pxclient o [2003/04/08] ports/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] ports/50725 ports-bugs new port: russian/koi2koi o [2003/04/09] ports/50754 ports-bugs New port: security/hmap - web server fing o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/10] ports/50777 ports-bugs New port: lxsplit-0.1.1 o [2003/04/10] ports/50788 ports-bugs gnump3d - install problem - adamw asked m o [2003/04/10] ports/50794 ports-bugs New port graphics/pho (version 0.9.1) o [2003/04/10] ports/50799 ports-bugs Lisp Packages install directory should no f [2003/04/11] ports/50822 ports-bugs [PATCH] graphics/netpbm doesn't install i o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/12] ports/50850 ports-bugs -march=pca56 blows up nethack34-nox11 o [2003/04/12] ports/50880 ports-bugs Request for (optional) addition of tcplim o [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f o [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/14] ports/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/15] ports/50992 ports-bugs ports-bug: devel/kprof o [2003/04/15] ports/51005 ports-bugs New port of native window decoration for o [2003/04/15] ports/51008 ports-bugs making sysutils/eject understand cdrom ar o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/16] ports/51071 ports-bugs New port: net/pear-Net_URL - Easy parsing o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] ports/51098 ports-bugs New port: Perl5 module to read and write o [2003/04/19] ports/51158 ports-bugs New port: sysutils/reoback o [2003/04/19] ports/51162 ports-bugs new port: misc/gkrellm-helium, Prague the o [2003/04/20] ports/51190 ports-bugs New port: emulators/extract-xiso o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/21] ports/51214 ports-bugs New port: www/zope-localizer o [2003/04/21] ports/51215 ports-bugs New port: www/zope-translationservice o [2003/04/21] ports/51264 ports-bugs new port: mail/mls o [2003/04/23] ports/51320 ports-bugs NEW PORT: sysutils/adtool f [2003/04/24] ports/51400 ports-bugs new port:biology/lsysexp o [2003/04/24] ports/51402 ports-bugs New port for LDAP Directory Administrator o [2003/04/27] ports/51456 ports-bugs adding new port: opencm o [2003/04/27] ports/51484 ports-bugs undefined reference in libobjc.so o [2003/04/28] ports/51536 ports-bugs rmagic 2.21/FreeBSD 4.8-STABLE failing to o [2003/04/28] ports/51543 ports-bugs New port: py-sybase 0.36 (Sybase DB modul o [2003/04/29] ports/51610 ports-bugs rmagic.sample (config file) & sample.dat o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/04/30] ports/51647 ports-bugs NEW PORT: pglod - inserts web logs into a o [2003/05/02] ports/51694 ports-bugs net/lft update to 2.1 o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/05] ports/51819 ports-bugs New port: Provides a static mod_perl with o [2003/05/07] ports/51915 ports-bugs update for ports dcgui/dclib o [2003/05/07] ports/51918 ports-bugs isc-dhcp3 port package creates dhcp.lease o [2003/02/08] ports/48097 ports-bugs Manual for camediaplay(1) falsely describ o [2003/05/09] ports/52006 ports-bugs rsync fails with protocol problems o [2003/05/09] ports/52016 ports-bugs New port: lang/harbour - A Clipper-compat o [2003/05/10] ports/52037 ports-bugs port multimedia/avifile fails to build (I o [2003/05/11] ports/52082 ports-bugs bacon port has no its homepage f [2003/05/12] ports/52113 ports-bugs mpg123 fails to play o [2003/05/12] ports/52125 ports-bugs New port: The devel branch of the ion win f [2003/05/12] ports/52130 ports-bugs New Port: sysutils/klineakconfig configur o [2003/05/12] ports/52132 ports-bugs New port: audio/prokyon3 Really nice mp3- o [2003/05/13] ports/52158 ports-bugs Update to pr:ports/52129 sysutils/lineakd o [2003/05/13] ports/52159 ports-bugs updates to pr:ports/52130 and pr:ports/52 o [2003/05/13] ports/52176 ports-bugs new port: comms/gscmxx 0.4.1 - gtk-fronte o [2003/05/15] ports/52268 ports-bugs devel/picasm update to 1.12b o [2003/05/17] ports/52357 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52359 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52361 ports-bugs New Port: Common Lisp Parser Generator o [2003/05/17] ports/52362 ports-bugs New Port: Common Lisp Parser Generator (S o [2003/05/17] ports/52363 ports-bugs New Port: Parser Generator for Common Lis o [2003/05/17] ports/52364 ports-bugs New Port: Common Lisp Parser Generator (C o [2003/05/17] ports/52365 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52366 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52367 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52368 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52369 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52370 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52371 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52372 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52373 ports-bugs New Port: Splitting Common Lisp sequences o [2003/05/17] ports/52374 ports-bugs New Port: Splitting Common Lisp Sequences o [2003/05/17] ports/52375 ports-bugs New Port: Splitting Common Lisp Sequences o [2003/05/17] ports/52376 ports-bugs New Port: Splitting Common Lisp sequences f [2003/05/17] ports/52380 ports-bugs Configure problem in libggi o [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/18] ports/52402 ports-bugs New port: www/webcpp (converts code to hi o [2003/05/19] ports/52430 ports-bugs port lang/ocaml fails to build o [2002/01/14] ports/33906 ports-bugs [PATCH] tic program as a port for easier o [2002/02/09] ports/34759 ports-bugs Phantasia does not accept [enter] key f [2002/04/19] ports/37244 ports-bugs c2lib port includes vector.h which appare o [2002/07/30] ports/41167 ports-bugs adventure.6 man-page, add section AUTHORS f [2003/05/19] ports/52444 ports-bugs Fix to ports/lang/ici build problem on 5- o [2003/05/19] ports/52452 ports-bugs [PATCH] sysutils/afio mangles FIFOs o [2003/05/20] ports/52463 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52464 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/22] ports/52582 ports-bugs new port: net/weedns_sc o [2003/05/22] ports/52590 ports-bugs [non-maintainer update] update logic for o [2003/05/23] ports/52614 ports-bugs New port openradius o [2003/05/24] ports/52653 ports-bugs ports/net/gnu-radius no longer compatible o [2003/05/24] ports/52659 ports-bugs New port: news/xvnews Open Look-based new o [2003/05/27] ports/52727 ports-bugs Add Apache2 support at phplot o [2003/05/28] ports/52747 ports-bugs port update - mail/p5-Mail-Ezmlm o [2003/05/28] ports/52773 ports-bugs mysql-gui won't build a [2003/05/29] ports/52788 ports-bugs Port p5-Gimp unfetchable o [2003/05/29] ports/52790 ports-bugs New port: shells/bash-completion o [2003/05/29] ports/52794 ports-bugs Xmaxima cannot start o [2003/05/29] ports/52796 ports-bugs devel/apr is compiled without threads sup o [2003/05/30] ports/52811 ports-bugs [PATCH] net/unison: install documentation o [2003/06/02] ports/52857 ports-bugs New port: Scan detection and blocking dae o [2003/06/02] ports/52873 ports-bugs New port: kcmpureftpd, a PureFTP control f [2003/06/02] ports/52877 ports-bugs Non-Maintainer-Update: mail/postfix add s o [2003/06/02] ports/52881 ports-bugs New port: sysutils/clean; automatically r o [2003/06/04] ports/52923 ports-bugs New port: f-prot - the F-Prot virus scann o [2003/06/04] ports/52941 ports-bugs security/poc card-terminal problems o [2003/06/04] ports/52955 ports-bugs Update port: sysutils/di: di-3.9 - disk i o [2003/06/06] ports/52989 ports-bugs update archivers/libcomprex to 0.3.3 o [2003/06/06] ports/52997 ports-bugs NEW port CAD/admesh o [2003/06/07] ports/53019 ports-bugs New Port: kvirc3 a irc client based on o [2003/06/07] ports/53020 ports-bugs [patch] fix pygame detection in games/joo o [2003/06/09] ports/53080 ports-bugs ARJ archiver with Russian localization o [2003/06/10] ports/53145 ports-bugs mplayer fails to compile o [2003/06/10] ports/53185 ports-bugs ports/games/connect4 depends on archivers o [2003/06/11] ports/53193 ports-bugs [Patch] unbroke port: math/simpack fix co o [2003/06/11] ports/53232 ports-bugs New port: net/bitlbee o [2003/06/11] ports/53244 ports-bugs graphics/xmms-nebulus port update o [2003/06/11] ports/53246 ports-bugs New Port: mysqlcc o [2003/06/12] ports/53247 ports-bugs New port: gnome-ssh-askpass o [2003/06/12] ports/53248 ports-bugs mysql-qui port make aborts with inadequat o [2003/06/12] ports/53256 ports-bugs update port: misc/pl-sms update patch res o [2003/06/12] ports/53266 ports-bugs ploticus should not require X11 (patch in o [2003/06/13] ports/53274 ports-bugs New port: net/rbldnsd - small fast DNS se f [2003/06/13] ports/53281 ports-bugs Port for LDAP servers access and KAddress o [2003/06/11] ports/53206 ports-bugs Patch updates x11-wm/pekwm to version 0.1 o [2003/06/14] ports/53318 ports-bugs New port, proxychains 1.8.2 o [2003/06/14] ports/53319 ports-bugs New port: yaph 0.91 o [2003/06/14] ports/53321 ports-bugs Update: comms/plp o [2003/06/14] ports/53331 ports-bugs [patch] fix checksum for textproc/jing o [2003/06/15] ports/53346 ports-bugs xmms volume bar error o [2003/06/15] ports/53347 ports-bugs port-update: icu2 f [2003/06/15] ports/53348 ports-bugs MAINTAINER-UPDATE: textproc/xerces-c2 f [2003/06/16] ports/53367 ports-bugs New port: xprobe2 ICMP active OS fingerpr o [2003/06/18] ports/53436 ports-bugs [PATCH] games/magiccube4d to 2.2 o [2003/06/18] ports/53444 ports-bugs comms/hamfax - sending and receiving facs f [2003/06/18] ports/53445 ports-bugs Patch to update www/mod_mp3 port to 0.40 o [2003/06/18] ports/53457 ports-bugs [patch][non-maintainer] set NOT_FOR_ARCHS o [2003/06/18] ports/53460 ports-bugs security/inflex port out-of-date o [2003/06/18] ports/53474 ports-bugs Fix audio support for squeak3 o [2003/06/19] ports/53482 ports-bugs New Port: zabbix - Very advanced network o [2003/06/19] ports/53490 ports-bugs [New ports] linux-pam-docs o [2003/06/19] ports/53537 ports-bugs New port: mb2md - Converts mbox mailboxes o [2003/06/20] ports/53540 ports-bugs New port: audio/mpio-driver Digit@lway MP o [2003/06/20] ports/53541 ports-bugs New port: audio/mpiosh Digit@lway MPIO MP o [2003/06/20] ports/53549 ports-bugs update for ports dcgui/dclib in category: o [2003/06/20] ports/53558 ports-bugs new port of Gerrit Pape's runit package o [2003/06/21] ports/53588 ports-bugs [PATCH] devel/ac-archive: update to 0.5.5 o [2003/06/22] ports/53615 ports-bugs obsolete dependancy ports/security/drweb o [2003/06/22] ports/53617 ports-bugs Update databases/mysql-jdbc-mm to mysql-c o [2003/06/22] ports/53622 ports-bugs [patch] archivers/unadf and "#define LITT o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts o [2003/06/23] ports/53662 ports-bugs [CHANGE-REQUEST] Patch textproc/xlhtml so o [2003/06/24] ports/53671 ports-bugs NEW PORT: rude/crude UDP traffic generato o [2003/06/24] ports/53701 ports-bugs [NEW PORT] devel/skalibs: General purpose o [2003/06/24] ports/53702 ports-bugs Port upgrade: devel/directfb o [2003/06/25] ports/53722 ports-bugs [UPDATE] www/plone from 1.0.1 to 1.0.3 f [2003/06/25] ports/53746 ports-bugs New port: graphics/imgseek o [2003/06/26] ports/53793 ports-bugs New port for sebeksniff f [2003/06/27] ports/53816 ports-bugs [NEW PORT] databases/adodb3 f [2003/06/27] ports/53853 ports-bugs Update port: mail/hotwayd to version 0.5. o [2003/06/28] ports/53877 ports-bugs p5-Data-FormValidator can be updated o [2003/06/29] ports/53914 ports-bugs [NEW PORT] games/linux_nwnclient: Neverwi o [2003/06/29] ports/53915 ports-bugs [NEW PORT] games/linux_nwndata: Neverwint o [2003/06/30] ports/53923 ports-bugs New Port: Sipsak is a SIP test command li f [2003/06/30] ports/53934 ports-bugs www/mod_jk2 fails to build (Maintainer fi o [2003/07/01] ports/53981 ports-bugs New Port: k3b 0.8.1, a kde cd recording g o [2003/07/01] ports/53983 ports-bugs New port: Zope Extensible User Folder o [2003/07/01] ports/53997 ports-bugs update py-psycopg from 1.0.13 to 1.1.5.1 o [2003/07/02] ports/54038 ports-bugs [new port] www/gforge: Open Source collab o [2003/07/03] ports/54055 ports-bugs new port: x11-toolkits/gtk-theme-switch2 o [2003/07/03] ports/54059 ports-bugs New port: psycopg database adapter for zo o [2003/07/03] ports/54060 ports-bugs new port devel/aegis o [2003/07/03] ports/54079 ports-bugs New port: Formulator for Zope f [2003/07/03] ports/54080 ports-bugs Update port mail/minimalist to the latest o [2003/07/04] ports/54092 ports-bugs LCDd daemon from LCDd starts in the foreg o [2003/07/04] ports/54095 ports-bugs New port: ParsedXML for Zope o [2003/07/04] ports/54096 ports-bugs Plone port bundled formulator conflicts w o [2003/07/04] ports/54105 ports-bugs New port submission o [2003/07/04] ports/54116 ports-bugs New port: sysutils/rc_subr (rcNG support o [2003/07/06] ports/54146 ports-bugs UPDATE: www/eddie - fix build with Erlang o [2003/07/06] ports/54149 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 sup o [2003/07/06] ports/54152 ports-bugs New Port: x11-fonts/ppantsfonts o [2003/07/06] ports/54160 ports-bugs New port: show 2.1, a fast image viewer f o [2003/07/07] ports/54174 ports-bugs clean spaces behind variables out of port o [2003/07/07] ports/54187 ports-bugs new port devel/p5-DateTime-Format-HTTP o [2003/07/07] ports/54194 ports-bugs new port p5-DateTime-Format-W3CDTF o [2003/07/07] ports/54195 ports-bugs new port p5-DateTime-Format-ISO8601 o [2003/07/07] ports/54199 ports-bugs port update: www/dansguardian to version o [2003/07/08] ports/54209 ports-bugs FBSD-1.0-4365 nVidia driver (port) locks o [2003/07/08] ports/54218 ports-bugs new port: mail/cone o [2003/07/08] ports/54245 ports-bugs [new port] sysutils/bubblemon2 o [2003/07/09] ports/54251 ports-bugs [NEW PORT] www/zope-xmlwidgets: XMLWidget o [2003/07/09] ports/54271 ports-bugs New port: databases/pgbash o [2003/07/09] ports/54272 ports-bugs new port: misc/torrentsniff - BitTorrent o [2003/07/09] ports/54279 ports-bugs new port: sysutils/ucspi-ssl f [2003/07/09] ports/54285 ports-bugs port update: www/dansguardian-devel to v o [2003/07/09] ports/54298 ports-bugs New port KVIrc 3.0.0 o [2003/07/09] ports/54299 ports-bugs [patch][non-maintainer] better identifica o [2003/07/10] ports/54319 ports-bugs New port: net/zonecheck version 2.0.0b5 f [2003/07/08] ports/54247 ports-bugs [patch] mark audio/ximp3 as BROKEN on non o [2003/07/10] ports/54335 ports-bugs new port: PPower4 - Post processor for PD o [2003/07/10] ports/54346 ports-bugs [NEW Port]:: x11/materm o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG o [2003/07/10] ports/54356 ports-bugs [new port] textproc/sagasu o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of LaTeX o [2003/07/11] ports/54408 ports-bugs [new port] ftp/prozgui o [2003/07/12] ports/54411 ports-bugs New Port: www/caudium-devel Devel Branch o [2003/07/12] ports/54414 ports-bugs New port: Dasher -- text entry system (fo o [2003/07/12] ports/54423 ports-bugs net/libnss-mysql (NSS module using a MySQ o [2003/07/15] ports/54493 ports-bugs New port: xmms-infopipe (Create a named p f [2003/07/15] ports/54502 ports-bugs [Update] games/freeciv: 1.13.0 -> 1.14.0 o [2003/06/25] ports/53740 ports-bugs New port: Fluka - Linux Monte Carlo simul o [2003/07/15] ports/54511 ports-bugs patch: net/wmwave: more portable data gat o [2003/07/15] ports/54530 ports-bugs [new port] deskutils/multi-backgrounds-da o [2003/07/16] ports/54550 ports-bugs [NEW PORT] www/zope-FileSystemSite: Enabl o [2003/07/16] ports/54553 ports-bugs New port: Growspd displays growth rate of o [2003/07/16] ports/54557 ports-bugs [NEW PORT] security/gnutls-devel: develop o [2003/07/16] ports/54565 ports-bugs New port: net/zabbix - advanced network m o [2003/07/17] ports/54571 ports-bugs New port: security/tinyca version 0.4.9 g o [2003/07/18] ports/54617 ports-bugs New port: lang/freetxl o [2003/07/18] ports/54624 ports-bugs Update: net/gtk-gnutella o [2003/07/19] ports/54628 ports-bugs make install ignores DB_DIR when creating o [2003/07/19] ports/54629 ports-bugs ports/databases/p5-postgresql-plperl buil o [2003/07/19] ports/54636 ports-bugs misc/gtktalog: Remove PERL dependancy and o [2003/07/20] ports/54650 ports-bugs new port submission - misc/zidrav - file o [2003/07/20] ports/54656 ports-bugs mail/imp3: adding support of mysql40 & my o [2003/07/20] ports/54675 ports-bugs New port: finance/grisbi, a personal fina o [2003/07/20] ports/54685 ports-bugs ipv6 support for port multimedia/xmms o [2003/07/21] ports/54703 ports-bugs ports/x11-wm: New version, 0.0.2 o [2003/07/21] ports/54706 ports-bugs new port databases/DBIx-Ease o [2003/07/21] ports/54710 ports-bugs new port databases/p5-Class-DBI-Oracle o [2003/07/21] ports/54711 ports-bugs [PATCH] update of port security/digest to o [2003/07/21] ports/54715 ports-bugs new port databases/p5-Class-DBI-BaseDSN o [2003/07/21] ports/54718 ports-bugs new port databases/Class-DBI-FromCGI o [2003/07/21] ports/54719 ports-bugs new port databases/p5-Class-DBI-Loader o [2003/07/21] ports/54724 ports-bugs sysutils/diskcheckd doesn't work under CU o [2003/07/21] ports/54729 ports-bugs New port: textproc/p5-XML-Filter-GenericC o [2003/07/21] ports/54732 ports-bugs New port: mod_auth_pam2 (mod_auth_pam for o [2003/07/21] ports/54740 ports-bugs New port: tla, the C version of the arch f [2003/07/22] ports/54757 ports-bugs New port: devel/gideon o [2003/07/24] ports/54798 ports-bugs New port: MasonX::Request::WithApacheSess o [2003/07/24] ports/54811 ports-bugs ports/japanese/kappa20 maintainer update+ o [2003/07/24] ports/54812 ports-bugs New Port par2cmdline for verify/creation/ o [2003/07/24] ports/54814 ports-bugs New port: hungarian/hunspell version 0.9. o [2003/07/24] ports/54823 ports-bugs [NEW PORT] devel/buildtool-doc: Buildtool o [2003/07/24] ports/54831 ports-bugs New port p5-WWW-Curl, perl interface bind o [2003/07/24] ports/54832 ports-bugs [NEW PORT] irc/bitlbee: An IRC to other c o [2003/07/25] ports/54837 ports-bugs minor update to net/cdpd o [2003/07/25] ports/54841 ports-bugs Checksum mismatch on Linux-Realplayer por o [2003/07/25] ports/54845 ports-bugs [PATCH] net/openldap* ports conflicts eac o [2003/07/25] ports/54853 ports-bugs New port: resin, XML Application Server w o [2003/07/25] ports/54857 ports-bugs mod_perl2 does not activate module in the o [2003/07/25] ports/54860 ports-bugs new port (linux-opengroupware) o [2003/07/26] ports/54886 ports-bugs new port for ports tree o [2003/07/26] ports/54887 ports-bugs [new port] mail/dbmail: An SQL database-b o [2003/07/27] ports/54912 ports-bugs New port: pkg_cutleaves - Perl script for o [2003/07/27] ports/54918 ports-bugs [PATCH] cad/xcircuit: enable choose of gh o [2003/07/27] ports/54919 ports-bugs [PATCH] chinese/abiword: enable choose of o [2003/07/27] ports/54920 ports-bugs [PATCH] chinese/enscript: enable choose o o [2003/07/27] ports/54921 ports-bugs [PATCH] chinese/moefonts-cid: enable choo o [2003/07/27] ports/54922 ports-bugs [PATCH] comms/tkhylafax: enable choose of o [2003/07/27] ports/54924 ports-bugs [PATCH] devel/doc++: enable choose of gho o [2003/07/27] ports/54925 ports-bugs [PATCH] changed WWW address in pkg-descr o [2003/07/27] ports/54926 ports-bugs [PATCH] graphics/ImageMagick: enable choo o [2003/07/27] ports/54927 ports-bugs [PATCH] graphics/eps2png: enable choose o o [2003/07/27] ports/54928 ports-bugs [PATCH] graphics/epstool: enable choose o o [2003/07/27] ports/54929 ports-bugs [PATCH] graphics/ipe: enable choose of gh o [2003/07/27] ports/54930 ports-bugs [PATCH] graphics/ocaml-images: enable cho o [2003/07/27] ports/54931 ports-bugs [PATCH] graphics/peps: enable choose of g o [2003/07/27] ports/54932 ports-bugs [PATCH] graphics/pstoedit: enable choose o [2003/07/27] ports/54933 ports-bugs [PATCH] graphics/pstoepsi: enable choose o [2003/07/27] ports/54934 ports-bugs [PATCH] graphics/py-chart: enable choose o [2003/07/27] ports/54935 ports-bugs [PATCH] graphics/sam2p: enable choose of o [2003/07/27] ports/54936 ports-bugs [PATCH] lang/logo: enable choose of ghost o [2003/07/27] ports/54937 ports-bugs [PATCH] mbone/wb: enable choose of ghosts o [2003/07/27] ports/54938 ports-bugs [PATCH] using www/squid as proxy (instead o [2003/07/27] ports/54939 ports-bugs [PATCH] misc/instant-workstation: enable o [2003/07/27] ports/54940 ports-bugs [PATCH] print/font2svg: enable choose of o [2003/07/27] ports/54941 ports-bugs [PATCH] print/apsfilter: enable choose of o [2003/07/27] ports/54942 ports-bugs [PATCH] print/ggv2: enable choose of ghos o [2003/07/27] ports/54943 ports-bugs [PATCH] print/gnomeprint: enable choose o o [2003/07/27] ports/54944 ports-bugs [PATCH] print/magicfilter: enable choose o [2003/07/27] ports/54945 ports-bugs [PATCH] print/html2ps-letter: enable choo o [2003/07/27] ports/54946 ports-bugs [PATCH] print/pnm2ppa: enable choose of g o [2003/07/27] ports/54947 ports-bugs [PATCH] misc/pointless: enable choose of o [2003/07/27] ports/54948 ports-bugs [PATCH] print/preview-latex: enable choos o [2003/07/27] ports/54950 ports-bugs [PATCH] print/transfig: enable choose of o [2003/07/27] ports/54951 ports-bugs [PATCH] textproc/latex2html: enable choos o [2003/07/27] ports/54953 ports-bugs [PATCH] textproc/prosper: enable choose o o [2003/07/27] ports/54954 ports-bugs [PATCH] textproc/tth: enable choose of gh o [2003/07/27] ports/54955 ports-bugs [PATCH] print/pstotext: enable choose of o [2003/07/27] ports/54956 ports-bugs [PATCH] x11/dgs: enable choose of ghostsc o [2003/07/27] ports/54957 ports-bugs [PATCH] mail/courier: enable choose of gh o [2003/07/27] ports/54961 ports-bugs [PATCH] print/scribus: enable choose of g o [2003/07/27] ports/54964 ports-bugs Update to CAD/felt o [2003/07/28] ports/54984 ports-bugs New port: mail/postfixadmin Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B49F37B401; Mon, 11 Aug 2003 11:22:08 -0700 (PDT) Received: from mail.carisma-net.com (www.carisma-net.com [208.8.19.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DA9243F3F; Mon, 11 Aug 2003 11:22:02 -0700 (PDT) (envelope-from fricciardi@carisma-net.com) Received: from pcp02536860pcs.crosky01.pa.comcast.net [68.32.225.66] by mail.carisma-net.com (ArGoSoft Mail Server Pro for WinNT/2000/XP, Version 1.8 (1.8.3.6)); Mon, 11 Aug 2003 14:24:56 -0400 Received: by walken.carisma-net.com with Internet Mail Service (5.5.2653.19) id ; Mon, 11 Aug 2003 14:21:11 -0400 Message-ID: <589DFD10771D6249B9E9AEFF2ADE34A52544@walken.carisma-net.com> From: Frank Ricciardi To: "'tobez@FreeBSD.org'" Date: Mon, 11 Aug 2003 14:21:10 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain cc: "'ports@FreeBSD.org'" Subject: FreeBSD Port: p5-Time-HiRes-1.47,1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 18:22:08 -0000 Hi, I have been reading a lot on the web about a problem building this module... It might not be specific to this module, but it is very consistent, we can't seem to get past it. We are BSD 4.8 on I386 See below: willis# make ===> Building for p5-Time-HiRes-1.47,1 cc -o blib/arch/auto/Time/HiRes/HiRes.so -Wl,-E -shared -lperl -lm HiRes.o /usr/libexec/elf/ld: final link failed: Bad value *** Error code 1 Stop in /var/mail/spamassassin/p5-Time-HiRes/work/Time-HiRes-1.47. *** Error code 1 Stop in /var/mail/spamassassin/p5-Time-HiRes. Thanks in advance for your time! Frank Frank V. Ricciardi CARISMA Box 1566 Doylestown, PA 18901 215-489-9718 www.carisma-net.com From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 13:23:38 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1164A37B401 for ; Mon, 11 Aug 2003 13:23:38 -0700 (PDT) Received: from moya.lambermont.dyndns.org (e165253.upc-e.chello.nl [213.93.165.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1284843F93 for ; Mon, 11 Aug 2003 13:23:37 -0700 (PDT) (envelope-from hans@lambermont.dyndns.org) Received: from localhost (localhost [127.0.0.1]) by moya.lambermont.dyndns.org (Postfix) with ESMTP id 17389365A7 for ; Mon, 11 Aug 2003 22:23:35 +0200 (CEST) Received: by moya.lambermont.dyndns.org (Postfix, from userid 1001) id 7AC4936401; Mon, 11 Aug 2003 22:23:31 +0200 (CEST) Date: Mon, 11 Aug 2003 22:23:31 +0200 To: ports@FreeBSD.org Message-ID: <20030811202331.GC92209@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i From: hans@lambermont.dyndns.org (Hans Lambermont) X-Virus-Scanned: by AMaViS perl-11 Subject: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 20:23:38 -0000 About devel/sdl12 , I propose to create a symlink bin/sdl-config pointing to the installed bin/sdl11-config because sdl-config is what others expect to find. What do you think of this ? regards, Hans Lambermont -- http://lambermont.webhop.org/ () ascii ribbon campaign - against HTML mail, /\ vCards and proprietary formats From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 15:17:13 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8D8837B401 for ; Mon, 11 Aug 2003 15:17:13 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1D8B43F3F for ; Mon, 11 Aug 2003 15:17:11 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 93965 invoked from network); 11 Aug 2003 22:17:09 -0000 Received: from unknown (HELO lucifer.cultdeadsheep.org) (192.168.0.2) by goofy.cultdeadsheep.org with SMTP; 11 Aug 2003 22:17:09 -0000 Date: Tue, 12 Aug 2003 00:16:51 +0200 From: Clement Laforet To: ports@FreeBSD.org Message-Id: <20030812001651.5ea59ce8.sheepkiller@cultdeadsheep.org> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.4 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: possible missing entries un CVSROOT-ports/modules X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 22:17:14 -0000 Hi guys, Today I rebuilt my dev machine, and tested it with my ports. It seems that some ports doesn't have any entry in CVSROOT-ports/modules. Hope it helps ;-) regards, clem ports/astro/dgpsip ports/devel/autoconf253 ports/devel/automake15 ports/devel/libexecinfo ports/devel/libidn ports/devel/mk ports/devel/mpatrol ports/emulators/linux_base-8 ports/games/lgeneral-data ports/graphics/gd1 ports/graphics/gqview-devel ports/graphics/p5-GD1 ports/japanese/gd1 ports/java/jakarta-struts ports/java/simplicity ports/lang/python22 ports/lang/ruby_r ports/lang/ruby_r-devel ports/lang/ruby_static ports/lang/ruby_static-devel ports/mail/aileron ports/mail/smtpmail ports/math/fbm ports/misc/dnetc ports/net/openldap20-server ports/net/openldap21-server ports/net/openldap22-server ports/net/prtunnel ports/net/ruby-romp ports/net/uplog ports/news/noffle ports/security/ADMsnmp ports/security/authpf ports/security/hostsentry ports/security/hydra ports/security/libwhisker ports/security/nikto ports/sysutils/jdiskreport ports/sysutils/linuxfdisk ports/www/axis ports/www/caudium12 ports/www/cybercalendar ports/www/linux-mozillafirebird ports/www/mod_log_sql ports/www/p5-CGI-Untaint ports/www/php5-cgi ports/www/suphp ports/x11/workrave From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 15:26:58 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05DDB37B401 for ; Mon, 11 Aug 2003 15:26:58 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3042A43FA3 for ; Mon, 11 Aug 2003 15:26:57 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D4C7466D7A; Mon, 11 Aug 2003 15:26:56 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 6EA96654; Mon, 11 Aug 2003 15:26:56 -0700 (PDT) Date: Mon, 11 Aug 2003 15:26:56 -0700 From: Kris Kennaway To: Hans Lambermont Message-ID: <20030811222655.GA43739@rot13.obsecurity.org> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <20030811202331.GC92209@moya.lambermont.dyndns.org> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 22:26:58 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 11, 2003 at 10:23:31PM +0200, Hans Lambermont wrote: > About devel/sdl12 , >=20 > I propose to create a symlink bin/sdl-config pointing to the installed > bin/sdl11-config because sdl-config is what others expect to find. >=20 > What do you think of this ? This will cause problems the next time we need to update SDL, to say sdl12-config. Every SDL port should use the value of the SDL_CONFIG environment variable so we can easily point it to whichever version is appropriate. Kris --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OBgvWry0BWjoQKURApsgAJ9insAwfYzjAqCWPVJaZ4IfqDKORwCg9RnS EFg+ioxBjm/KewG5jTU2ems= =CHrM -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 15:42:47 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B5FA37B404 for ; Mon, 11 Aug 2003 15:42:47 -0700 (PDT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id E9A0A43F3F for ; Mon, 11 Aug 2003 15:42:45 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 3163 invoked by uid 65534); 11 Aug 2003 22:42:44 -0000 Received: from static62-99-146-055.adsl.inode.at (EHLO martin.kleinerdrache.org) (62.99.146.55) by mail.gmx.net (mp007) with SMTP; 12 Aug 2003 00:42:44 +0200 Date: Tue, 12 Aug 2003 00:42:42 +0200 From: Martin Klaffenboeck To: gnome@freebsd.org, ports@freebsd.org Message-ID: <20030811224242.GA1867@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.12 Subject: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 22:42:48 -0000 Hello, (Please cc me, I'm not on the list anymore.) I was maintaining about 9 ports in the FreeBSD ports collection, and I was starting the gports project (http://gports.sourceforge.net). But now I have changed back to linux after using FreeBSD on my desktop for about two years. It was a great time here, the hardest thing to quit with FreeBSD is not the OS itselfe, the hard thing is to say good by to all my friends in the mailling lists and chatrooms, which are using FreeBSD. The community is quite good, and I don't know how long it will take to get new friends in the linux community. I hope there will come some nice guys like you. (Esspecially Joe and Franz, but the others too.) Good bye people. I'll miss you somehow. Yours, Martin PS. Please take over the maintainership of my ports, some will go to gnome@, some to ports@. Martin Grimme told me, that it would be nice if someone could take over the gdeskcal port for FreeBSD. Write him an email (mailto:martin@pycage.de) to put you into his announcement list. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 16:02:11 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D6BD37B401; Mon, 11 Aug 2003 16:02:11 -0700 (PDT) Received: from fire.org.nz (firewall.fire.org.nz [203.97.144.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5278943F93; Mon, 11 Aug 2003 16:02:09 -0700 (PDT) (envelope-from andy@fud.org.nz) Received: by homer.fire.org.nz id <119044>; Tue, 12 Aug 2003 11:02:00 +1200 From: Andrew Thompson To: mbr@FreeBSD.org Content-Type: text/plain Message-Id: <03Aug12.110200nzst.119044@homer.fire.org.nz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Tue, 12 Aug 2003 11:02:16 +1200 Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: cirtix_ica X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 23:02:11 -0000 Hi, I am trying to upgrade my ica client, but get the following error. I have removed the old 6.3 port. ---------- $uname -a FreeBSD holly.fire.org.nz 5.1-CURRENT FreeBSD 5.1-CURRENT #14: Mon Aug 11 08:52:23 NZST 2003 root@holly.fire.org.nz:/usr/obj/usr/src/sys/HOLLY i386 ---------- ===> Installing for citrix_ica-7.00_1 ===> citrix_ica-7.00_1 depends on file: /compat/linux/lib/libc.so.6 - found ===> Generating temporary packing list ===> Checking if net/citrix_ica already installed /usr/bin/sed s%DESTINATION%/usr/local/ICAClient% < /usr/ports/net/citrix_ica/files/wfcmgr > /usr/po rts/net/citrix_ica/work/wfcmgr.x /usr/bin/sed s%DESTINATION%/usr/local/ICAClient% < /usr/ports/net/citrix_ica/files/wfica > /usr/por ts/net/citrix_ica/work/wfica.x cd /usr/ports/net/citrix_ica/work && /compat/linux/bin/sh -c './setupwfc < response' This package does not contain a Citrix ICA Client for Unix for this workstation. *** Error code 1 Stop in /usr/ports/net/citrix_ica. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 17:12:11 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AB237B401 for ; Mon, 11 Aug 2003 17:12:11 -0700 (PDT) Received: from oak.FernUni-Hagen.de (oak.fernuni-hagen.de [132.176.114.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id D166C43FAF for ; Mon, 11 Aug 2003 17:12:10 -0700 (PDT) (envelope-from q5480035@bonsai.FernUni-Hagen.de) Received: from amavis by oak.FernUni-Hagen.de with scanned-ok (Exim 4.04) id 19mMll-000189-00 for ports@freebsd.org; Tue, 12 Aug 2003 02:12:09 +0200 Received: from bonsai.fernuni-hagen.de ([132.176.114.21]) by oak.FernUni-Hagen.de with esmtp (Exim 4.04) id 19mMle-00017b-00 for ports@freebsd.org; Tue, 12 Aug 2003 02:12:02 +0200 Received: (from q5480035@localhost) by bonsai.fernuni-hagen.de (8.11.6+Sun/8.10.2) id h7C0C1v13015; Tue, 12 Aug 2003 02:12:01 +0200 (MEST) Date: Tue, 12 Aug 2003 02:12:01 +0200 (MEST) Message-Id: <200308120012.h7C0C1v13015@bonsai.fernuni-hagen.de> From: Marc Ernst Eddy van Woerkom To: ports@freebsd.org X-Virus-Scanned: by AMaViS perl-11 Subject: Opera dumps core X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 00:12:11 -0000 Are there any known issues with the FreeBSD opera port? I have two FreeBSD systems with a fairly new -CURRENT on one it runs pretty good, on the other it never starts, just dumps cores. The working box has XF4 4.2, the box where opera just dumps has XF4 4.3 installed. Regards, Marc From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 17:20:45 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FAC437B401; Mon, 11 Aug 2003 17:20:45 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12FCA43FA3; Mon, 11 Aug 2003 17:20:44 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.37.247]) by lakemtao06.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030812002044.RBJK15657.lakemtao06.cox.net@mezz.mezzweb.com>; Mon, 11 Aug 2003 20:20:44 -0400 To: Martin Klaffenboeck References: <20030811224242.GA1867@martin.kleinerdrache.org> Message-ID: Content-Type: text/plain; charset=utf-8; format=flowed From: Jeremy Messenger MIME-Version: 1.0 Date: Mon, 11 Aug 2003 19:20:03 -0500 In-Reply-To: <20030811224242.GA1867@martin.kleinerdrache.org> User-Agent: Opera7.11/Linux M2 build 406 cc: gnome@freebsd.org cc: ports@freebsd.org Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 00:20:45 -0000 On Tue, 12 Aug 2003 00:42:42 +0200, Martin Klaffenboeck wrote: > Hello, > > (Please cc me, I'm not on the list anymore.) > > I was maintaining about 9 ports in the FreeBSD ports collection, and I > was starting the gports project (http://gports.sourceforge.net). > > But now I have changed back to linux after using FreeBSD on my desktop > for about two years. It was a great time here, the hardest thing to quit > with FreeBSD is not the OS itselfe, the hard thing is to say good by to > all my friends in the mailling lists and chatrooms, which are using > FreeBSD. The community is quite good, and I don't know how long it will > take to get new friends in the linux community. I hope there will come > some nice guys like you. (Esspecially Joe and Franz, but the others > too.) May I ask you what it makes you switch over to Linux? I am just curious.. :-) Cheers, Mezz > Good bye people. > > I'll miss you somehow. > > Yours, > Martin > > PS. Please take over the maintainership of my ports, some will go to > gnome@, some to ports@. Martin Grimme told me, that it would be nice if > someone could take over the gdeskcal port for FreeBSD. Write him an > email (mailto:martin@pycage.de) to put you into his announcement list. -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 18:22:48 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4602C37B401; Mon, 11 Aug 2003 18:22:48 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id D283E43FAF; Mon, 11 Aug 2003 18:22:44 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7C1JMZw020511; Mon, 11 Aug 2003 21:19:22 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7C1LYOQ077725; Mon, 11 Aug 2003 21:21:34 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Martin Klaffenboeck In-Reply-To: <20030811224242.GA1867@martin.kleinerdrache.org> References: <20030811224242.GA1867@martin.kleinerdrache.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-aw5UeAyT54PJITlEKOAV" Organization: MarcusCom, Inc. Message-Id: <1060651356.95513.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Mon, 11 Aug 2003 21:22:36 -0400 X-Spam-Status: No, hits=-10.9 required=5.0 tests=BAYES_10,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 01:22:48 -0000 --=-aw5UeAyT54PJITlEKOAV Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2003-08-11 at 18:42, Martin Klaffenboeck wrote: > Hello, >=20 > (Please cc me, I'm not on the list anymore.) >=20 > I was maintaining about 9 ports in the FreeBSD ports collection, and I=20 > was starting the gports project (http://gports.sourceforge.net). >=20 > But now I have changed back to linux after using FreeBSD on my desktop=20 > for about two years. It was a great time here, the hardest thing to=20 > quit with FreeBSD is not the OS itselfe, the hard thing is to say good=20 > by to all my friends in the mailling lists and chatrooms, which are=20 > using FreeBSD. The community is quite good, and I don't know how long=20 > it will take to get new friends in the linux community. I hope there=20 > will come some nice guys like you. (Esspecially Joe and Franz, but the=20 > others too.) Martin, I'm sorry to see you go. I hope this departure is an amicable one. It was a pleasure working with you. I'll see to it your ports get a good home. Thanks for all your work both on your ports and marcusmerge. Joe >=20 > Good bye people. >=20 > I'll miss you somehow. >=20 > Yours, > Martin >=20 > PS. Please take over the maintainership of my ports, some will go to=20 > gnome@, some to ports@. Martin Grimme told me, that it would be nice=20 > if someone could take over the gdeskcal port for FreeBSD. Write him an=20 > email (mailto:martin@pycage.de) to put you into his announcement list. > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-aw5UeAyT54PJITlEKOAV Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/OEFbb2iPiv4Uz4cRAqsjAJwN1yo0rqAvabcCvcUnVygAaymitACfVvST NTX6M3NaQbSxuh3xgoW72PA= =FRhF -----END PGP SIGNATURE----- --=-aw5UeAyT54PJITlEKOAV-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 19:17:36 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CE5737B41D for ; Mon, 11 Aug 2003 19:17:30 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id AE3FB43F85 for ; Mon, 11 Aug 2003 19:17:27 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 21355 invoked by uid 1252); 12 Aug 2003 02:17:27 -0000 Date: 11 Aug 2003 22:17:27 -0400 Date: Mon, 11 Aug 2003 22:17:27 -0400 From: Adam Weinberger To: Martin Klaffenboeck Message-ID: <20030812021727.GA18091@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Martin Klaffenboeck , gnome@freebsd.org, ports@freebsd.org References: <20030811224242.GA1867@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030811224242.GA1867@martin.kleinerdrache.org> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: gnome@freebsd.org cc: ports@freebsd.org Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 02:17:37 -0000 >> (08.11.2003 @ 1842 PST): Martin Klaffenboeck said, in 1.2K: << > Hello, > > (Please cc me, I'm not on the list anymore.) > > I was maintaining about 9 ports in the FreeBSD ports collection, and I > was starting the gports project (http://gports.sourceforge.net). > > But now I have changed back to linux after using FreeBSD on my desktop > for about two years. It was a great time here, the hardest thing to > quit with FreeBSD is not the OS itselfe, the hard thing is to say good > by to all my friends in the mailling lists and chatrooms, which are > using FreeBSD. The community is quite good, and I don't know how long > it will take to get new friends in the linux community. I hope there > will come some nice guys like you. (Esspecially Joe and Franz, but the > others too.) > > Good bye people. > > I'll miss you somehow. >> end of "I'm out of here..." from Martin Klaffenboeck << Best of luck to you, Martin! I'm saddened to see you go. Cheers, # Adam -- Adam Weinberger vectors.cx >> adam@vectors.cx >> http://www.vectors.cx magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw #vim:set ts=8: 8-char tabs prevent tooth decay. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 20:32:15 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6089237B401 for ; Mon, 11 Aug 2003 20:32:15 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6656043F3F for ; Mon, 11 Aug 2003 20:32:13 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 3478 invoked from network); 12 Aug 2003 03:32:10 -0000 Received: from unknown (HELO lucifer.cultdeadsheep.org) (192.168.0.2) by goofy.cultdeadsheep.org with SMTP; 12 Aug 2003 03:32:10 -0000 Date: Tue, 12 Aug 2003 05:31:52 +0200 From: Clement Laforet To: Clement Laforet Message-Id: <20030812053152.224e15fe.sheepkiller@cultdeadsheep.org> In-Reply-To: <20030812001651.5ea59ce8.sheepkiller@cultdeadsheep.org> References: <20030812001651.5ea59ce8.sheepkiller@cultdeadsheep.org> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.4 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: possible missing entries in CVSROOT-ports/modules X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 03:32:15 -0000 I wrote a little script to find missing and orphaned entries in CVSROOT-ports/modules with simplistic error type detection. This is the last full report (I won't spam this list anymore ;)). The script is below :) Kris, maybe you can and some of these simple lines to your index checker. Regards, clem -------- Missing entries in CVSROOT-port/modules: ports/databases/p5-DBIx-SQLEngine ports/devel/libexecinfo ports/devel/libidn ports/devel/mpatrol ports/emulators/linux_base-8 ports/games/lgeneral-data ports/graphics/gqview-devel ports/java/jakarta-struts ports/java/simplicity ports/lang/python22 ports/mail/aileron ports/mail/smtpmail ports/math/fbm ports/net/prtunnel ports/net/uplog ports/news/noffle ports/security/hostsentry ports/security/hydra ports/security/libwhisker ports/security/nikto ports/sysutils/jdiskreport ports/sysutils/linuxfdisk ports/www/axis ports/www/caudium12 ports/www/cybercalendar ports/www/linux-mozillafirebird ports/www/mod_log_sql ports/www/p5-CGI-Untaint ports/www/php5-cgi Orphaned entries in CVSROOT-port/modules: Orphaned entry: p5-DBIx-SQLEngine ports/databaes/p5-DBIx-SQLEngine Orphaned entry: ko-netdic ports/korean/netdic Misfiled Makefile: gcc34 ports/lang/gcc34 Orphaned entry: php5-cgi ports/lang/php5-cgi Misfiled Makefile: chemtool-devel ports/science/chemtool-devel Orphaned entry: krb5-beta ports/security/krb5-beta Misfiled Makefile: djvuplugin ports/www/djvuplugin Orphaned entry: linux-phoenix ports/www/linux-phoenix Orphaned entry: mod_log_mysql ports/www/mod_log_mysql Orphaned entry: mod_webapp-apache2 ports/www/mod_webapp-apache2 Misfiled Makefile: XFree86-4-Server-snap ports/x11-servers/XFree86-4-Server-snap ------------------------- #!/bin/sh # # Quick sanity check for CVSROOT-ports/modules # # Usage: # ./check-module # if you want to generate INDEX within check-module # GEN_INDEX=1 ./check-module # your cvs root #CVS=/home/ncvs CVS=/WORK/CVS # your port dir #BASE=/usr/ BASE=/WORK/FreeBSD #a cvsup'ed ports tree is useful for error detection #CVSUPED_BASE=${BASE} CVSUPED_BASE=/usr #index name #INDEX=INDEX INDEX=INDEX-5 # Theorically you have nothing to change from now PORTSDIR=${BASE}/ports TMP_MODULES=`mktemp -t modules.sorted` TMP_PORTS=`mktemp -t ports.sorted` TMP_DIFF_MISSING=`mktemp -t diff-missing` TMP_DIFF_ORPHAN=`mktemp -t diff-orphan` MODULES_FILE=${CVS}/CVSROOT-ports/modules UPTODATE_INDEX=${PORTSDIR}/${INDEX} # # We generate INDEX file. # [ $GEN_INDEX ] && ( cd ${BASE} cvs -d ${CVS} update . 2> /dev/null cd ${PORTSDIR} make index) # # Get known ports from CVSROOT-ports/modules awk '$2 ~ /ports\/[a-z].*\/[a-zA-Z0-9].*/ {print $2};' \ ${MODULES_FILE} | sort -n > ${TMP_MODULES} # # Get known ports from INDEX awk -F\| '$2 ~ /usr\/ports\/[a-z].*\/.*/ { sub("/usr/","",$2); print $2 };' \ ${UPTODATE_INDEX} | sort -n > ${TMP_PORTS} # missing ports in CVSROOT-ports/modules diff -Nru ${TMP_MODULES} ${TMP_PORTS} | egrep '^\+ports' | sed 's/^+\(.*\)/\1/' > ${TMP_DIFF_MISSING} # ports who appear ONLY in CVSROOT-ports/modules diff -Nru ${TMP_MODULES} ${TMP_PORTS} | egrep '^\-ports' | sed 's/^-\(.*\)/\1/' > ${TMP_DIFF_ORPHAN} # And now the report echo -e "\n" echo "Missing entries in CVSROOT-port/modules:" for ports in $(cat ${TMP_DIFF_MISSING}) do grep ${ports} ${MODULES_FILE} > /dev/null || echo ${ports} done echo -e "\n" echo -e "Orphaned entries in CVSROOT-port/modules:" for ports in $(cat ${TMP_DIFF_ORPHAN}) do grep ${ports} ${UPTODATE_INDEX} > /dev/null RETVAL=$? if [ "$RETVAL" -ne "0" ] then if [ -d ${CVSUPED_BASE}/${ports} ] then echo -n "Misfiled Makefile: " else echo -n "Orphaned entry: " fi grep ${ports} ${MODULES_FILE} | tr "\t" " " fi done # Cleanup #rm -f ${TMP_MODULES} ${TMP_PORTS} ${TMP_DIFF_MISSING} ${TMP_DIFF_ORPHAN} From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 20:45:19 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41D9B37B401 for ; Mon, 11 Aug 2003 20:45:19 -0700 (PDT) Received: from topaz.ad1810.com (topaz.ad1810.com [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8143243FAF for ; Mon, 11 Aug 2003 20:45:18 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from localhost ([127.0.0.1] helo=k7.mavetju ident=edwin) by topaz.ad1810.com with esmtp (Exim 3.35 #1 (Debian)) id 19mQ61-00024A-00; Tue, 12 Aug 2003 05:45:17 +0200 Received: by k7.mavetju (Postfix, from userid 1001) id 5997F6A7101; Tue, 12 Aug 2003 13:45:08 +1000 (EST) Date: Tue, 12 Aug 2003 13:45:08 +1000 From: Edwin Groothuis To: Hans Lambermont Message-ID: <20030812034508.GA903@k7.mavetju> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030811202331.GC92209@moya.lambermont.dyndns.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 03:45:19 -0000 On Mon, Aug 11, 2003 at 10:23:31PM +0200, Hans Lambermont wrote: > About devel/sdl12 , > > I propose to create a symlink bin/sdl-config pointing to the installed > bin/sdl11-config because sdl-config is what others expect to find. > > What do you think of this ? This works for all the ports I did (if I remember correctly): CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" ... Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 21:25:54 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F95337B401 for ; Mon, 11 Aug 2003 21:25:54 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD46F43F3F for ; Mon, 11 Aug 2003 21:25:53 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 7476E66B9B; Mon, 11 Aug 2003 21:25:53 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 2DB477A8; Mon, 11 Aug 2003 21:25:53 -0700 (PDT) Date: Mon, 11 Aug 2003 21:25:53 -0700 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20030812042553.GA45612@rot13.obsecurity.org> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wac7ysb48OaltWcw" Content-Disposition: inline In-Reply-To: <20030812034508.GA903@k7.mavetju> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: Hans Lambermont Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 04:25:54 -0000 --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 12, 2003 at 01:45:08PM +1000, Edwin Groothuis wrote: > On Mon, Aug 11, 2003 at 10:23:31PM +0200, Hans Lambermont wrote: > > About devel/sdl12 , > >=20 > > I propose to create a symlink bin/sdl-config pointing to the installed > > bin/sdl11-config because sdl-config is what others expect to find. > >=20 > > What do you think of this ? >=20 > This works for all the ports I did (if I remember correctly): >=20 > CONFIGURE_ENV=3D SDL_CONFIG=3D"${SDL_CONFIG}" ... See also USE_SDL. Kris --wac7ysb48OaltWcw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OGxQWry0BWjoQKURAsN7AKDUsaA7M4wF6jBjPrOpUzaI4U6BFgCgjvxq VrnuGTiTuljQXqRIKvK8EAw= =/FUn -----END PGP SIGNATURE----- --wac7ysb48OaltWcw-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 21:44:56 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30A6137B401 for ; Mon, 11 Aug 2003 21:44:56 -0700 (PDT) Received: from topaz.ad1810.com (topaz.ad1810.com [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CEF243F93 for ; Mon, 11 Aug 2003 21:44:55 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from localhost ([127.0.0.1] helo=k7.mavetju ident=edwin) by topaz.ad1810.com with esmtp (Exim 3.35 #1 (Debian)) id 19mR1h-0004SB-00; Tue, 12 Aug 2003 06:44:54 +0200 Received: by k7.mavetju (Postfix, from userid 1001) id A92BF6A7101; Tue, 12 Aug 2003 14:44:50 +1000 (EST) Date: Tue, 12 Aug 2003 14:44:50 +1000 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20030812044450.GG815@k7.mavetju> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812042553.GA45612@rot13.obsecurity.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: Hans Lambermont Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 04:44:56 -0000 On Mon, Aug 11, 2003 at 09:25:53PM -0700, Kris Kennaway wrote: > On Tue, Aug 12, 2003 at 01:45:08PM +1000, Edwin Groothuis wrote: > > On Mon, Aug 11, 2003 at 10:23:31PM +0200, Hans Lambermont wrote: > > > About devel/sdl12 , > > > > > > I propose to create a symlink bin/sdl-config pointing to the installed > > > bin/sdl11-config because sdl-config is what others expect to find. > > > > > > What do you think of this ? > > > > This works for all the ports I did (if I remember correctly): > > > > CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" ... > > See also USE_SDL. That's a new one. Would be handy if there was a USE_SDL_ALLTHEOTHERLIBSTOO which point to SDL_mixer, SDL_image, SDL_gfx and SDL_ttf :-) Or maybe not, I don't know. Or like the gnome stuff: "USE_SDL = yes" only does check for sdl11-config. "USE_SDL = mixer image gfx" checks for sdl11-config and these ones too. Let me know if you want to go this far and I'll send-pr a patch. I'm not really sure btw if the implementation in bsd.ports.mk is the right one, it adds a LIB_DEPENDS for SDL-1.1.5, but it doesn't add a BUILD_DEPEND on ${LOCALBASE}/bin/sdl11-config. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 22:09:52 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A71A037B401 for ; Mon, 11 Aug 2003 22:09:52 -0700 (PDT) Received: from hotmail.com (bay8-f55.bay8.hotmail.com [64.4.27.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47EF743F85 for ; Mon, 11 Aug 2003 22:09:52 -0700 (PDT) (envelope-from evantd@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 11 Aug 2003 22:09:52 -0700 Received: from 12.229.123.246 by by8fd.bay8.hotmail.msn.com with HTTP; Tue, 12 Aug 2003 05:09:51 GMT X-Originating-IP: [12.229.123.246] X-Originating-Email: [evantd@hotmail.com] From: "Evan Dower" To: freebsd-ports@freebsd.org Date: Mon, 11 Aug 2003 22:09:51 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 12 Aug 2003 05:09:52.0092 (UTC) FILETIME=[F60999C0:01C3608F] Subject: fcrontab and script command nonexecution X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 05:09:52 -0000 I wrote a script to do a -current build (and it works from the command line), but when I put it in my fcrontab, the calls to script don't seem to call their command argument. Any input would be greatly appreciated. A simplified scenario follows. Also please let me know if anyone else gets these symptoms with this setup. Thanks, Evan Dower Undergraduate, Computer Science University of Washington fcrontab contains: # #minute hour mday month wday who command # !mail(0) # &mail(1) * * * * * /home/evantd/testscript /home/evantd/testscript contains: #!/bin/sh script /home/evantd/testscriptresult.txt echo "testscript run successfully" the mail I receive and /home/evantd/testscriptresult.txt both contain: Script started on Fri Aug 8 20:48:00 2003 Script done on Fri Aug 8 20:48:00 2003 _________________________________________________________________ Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 01:58:42 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D466137B401; Tue, 12 Aug 2003 01:58:42 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1089C43FAF; Tue, 12 Aug 2003 01:58:42 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id E8B032840B; Tue, 12 Aug 2003 10:58:40 +0200 (CEST) From: Franz Klammer To: Jeremy Messenger In-Reply-To: References: <20030811224242.GA1867@martin.kleinerdrache.org> Content-Type: text/plain Message-Id: <1060678720.821.36.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Tue, 12 Aug 2003 08:58:40 +0000 Content-Transfer-Encoding: 7bit cc: FreeBSD-gnome cc: ports@freebsd.org cc: Martin Klaffenboeck Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 08:58:43 -0000 Am Di, 2003-08-12 um 00.20 schrieb Jeremy Messenger: > On Tue, 12 Aug 2003 00:42:42 +0200, Martin Klaffenboeck > wrote: > > > Hello, > > > > (Please cc me, I'm not on the list anymore.) > > > > I was maintaining about 9 ports in the FreeBSD ports collection, and I > > was starting the gports project (http://gports.sourceforge.net). > > > > But now I have changed back to linux after using FreeBSD on my desktop > > for about two years. It was a great time here, the hardest thing to quit > > with FreeBSD is not the OS itselfe, the hard thing is to say good by to > > all my friends in the mailling lists and chatrooms, which are using > > FreeBSD. The community is quite good, and I don't know how long it will > > take to get new friends in the linux community. I hope there will come > > some nice guys like you. (Esspecially Joe and Franz, but the others > > too.) > > May I ask you what it makes you switch over to Linux? I am just curious.. > :-) > Bye Martin! Thanks for the nice words. :-) But i'm also interested why you are doing a so extreme switch-over to Linux only. Anyway ... good luck with you new OS-way of living ;-) Franz. > Cheers, > Mezz > > > Good bye people. > > > > I'll miss you somehow. > > > > Yours, > > Martin > > > > PS. Please take over the maintainership of my ports, some will go to > > gnome@, some to ports@. Martin Grimme told me, that it would be nice if > > someone could take over the gdeskcal port for FreeBSD. Write him an > > email (mailto:martin@pycage.de) to put you into his announcement list. -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 02:26:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0E2837B401 for ; Tue, 12 Aug 2003 02:26:16 -0700 (PDT) Received: from rambutan.pingpong.net (81.milagro.bahnhof.net [195.178.168.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41F8B43FAF for ; Tue, 12 Aug 2003 02:26:15 -0700 (PDT) (envelope-from girgen@pingpong.net) Received: from localhost (localhost [127.0.0.1])h7C9QD2q064765 for ; Tue, 12 Aug 2003 11:26:13 +0200 (CEST) (envelope-from girgen@pingpong.net) Date: Tue, 12 Aug 2003 11:26:13 +0200 From: Palle Girgensohn To: ports@freebsd.org Message-ID: <3960000.1060680373@rambutan.pingpong.net> X-Mailer: Mulberry/3.0.3 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: ports/55354: postgresql update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 09:26:17 -0000 Hi! Could someone please commit this PR (ports/55354). I receive emails every day from ppl asking me to update the port... Thanks, Palle From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 03:24:44 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50BE637B401 for ; Tue, 12 Aug 2003 03:24:44 -0700 (PDT) Received: from atlas.informatik.rwth-aachen.de (atlas.Informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E04D143FBD for ; Tue, 12 Aug 2003 03:24:42 -0700 (PDT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.Informatik.RWTH-Aachen.DE [137.226.194.73]) 8.11.1-0.5) with ESMTP id h7CAOfL07894; Tue, 12 Aug 2003 12:24:41 +0200 Received: (from stolz@localhost)h7CAOfZO050073; Tue, 12 Aug 2003 12:24:41 +0200 (CEST) (envelope-from stolz) Date: Tue, 12 Aug 2003 12:24:41 +0200 From: Volker Stolz To: Marc Ernst Eddy van Woerkom Message-ID: <20030812102441.GC49918@i2.informatik.rwth-aachen.de> References: <200308120012.h7C0C1v13015@bonsai.fernuni-hagen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200308120012.h7C0C1v13015@bonsai.fernuni-hagen.de> X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: Opera dumps core X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 10:24:44 -0000 Am 12. Aug 2003 um 02:12 CEST schrieb Marc Ernst Eddy van Woerkom: > Are there any known issues with the FreeBSD opera port? > I have two FreeBSD systems with a fairly new -CURRENT > on one it runs pretty good, on the other it never > starts, just dumps cores. There are some debugging flags ('opera --help') which might help tracking this down. I saw Opera dumping core because of some Java issue on startup, but on restarting it would inform me that the plugin detection failed and asked me if I want to skip it this time. If you don't see this, you might indeed have a 'real' problem. ktracing might help as well. Last remedy: wipe ~/.opera and try again. Volker -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME rage against the finite state machine From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 03:31:05 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C85837B401 for ; Tue, 12 Aug 2003 03:31:05 -0700 (PDT) Received: from thuis.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C97643FD7 for ; Tue, 12 Aug 2003 03:31:03 -0700 (PDT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 55478 invoked from network); 12 Aug 2003 10:32:04 -0000 Received: from unknown (HELO 192.168.0.109) (192.168.0.109) by 0 with SMTP; 12 Aug 2003 10:32:04 -0000 From: Arjan van Leeuwen To: ports@freebsd.org Date: Tue, 12 Aug 2003 12:31:00 +0200 User-Agent: KMail/1.5.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308121231.00875.avleeuwen@piwebs.com> Subject: Update www/opera to 7.x beta, or repo-copy? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 10:31:05 -0000 Hi, Yesterday, Opera 7.20 Beta 3 for FreeBSD was released (the first 7.x version for FreeBSD). I'm planning on taking maintainership of the www/opera port (if no one objects, of course) and updating it. There's a bit of a dilemma here. Would it be better to get a new port, www/opera7 for this (because 7.20 B3 is still beta), or to update the existing www/opera port to 7.20 B3? I personally think the latter is a better idea, because www/opera is at this moment pretty unstable. 7.20 B3 is a lot better. Also, there is no development anymore going on in the 6.x tree at Opera, so there won't be any other updates to www/opera. What do you think? If we all agree on this, I'll send in a PR today. Best regards, Arjan From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 04:44:34 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E695637B401 for ; Tue, 12 Aug 2003 04:44:34 -0700 (PDT) Received: from topaz.ad1810.com (topaz.ad1810.com [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AFFB43FAF for ; Tue, 12 Aug 2003 04:44:34 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from localhost ([127.0.0.1] helo=k7.mavetju ident=edwin) by topaz.ad1810.com with esmtp (Exim 3.35 #1 (Debian)) id 19mXZo-00043h-00; Tue, 12 Aug 2003 13:44:33 +0200 Received: by k7.mavetju (Postfix, from userid 1001) id 12A1E6A7101; Tue, 12 Aug 2003 21:44:30 +1000 (EST) Date: Tue, 12 Aug 2003 21:44:30 +1000 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20030812114430.GK815@k7.mavetju> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812042553.GA45612@rot13.obsecurity.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: Hans Lambermont Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 11:44:35 -0000 On Mon, Aug 11, 2003 at 09:25:53PM -0700, Kris Kennaway wrote: > On Tue, Aug 12, 2003 at 01:45:08PM +1000, Edwin Groothuis wrote: > > On Mon, Aug 11, 2003 at 10:23:31PM +0200, Hans Lambermont wrote: > > > About devel/sdl12 , > > > > > > I propose to create a symlink bin/sdl-config pointing to the installed > > > bin/sdl11-config because sdl-config is what others expect to find. > > > > > > What do you think of this ? > > > > This works for all the ports I did (if I remember correctly): > > > > CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" ... > > See also USE_SDL. See also ports/55494: [patch] ports/Mk/bsd.sdl.mk -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 06:32:29 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FA5337B405 for ; Tue, 12 Aug 2003 06:32:29 -0700 (PDT) Received: from hotmail.com (bay8-f87.bay8.hotmail.com [64.4.27.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCD2643F85 for ; Tue, 12 Aug 2003 06:32:28 -0700 (PDT) (envelope-from evantd@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 12 Aug 2003 06:32:28 -0700 Received: from 12.229.123.246 by by8fd.bay8.hotmail.msn.com with HTTP; Tue, 12 Aug 2003 13:32:27 GMT X-Originating-IP: [12.229.123.246] X-Originating-Email: [evantd@hotmail.com] From: "Evan Dower" To: allbery@ece.cmu.edu Date: Tue, 12 Aug 2003 06:32:27 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 12 Aug 2003 13:32:28.0694 (UTC) FILETIME=[2CC5E360:01C360D6] cc: freebsd-ports@freebsd.org Subject: Re: fcrontab and script command nonexecution X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 13:32:29 -0000 [CC'ing the list so that others may benefit if they have similar problems] I would consider this to be a desirable feature. Also, I notice that it is not documented in script(1). I would very much like to keep the script calls, since they allow me to have the output sent to me and store a copy in a few well organized file for more detailed perusal. Perhaps I'll take a look at the script code and see if I can divine a way to make it not dependent on a terminal. Thanks very much, E >From: "Brandon S. Allbery KF8NH" >To: "Evan Dower" >Subject: Re: fcrontab and script command nonexecution >Date: Tue, 12 Aug 2003 03:55:19 -0400 > >On Tuesday 12 August 2003 01:09, Evan Dower wrote: > > I wrote a script to do a -current build (and it works from the command > > line), but when I put it in my fcrontab, the calls to script don't seem >to > > call their command argument. Any input would be greatly appreciated. A > >"script" expects to be connected to a terminal, and will malfunction when >invoked without one (as cron does). > >In this kind of situation I run the script with "sh -x"; the result doesn't >really look that much like the output of "script" but is generally usable. > >-- >brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net >system administrator [WAY too many hats] allbery@ece.cmu.edu >electrical and computer engineering KF8NH >carnegie mellon university ["better check the oblivious first" -ke6sls] > _________________________________________________________________ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 07:18:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 640F637B401; Tue, 12 Aug 2003 07:18:23 -0700 (PDT) Received: from bache.ece.cmu.edu (BACHE.ECE.CMU.EDU [128.2.129.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EA3E43F75; Tue, 12 Aug 2003 07:18:22 -0700 (PDT) (envelope-from allbery@ece.cmu.edu) Received: by bache.ece.cmu.edu (Postfix, from userid 953) id 933DF73; Tue, 12 Aug 2003 10:18:21 -0400 (EDT) Received: from pyanfar.ece.cmu.edu (VPN91.ECE.CMU.EDU [128.2.138.91]) by bache.ece.cmu.edu (Postfix) with ESMTP id 2D76B68; Tue, 12 Aug 2003 10:18:18 -0400 (EDT) From: "Brandon S. Allbery KF8NH" To: "Evan Dower" Date: Tue, 12 Aug 2003 10:17:42 -0400 User-Agent: KMail/1.5.3 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308121017.42081.allbery@ece.cmu.edu> X-Spam-Status: No, hits=-38.9 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT, REFERENCES,REPLY_WITH_QUOTES,USER_AGENT_KMAIL autolearn=ham version=2.50 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: freebsd-questions@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: fcrontab and script command nonexecution X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 14:18:23 -0000 On Tuesday 12 August 2003 09:32, Evan Dower wrote: > I would consider this to be a desirable feature. Also, I notice that it is > not documented in script(1). I would very much like to keep the script > calls, since they allow me to have the output sent to me and store a copy in > a few well organized file for more detailed perusal. Perhaps I'll take a I'd argue that that's what "tee" is for. Once upon a time I hacked up sh to add a version of -x output which looked more like an interactive session, but eventually decided it wasn't worth maintaining. It's not like -x output is all that unusable; it's just not as "pretty" --- but it also provides more information, which can be useful when trying to diagnose problems. By the way, this isn't really a ports issue; -questions is more appropriate. -- brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net system administrator [WAY too many hats] allbery@ece.cmu.edu electrical and computer engineering KF8NH carnegie mellon university ["better check the oblivious first" -ke6sls] From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 08:02:06 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68D1937B401 for ; Tue, 12 Aug 2003 08:02:06 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id A36BC43FBD for ; Tue, 12 Aug 2003 08:02:04 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 4887 invoked by uid 65534); 12 Aug 2003 15:02:02 -0000 Received: from static62-99-146-055.adsl.inode.at (EHLO martin.kleinerdrache.org) (62.99.146.55) by mail.gmx.net (mp013) with SMTP; 12 Aug 2003 17:02:02 +0200 Date: Tue, 12 Aug 2003 17:02:00 +0200 From: Martin Klaffenboeck To: Franz Klammer Message-ID: <20030812150200.GA1893@martin.kleinerdrache.org> References: <20030811224242.GA1867@martin.kleinerdrache.org> <1060678720.821.36.camel@sisko.webonaut.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: <1060678720.821.36.camel@sisko.webonaut.com>; from klammer@webonaut.com on Die, Aug 12, 2003 at 10:58:40 +0200 X-Mailer: Balsa 2.0.12 cc: FreeBSD-gnome cc: Jeremy Messenger cc: ports@freebsd.org Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 15:02:06 -0000 --SUOF0GtieIMvvwua Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Am 2003.08.12 10:58 schrieb(en) Franz Klammer: > Am Di, 2003-08-12 um 00.20 schrieb Jeremy Messenger: > > On Tue, 12 Aug 2003 00:42:42 +0200, Martin Klaffenboeck > > wrote: > > > > > Hello, > > > > > > (Please cc me, I'm not on the list anymore.) > > > > > > I was maintaining about 9 ports in the FreeBSD ports collection, > and I > > > was starting the gports project (http://gports.sourceforge.net). > > > > > > But now I have changed back to linux after using FreeBSD on my > desktop > > > for about two years. It was a great time here, the hardest thing > to quit > > > with FreeBSD is not the OS itselfe, the hard thing is to say good > by to > > > all my friends in the mailling lists and chatrooms, which are > using > > > FreeBSD. The community is quite good, and I don't know how long > it will > > > take to get new friends in the linux community. I hope there will > come > > > some nice guys like you. (Esspecially Joe and Franz, but the > others > > > too.) > > > > May I ask you what it makes you switch over to Linux? I am just > curious.. > > :-) > > >=20 > Bye Martin! Thanks for the nice words. :-) > But i'm also interested why you are doing a so extreme > switch-over to Linux only. Yes, I think there is no real rational reason, and I cannot say, I have=20 made this decision because of advantages or disadvantages from the one=20 or other OS. The main thing could be, that I also want to play on my computer some=20 computer games. I couln't get the nvidia-driver working on FreeBSD,=20 without any crashes. There are more games available on linux I found=20 out, and porting new games to FreeBSD was a thing I found really hard,=20 because this sources are often not very portable. Now I don't have to=20 port things. On FreeBSD I couln't get rid of the linux emulation, (because only the=20 linuxflashplayer for galeon worked, and it needed a wrapper there). You=20 may say: Who cares about that! But it's just that I don't liked it. Then I started to test gentoo linux, a few weeks ago. The first thing=20 I saw was: The computer starts faster. My computer is a workstation,=20 so this is good. And the computer runs faster. Ok, this is wrong. =20 But the user can have the feeling that the computer runs faster=20 (especial while using the gnome frontend, I didn't test kde so far),=20 and people told me, this is because the linux scheduler is cheating. =20 It runs the current visible things first, so it looks like it is=20 faster, but it isn't really. What I miss is, that gentoo doesn't support the gnome 2.3 deveoper=20 branch (see the marcuscom portstree), so I'm working in 2.2 here. But=20 I found out, that this is not really a big problem for me right now. I could talk on and on, why I decided for gentoo, but I think most of=20 this things weren't in my mind when I was switching. What I think=20 about my self I could explain in german with the word 'Tapetenwechsel'.=20 (For people who don't speak german, my dictionary translates this as=20 'change of scene'). What do you think, when you hear my telling you this? > Anyway ... good luck with you new OS-way of living ;-) Thanks, I'm not as good as I was in using FreeBSD, but it makes fun to=20 practise and learn. Martin > Franz. >=20 > > Cheers, > > Mezz > > > > > Good bye people. > > > > > > I'll miss you somehow. > > > > > > Yours, > > > Martin > > > > > > PS. Please take over the maintainership of my ports, some will go > to > > > gnome@, some to ports@. Martin Grimme told me, that it would be > nice if > > > someone could take over the gdeskcal port for FreeBSD. Write him > an > > > email (mailto:martin@pycage.de) to put you into his announcement > list. > -- > WEBONAUT.com > http://webonaut.com > mailto:klammer@webonaut.com >=20 >=20 >=20 >=20 --SUOF0GtieIMvvwua Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQA/OQFoE0QnXPV9LCERAmrFAJ96a5qfRNldWN/z63MRwXqv4UcciACghaFj CBRLJsfdF9ec8nI2cWuI020= =MyAl -----END PGP SIGNATURE----- --SUOF0GtieIMvvwua-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 08:04:27 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA6CA37B407 for ; Tue, 12 Aug 2003 08:04:27 -0700 (PDT) Received: from antsrv1.ant.uni-bremen.de (antsrv1.ant.uni-bremen.de [134.102.176.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D92843F3F for ; Tue, 12 Aug 2003 08:04:26 -0700 (PDT) (envelope-from rebehn@ant.uni-bremen.de) Received: from taipeh.ant.uni-bremen.de ([134.102.176.3] helo=ant.uni-bremen.de ident=rebehn) by antsrv1.ant.uni-bremen.de with esmtp (Exim 4.14) id 19mahE-0002Zz-Pt; Tue, 12 Aug 2003 17:04:24 +0200 Message-ID: <3F3901F7.7070009@ant.uni-bremen.de> Date: Tue, 12 Aug 2003 17:04:23 +0200 From: Heinrich Rebehn User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sergei Kolobov References: <3F2E1EAA.5030200@ant.uni-bremen.de> <20030804170956.GA76322@mail.it.ca> <3F2F608D.9070806@ant.uni-bremen.de> <20030806174621.GA774@chetwood.ru> In-Reply-To: <20030806174621.GA774@chetwood.ru> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: How to apply private patches to port? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 15:04:28 -0000 Sergei Kolobov wrote: > On 2003-08-05 at 09:45 +0200, Heinrich Rebehn wrote: > >>It's only a private hack for imap-uw, which is very poorly configurable. > > [...] > >>That's why i had the idea of expanding the imap-uw port (and also >>client-2002) with my own patch. > > > I think you should submit a PR with your patch and work with the port > maintainer to integrate it so others could benefit from your patch, too. > See Porter's Handbook for more information. > > Sergei I have given up on trying to patch imap-uw. This software is just too weird, not at all configurable. I was trying to set the user's mail directory to an absolute path, but it just doesn't seem possible. So, if i can't make the software suit my needs, maybe i can make my needs suit the software.. :-( -- Heinrich Rebehn University of Bremen Physics / Electrical and Electronics Engineering - Department of Telecommunications - Phone : +49/421/218-4664 Fax : -3341 From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 08:26:30 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DC0D37B405 for ; Tue, 12 Aug 2003 08:26:30 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 1AAA043FBD for ; Tue, 12 Aug 2003 08:26:28 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 15429 invoked by uid 65534); 12 Aug 2003 15:26:26 -0000 Received: from static62-99-146-055.adsl.inode.at (EHLO martin.kleinerdrache.org) (62.99.146.55) by mail.gmx.net (mp023) with SMTP; 12 Aug 2003 17:26:26 +0200 Date: Tue, 12 Aug 2003 17:07:49 +0200 From: Martin Klaffenboeck To: Joe Marcus Clarke Message-ID: <20030812150749.GC1893@martin.kleinerdrache.org> References: <20030811224242.GA1867@martin.kleinerdrache.org> <1060651356.95513.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nVMJ2NtxeReIH9PS" Content-Disposition: inline In-Reply-To: <1060651356.95513.2.camel@shumai.marcuscom.com>; from marcus@marcuscom.com on Die, Aug 12, 2003 at 03:22:36 +0200 X-Mailer: Balsa 2.0.12 cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 15:26:30 -0000 --nVMJ2NtxeReIH9PS Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Am 2003.08.12 03:22 schrieb(en) Joe Marcus Clarke: > On Mon, 2003-08-11 at 18:42, Martin Klaffenboeck wrote: > > Hello, > > > > (Please cc me, I'm not on the list anymore.) > > > > I was maintaining about 9 ports in the FreeBSD ports collection, and > I > > was starting the gports project (http://gports.sourceforge.net). > > > > But now I have changed back to linux after using FreeBSD on my > desktop > > for about two years. It was a great time here, the hardest thing to >=20 > > quit with FreeBSD is not the OS itselfe, the hard thing is to say > good > > by to all my friends in the mailling lists and chatrooms, which are > > using FreeBSD. The community is quite good, and I don't know how > long > > it will take to get new friends in the linux community. I hope > there > > will come some nice guys like you. (Esspecially Joe and Franz, but > the > > others too.) >=20 > Martin, I'm sorry to see you go. I hope this departure is an=20 > amicable one. Oh, yes it is. =20 > It was a pleasure working with you. For me too. I always liked to work with you very much. > I'll see to it your ports get a good home. Thanks for all your work > both on your ports and marcusmerge. Thank you, Joe, Martin PS. I'll let it open to come back to FreeBSD one day in my future life. > Joe >=20 > > > > Good bye people. > > > > I'll miss you somehow. > > > > Yours, > > Martin > > > > PS. Please take over the maintainership of my ports, some will go > to > > gnome@, some to ports@. Martin Grimme told me, that it would be > nice > > if someone could take over the gdeskcal port for FreeBSD. Write him > an > > email (mailto:martin@pycage.de) to put you into his announcement > list. > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome- > unsubscribe@freebsd.org" > -- > PGP Key : http://www.marcuscom.com/pgp.asc >=20 --nVMJ2NtxeReIH9PS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQA/OQLFE0QnXPV9LCERApakAJ4p22czk5zV+SIO4giPqIDRx+7IcwCffBxS AC4DF3VKsbbrlW8qedCZ43A= =pF3F -----END PGP SIGNATURE----- --nVMJ2NtxeReIH9PS-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 08:26:31 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6B5B37B404 for ; Tue, 12 Aug 2003 08:26:31 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D7D2243F75 for ; Tue, 12 Aug 2003 08:26:29 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 15590 invoked by uid 65534); 12 Aug 2003 15:26:28 -0000 Received: from static62-99-146-055.adsl.inode.at (EHLO martin.kleinerdrache.org) (62.99.146.55) by mail.gmx.net (mp023) with SMTP; 12 Aug 2003 17:26:28 +0200 Date: Tue, 12 Aug 2003 17:11:51 +0200 From: Martin Klaffenboeck To: Adam Weinberger Message-ID: <20030812151151.GE1893@martin.kleinerdrache.org> References: <20030811224242.GA1867@martin.kleinerdrache.org> <20030812021727.GA18091@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f0KYrhQ4vYSV2aJu" Content-Disposition: inline In-Reply-To: <20030812021727.GA18091@toxic.magnesium.net>; from adamw@FreeBSD.org on Die, Aug 12, 2003 at 04:17:27 +0200 X-Mailer: Balsa 2.0.12 cc: gnome@freebsd.org cc: ports@freebsd.org Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 15:26:32 -0000 --f0KYrhQ4vYSV2aJu Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Am 2003.08.12 04:17 schrieb(en) Adam Weinberger: > >> (08.11.2003 @ 1842 PST): Martin Klaffenboeck said, in 1.2K: << > > Hello, > > > > (Please cc me, I'm not on the list anymore.) > > > > I was maintaining about 9 ports in the FreeBSD ports collection, and > I > > was starting the gports project (http://gports.sourceforge.net). > > > > But now I have changed back to linux after using FreeBSD on my > desktop > > for about two years. It was a great time here, the hardest thing to >=20 > > quit with FreeBSD is not the OS itselfe, the hard thing is to say > good > > by to all my friends in the mailling lists and chatrooms, which are > > using FreeBSD. The community is quite good, and I don't know how > long > > it will take to get new friends in the linux community. I hope > there > > will come some nice guys like you. (Esspecially Joe and Franz, but > the > > others too.) > > > > Good bye people. > > > > I'll miss you somehow. > >> end of "I'm out of here..." from Martin Klaffenboeck << >=20 > Best of luck to you, Martin! I'm saddened to see you go. Thanks, Adam, I feel sad too. You can be sure, I just wanted to=20 change my environment, not the people I learnt to know, ... If I could, I would take you all with me to my new environment. It's hard, that the change of a computer OS, makes also changes in the=20 social contacts within the internet. Martin --f0KYrhQ4vYSV2aJu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQA/OQO3E0QnXPV9LCERAnl0AJ423/QSP4DnJ4O/w/3PPNY28/6vgACdFfzL NTsw+iwFliEwTMHprwfwRC4= =gcgD -----END PGP SIGNATURE----- --f0KYrhQ4vYSV2aJu-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 09:50:02 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92FD637B404 for ; Tue, 12 Aug 2003 09:50:02 -0700 (PDT) Received: from mail.dt.e-technik.uni-dortmund.de (mail.dt.E-Technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AB0443FB1 for ; Tue, 12 Aug 2003 09:50:01 -0700 (PDT) (envelope-from matthias.andree@gmx.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1])003943942 for ; Tue, 12 Aug 2003 18:50:00 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 500) id 8834792A01; Tue, 12 Aug 2003 18:49:58 +0200 (CEST) Date: Tue, 12 Aug 2003 18:49:58 +0200 From: Matthias Andree To: ports@freebsd.org Message-ID: <20030812164958.GA5821@merlin.emma.line.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: uncommitted new ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 16:50:03 -0000 Hi, I have sent three "new ports" since May, but apparently, no-one cares. It's not motivating for someone to package up a new port if new ports don't get added in ages. Please see: S Submitted Tracker Resp. Description ---------------------------------------------------------------- o [2003/05/22] ports/52582 ports-bugs new port: net/weedns_sc o [2003/07/08] ports/54218 ports-bugs new port: mail/cone o [2003/08/05] ports/55275 ports-bugs [NEW PORT] audio/squash: Learning console-based MP3/OGG player http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports&severity=&priority=&class=&state=&sort=none&text=Matthias+Andree&responsible=&multitext=&originator=&release= -- Matthias Andree From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 10:43:53 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D01437B401; Tue, 12 Aug 2003 10:43:53 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5111F43F93; Tue, 12 Aug 2003 10:43:52 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.37.247]) by lakemtao06.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030812174351.WETS15657.lakemtao06.cox.net@mezz.mezzweb.com>; Tue, 12 Aug 2003 13:43:51 -0400 Date: Tue, 12 Aug 2003 12:42:54 -0500 To: Martin Klaffenboeck Content-Type: text/plain; charset=utf-8; format=flowed References: <20030811224242.GA1867@martin.kleinerdrache.org> <1060678720.821.36.camel@sisko.webonaut.com> <20030812150200.GA1893@martin.kleinerdrache.org> From: Jeremy Messenger MIME-Version: 1.0 Message-ID: In-Reply-To: <20030812150200.GA1893@martin.kleinerdrache.org> User-Agent: Opera7.11/Linux M2 build 406 cc: FreeBSD-gnome cc: ports@freebsd.org cc: Franz Klammer Subject: Re: I'm out of here... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 17:43:53 -0000 On Tue, 12 Aug 2003 17:02:00 +0200, Martin Klaffenboeck wrote: > Am 2003.08.12 10:58 schrieb(en) Franz Klammer: >> Am Di, 2003-08-12 um 00.20 schrieb Jeremy Messenger: >> > On Tue, 12 Aug 2003 00:42:42 +0200, Martin Klaffenboeck >> > wrote: >> > >> > > Hello, >> > > >> > > (Please cc me, I'm not on the list anymore.) >> > > >> > > I was maintaining about 9 ports in the FreeBSD ports collection, >> and I >> > > was starting the gports project (http://gports.sourceforge.net). >> > > >> > > But now I have changed back to linux after using FreeBSD on my >> desktop >> > > for about two years. It was a great time here, the hardest thing >> to quit >> > > with FreeBSD is not the OS itselfe, the hard thing is to say good >> by to >> > > all my friends in the mailling lists and chatrooms, which are >> using >> > > FreeBSD. The community is quite good, and I don't know how long >> it will >> > > take to get new friends in the linux community. I hope there will >> come >> > > some nice guys like you. (Esspecially Joe and Franz, but the >> others >> > > too.) >> > >> > May I ask you what it makes you switch over to Linux? I am just >> curious.. >> > :-) >> > >> >> Bye Martin! Thanks for the nice words. :-) >> But i'm also interested why you are doing a so extreme >> switch-over to Linux only. > > Yes, I think there is no real rational reason, and I cannot say, I have > made this decision because of advantages or disadvantages from the one or > other OS. > > The main thing could be, that I also want to play on my computer some > computer games. I couln't get the nvidia-driver working on FreeBSD, > without any crashes. There are more games available on linux I found > out, and porting new games to FreeBSD was a thing I found really hard, > because this sources are often not very portable. Now I don't have to > port things. Yeah, I still have the problem with the Nvidia driver in 5.1-CURRENT too.. Before, in 4.x, 5.0-RELEASE and old 5.0-CURRENT, the Nvidia driver (both old and new driver) used to work and now not work anymore in the 5.1- CURRENT. I had to do the strange method (incorrect and non-standard) by compile it with Nvidia AGP GART driver and force X to load the FreeBSD AGP GART driver to make it doesn't crash anymore. It hurts the 50% of perforamce, but as long it's faster than 'nv' and has the more support for xv and etc. > On FreeBSD I couln't get rid of the linux emulation, (because only the > linuxflashplayer for galeon worked, and it needed a wrapper there). You > may say: Who cares about that! But it's just that I don't liked it. Me too, I can't get rid of Linux emulation because of Opera and few others (no game stuff).. It's much more stable than native one, but Opera recently released a new 7.20 beta for FreeBSD and I haven't tried it yet. > Then I started to test gentoo linux, a few weeks ago. The first thing I > saw was: The computer starts faster. My computer is a workstation, so > this is good. And the computer runs faster. Ok, this is wrong. But the > user can have the feeling that the computer runs faster (especial while > using the gnome frontend, I didn't test kde so far), and people told me, > this is because the linux scheduler is cheating. It runs the current > visible things first, so it looks like it is faster, but it isn't really. > > What I miss is, that gentoo doesn't support the gnome 2.3 deveoper branch > (see the marcuscom portstree), so I'm working in 2.2 here. But I found > out, that this is not really a big problem for me right now. But, there has Gnome 2.3 development if you visit to www.breakmygentoo.net .. One of my friend is in Gnome 2.3 ebuild team and no I don't use Linux, but I visit to Gentoo forum. ;-) > I could talk on and on, why I decided for gentoo, but I think most of > this things weren't in my mind when I was switching. What I think about > my self I could explain in german with the word 'Tapetenwechsel'. (For > people who don't speak german, my dictionary translates this as 'change > of scene'). > > What do you think, when you hear my telling you this? I think, you have gave us the good reasons and points. Thanks and good luck in the Linux world! Cheers, Mezz >> Anyway ... good luck with you new OS-way of living ;-) > > Thanks, I'm not as good as I was in using FreeBSD, but it makes fun to > practise and learn. > > Martin > >> Franz. >> >> > Cheers, >> > Mezz >> > >> > > Good bye people. >> > > >> > > I'll miss you somehow. >> > > >> > > Yours, >> > > Martin >> > > >> > > PS. Please take over the maintainership of my ports, some will go >> to >> > > gnome@, some to ports@. Martin Grimme told me, that it would be >> nice if >> > > someone could take over the gdeskcal port for FreeBSD. Write him >> an >> > > email (mailto:martin@pycage.de) to put you into his announcement >> list. >> -- >> WEBONAUT.com >> http://webonaut.com >> mailto:klammer@webonaut.com -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 11:15:35 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 432F937B401 for ; Tue, 12 Aug 2003 11:15:35 -0700 (PDT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E3F43F3F for ; Tue, 12 Aug 2003 11:15:34 -0700 (PDT) (envelope-from sw@gegenunendlich.de) Received: from [212.227.126.160] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 19mdgD-0007MO-00 for ports@freebsd.org; Tue, 12 Aug 2003 20:15:33 +0200 Received: from [80.142.203.52] (helo=kyuzo.dunkelkammer.void) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 19mdgD-0006h6-00 for ports@freebsd.org; Tue, 12 Aug 2003 20:15:33 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id 1392687F9; Tue, 12 Aug 2003 20:15:32 +0200 (CEST) Date: Tue, 12 Aug 2003 20:15:31 +0200 From: Stefan Walter To: ports@freebsd.org Message-ID: <20030812181531.GA31693@kyuzo.dunkelkammer.void> Mail-Followup-To: ports@freebsd.org References: <20030812164958.GA5821@merlin.emma.line.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline In-Reply-To: <20030812164958.GA5821@merlin.emma.line.org> Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.4i Subject: Re: uncommitted new ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 18:15:35 -0000 --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Matthias Andree, 12.08.03, 18:49h CEST: > I have sent three "new ports" since May, but apparently, no-one cares. >=20 > It's not motivating for someone to package up a new port if new ports > don't get added in ages. Sorry for this "me too", but I was about to send a similar mail, anyway. These are slowly rotting away without being useful: o [2003/07/10] ports/54335 ports-bugs new port: PPower4 - Post processor = for PDF presentations made with (La)TeX o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of= LaTeX files for making foils/slides o [2003/07/27] ports/54912 ports-bugs New port: pkg_cutleaves - Perl scri= pt for finding/pkg_deinstalling 'leaf' packages (The last one is a small Perl script I wrote myself - I don't know if anyone else has any use for it, but I thought I'd share it just in case...) I'd also like to mention once more that ports/55249 might not be looked at by its maintainer/committer (soon), as there hasn't been any sign of life of him since about 2 months ago. Stefan --=20 PGP key: 0x12B9E0B3 || 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 --fUYQa+Pmc3FrFX/N Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iQGVAwUBPzkuw1aRERsSueCzAQJl1Qv/XmhGSq5Q8Bpyz2eVhFXqmpY8at5kiCYT 1uS6Pkc2RrfEEf3BjtMhERCpAeFTmqOI8zDO9pmAl6VPA9RgWy/bPu6EYZ2gCBbt Fm7nGcIqZsCgB1Qrclp7f6pOoL4Srfvu1VHny25Xk9BDE+zvZuuAtyCsEvClmItT IhM+KnP7ig571421P1edvaTcwFui8bcW7gOjt2G2Xm9bT+1daXeOsBciWgjzfLDB dEDEsT9AfF2ekx9tz/uDcx28ioAdUFzcqCERHg32JYhZfs3GVhdA8MgehY9/w6u8 mgOdK1aTwoGJ5IC9mKRUejPWv69afz01x06XcJtBxYnw11wCPGmXfRcsMjige/ZH GLqmHvplVN9pRnFkND1PsFCbrJYM5rt2BVv9MdNbMmWzevPjJ5jSh0pyPK2lLbpc J+Ved0sv1fYicafJCJyHeYCVqte6UT3Y+fB9/5A3/5t7/SRD571VJCLsb/K4LjUw mjdlO5tZpU8tKCQgz5wS0pr1UZfxLLCR =BJuj -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 11:24:02 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98DC237B401 for ; Tue, 12 Aug 2003 11:24:02 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 04FCF43F93 for ; Tue, 12 Aug 2003 11:24:02 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 99117 invoked by uid 1252); 12 Aug 2003 18:24:01 -0000 Date: 12 Aug 2003 14:24:01 -0400 Date: Tue, 12 Aug 2003 14:24:01 -0400 From: Adam Weinberger To: ports@freebsd.org Message-ID: <20030812182401.GH18091@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , ports@freebsd.org References: <20030812164958.GA5821@merlin.emma.line.org> <20030812181531.GA31693@kyuzo.dunkelkammer.void> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812181531.GA31693@kyuzo.dunkelkammer.void> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i Subject: Re: uncommitted new ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 18:24:02 -0000 >> (08.12.2003 @ 1415 PST): Stefan Walter said, in 2.0K: << > o [2003/07/27] ports/54912 ports-bugs New port: pkg_cutleaves - Perl script for finding/pkg_deinstalling 'leaf' packages >> end of "Re: uncommitted new ports" from Stefan Walter << I'm confused about the -R option of pkg_cutleaves. How can there be packages which depend upon a package "not referenced by any other installed package?" # Adam -- Adam Weinberger vectors.cx >> adam@vectors.cx >> http://www.vectors.cx magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw #vim:set ts=8: 8-char tabs prevent tooth decay. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 11:37:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E2E837B401 for ; Tue, 12 Aug 2003 11:37:50 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id C93C943FAF for ; Tue, 12 Aug 2003 11:37:49 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7CIYlmY065951 for ; Tue, 12 Aug 2003 14:34:47 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7CIYlue065950 for ports@FreeBSD.org; Tue, 12 Aug 2003 14:34:47 -0400 (EDT) Date: Tue, 12 Aug 2003 14:34:47 -0400 (EDT) From: Kris Kennaway Message-Id: <200308121834.h7CIYlue065950@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 18:37:50 -0000 INDEX build failed with errors: oregano-0.23: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete ghfaxviewer-0.22.0_2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete gnofin-0.8.4: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete yank-0.2.0: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete pharmacy-0.2.1a: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete ruby-libglade-0.34,1: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete gnocatan-0.6.1: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete gnomechess-0.3.3: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete nethack-gnome-3.3.1_2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete diacanvas-0.40.1: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete ja-balsa-0.8.0: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete gbiff-3.1: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete glacier-0.0.2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete mmc-0.5: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete pmail-0.5.3_2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete sonicmail-0.1.2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete rcalc-0.2.2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete scigraphica-0.8.0: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete emma-0.8.1: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete p5-GnomePrint-0.7008: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete ipsc-0.4.2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete peacock-0.4: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete finder-0.80.4: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete gnomeres_applet-0.6.0: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete ruby-gnome-0.34: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete ruby-panel-applet-0.34: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete stockticker_applet-0.2.2_2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete zclock-1.0: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete p5-Glade-0.7008: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete gnome2wmaker-1.2: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete wmg-0.15.0: "/vol/vol0/users/kris/ports.clean/x11/libpanel" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U ftp/Makefile U games/moria/Makefile U games/moria/pkg-plist U games/moria/files/patch-doc::Makefile U graphics/xmms-xvs/Makefile U korean/ami/Makefile U korean/ami/pkg-plist U mail/Makefile ? mail/log U mail/popper/files/patch-popauth.c U mail/wmbiff/Makefile U mail/wmbiff/distinfo U multimedia/xmms/Makefile U multimedia/xmms/pkg-plist U net/Makefile ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U net/zebra-devel/Makefile U net/zebra-devel/pkg-plist U palm/Makefile U print/a2ps-letter/files/patch-intl-localealias.c U russian/pgp.language/Makefile U sysutils/Makefile U www/mozilla-firebird/files/patch-gfx_src_gtk_nsFontMetricsXft.cpp U x11/Makefile ? x11/gnome2/log U x11-fm/Makefile U x11-toolkits/Makefile U x11-toolkits/py-gnome/Makefile U x11-toolkits/py-gnome/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 11:47:42 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 832D737B401; Tue, 12 Aug 2003 11:47:42 -0700 (PDT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8653B43F3F; Tue, 12 Aug 2003 11:47:41 -0700 (PDT) (envelope-from sw@gegenunendlich.de) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 19meBI-0008GB-00; Tue, 12 Aug 2003 20:47:40 +0200 Received: from [80.142.203.52] (helo=kyuzo.dunkelkammer.void) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 19meBI-0007hp-00; Tue, 12 Aug 2003 20:47:40 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id A71FB87F9; Tue, 12 Aug 2003 20:47:39 +0200 (CEST) Date: Tue, 12 Aug 2003 20:47:39 +0200 From: Stefan Walter To: ports@freebsd.org Message-ID: <20030812184739.GB31693@kyuzo.dunkelkammer.void> Mail-Followup-To: ports@freebsd.org, Adam Weinberger References: <20030812164958.GA5821@merlin.emma.line.org> <20030812181531.GA31693@kyuzo.dunkelkammer.void> <20030812182401.GH18091@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="t0UkRYy7tHLRMCai" Content-Disposition: inline In-Reply-To: <20030812182401.GH18091@toxic.magnesium.net> Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.4i cc: Adam Weinberger Subject: Re: uncommitted new ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 18:47:42 -0000 --t0UkRYy7tHLRMCai Content-Type: multipart/mixed; boundary="V0207lvV8h4k8FAm" Content-Disposition: inline --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Adam Weinberger, 12.08.03, 20:24h CEST: > >> (08.12.2003 @ 1415 PST): Stefan Walter said, in 2.0K: << > > o [2003/07/27] ports/54912 ports-bugs New port: pkg_cutleaves - Perl = script for finding/pkg_deinstalling 'leaf' packages > >> end of "Re: uncommitted new ports" from Stefan Walter << >=20 > I'm confused about the -R option of pkg_cutleaves. How can there be > packages which depend upon a package "not referenced by any other > installed package?" Oops, my fault: It should read "packages the deinstalled 'leaf' packages depend(ed) on". It just invokes pkg_deinstall with '-R'. Thanks for the hint, I've corrected the man page (see attached patch); the script does the right thing, though. ;) Stefan, occasionally confusing 'pkg_deinstall -R' and 'pkg_deinstall -r' --=20 PGP key: 0x12B9E0B3 || 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 --V0207lvV8h4k8FAm Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pkg_cutleaves.1.patch" --- pkg_cutleaves.1.old Tue Aug 12 20:40:15 2003 +++ pkg_cutleaves.1 Tue Aug 12 20:42:45 2003 @@ -24,8 +24,8 @@ .IP -x Exclude packages matching expressions given in the exclude file. .IP -R -Run 'pkg_deinstall -R' instead of plain 'pkg_deinstall', so packages -depending on removed leaf packages will be deinstalled, too. +Run 'pkg_deinstall -R' instead of plain 'pkg_deinstall', so packages the +removed leaf packages depend(ed) on will be deinstalled, too. .SH FILES .I /usr/local/etc/pkg_leaves.exclude .RS --V0207lvV8h4k8FAm-- --t0UkRYy7tHLRMCai Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iQGVAwUBPzk2S1aRERsSueCzAQLdMwv9EhmAD+L5NFGfrGUusEXJpcdse6nh54vY 4YbpD/uhqo6Kew3BoDYHWVHO/U8G5brSUYZ4f+dSKP9pr6W4teg4z0rDJIKoC6z8 zFA4O2D4fozM8s13DrzI/PcF/oRn96c1NYutcN7vsJfnhRSiG9VwiBWVsoswKpZU rKcUSFtbMi/CoDrGtWSJrpqsbO0WVIh0xlX3VGn9vollyFUzEkUWYuAZdg54Lu6z VRsHn+dD3KMXOQtA80r9PKp4PBwSoRKMq6vX05libtuBq9UsFw0YuF2qNBbWfoZe XI0DtCoXbool86W8wuKExILUwUPxcXlUFUh7p+h/ij2uhTZHf+hpPDFT/imSg6/k RY4YvF9DrGGa5ceRKbtQuH7puT27PA0Zos88+UatJozjpniQ8qIb9G1tVqudkt94 lpYwOMmYIllVui3tnByDDQf8Y1luM/PB4n2ZGNM2TCjtdPcOH55be5mW5AuT+xNb hE8lNaJWEK5czHngYoJDrNeB91VdAH8c =mSpl -----END PGP SIGNATURE----- --t0UkRYy7tHLRMCai-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 12:29:08 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 349D937B401 for ; Tue, 12 Aug 2003 12:29:08 -0700 (PDT) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F89343F85 for ; Tue, 12 Aug 2003 12:29:07 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 641A44AA; Tue, 12 Aug 2003 23:29:05 +0400 (MSD) Date: Tue, 12 Aug 2003 23:29:05 +0400 From: "Sergey A. Osokin" To: ports@FreeBSD.org Message-ID: <20030812192905.GJ9150@freebsd.org.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="1giRMj6yz/+FOIRq" Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: [PATCH] lang/cli: unbreak build on -CURRENT X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 19:29:08 -0000 --1giRMj6yz/+FOIRq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello. I make a patch for fix compile lang/cli under -CURRENT (patch attached), but still have another one unresolved issue. >From work/sscli/clr/src/buildr.log: if [ -f securitydb.raw ]; then clix /usr/ports/lang/cli/work/sscli/build/v1.x86fre.rotor/dump/secdbedit.exe -regen securitydb xml; fi {0804D000} ASSERT [SHMEM ] at ../shmemory.c.1376: Segment 114 still unknown; returning NULL Trace/BPT trap (core dumped) NMAKE : fatal error U1077: 'if' : return code '0x85' Stop. BUILD: nmake failed - rc = 2 Any idea? -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ --1giRMj6yz/+FOIRq Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-cli Index: ports/lang/cli/Makefile =================================================================== RCS file: /home/pcvs/ports/lang/cli/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- ports/lang/cli/Makefile 8 Aug 2003 04:40:42 -0000 1.16 +++ ports/lang/cli/Makefile 12 Aug 2003 19:14:52 -0000 @@ -20,7 +20,7 @@ RESTRICTED= "license terms need to be reviewed" ONLY_FOR_ARCHS= i386 -BROKEN= "Does not compile" +#BROKEN= "Does not compile" USE_REINPLACE= yes GNU_CONFIGURE= yes @@ -29,7 +29,6 @@ MAKEFILE= makefile MAKE_ENV= CC_NAME="${CC}" SHELL="${SH}" BUILD_TYPE= free -CFLAGS+= -fpermissive PLIST_SUB= CLI_VERSION="${PORTVERSION}" .include @@ -37,6 +36,7 @@ .if ${OSVERSION} >= 500000 GCC_LIB= -lstdc++ -lgcc -lc_r -lc .else +CFLAGS+= -fpermissive GCC_LIB= -lstdc++ -lgcc -lc_r .endif @@ -44,9 +44,16 @@ @${CP} ${SCRIPTDIR}/portconfigure ${WRKSRC} post-patch: - @${REINPLACE_CMD} -e 's|%%GCC_LIB%%|${GCC_LIB}|g' \ + @${REINPLACE_CMD} -e 's|%%GCC_LIB%%|${GCC_LIB}|g; \ + s|-fno-rtti ||g; \ + s|-fcheck-new ||g;' \ ${WRKSRC}/makefile.common.in \ ${WRKSRC}/rotorenv/bin/rotor_x86mk.inc + @${FIND} ${WRKSRC}/rotorenv/bin -type f | ${XARGS} \ + ${REINPLACE_CMD} -e 's|-Wno-non-virtual-dtor||g; \ + s|-Wno-non-template-friend||g;' + @${FIND} ${WRKSRC}/clr/src -type f | ${XARGS} \ + ${REINPLACE_CMD} -e 's|-Wno-ctor-dtor-privacy||g' do-build: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ./buildall ${BUILD_TYPE}) --- /dev/null Tue Aug 12 23:14:10 2003 +++ ports/lang/cli/files/patch-palrt::src::numprs.cpp Tue Aug 12 19:06:43 2003 @@ -0,0 +1,11 @@ +--- palrt/src/numprs.cpp.orig Tue Aug 12 18:49:14 2003 ++++ palrt/src/numprs.cpp Tue Aug 12 18:49:28 2003 +@@ -41,7 +41,7 @@ + // + #define MAXEXP (INT_MAX/2) + +-const SPLIT64 sdlTenToEighteen = { {UI64(1000000000000000000)} }; ++const SPLIT64 sdlTenToEighteen = { UI64(1000000000000000000) }; + // Max value of Decimal (= 79228162514264337593543950335), less 1st digit. + const BYTE rgbMaxDec[DEC_MAXDIG - 1] = {9,2,2,8,1,6,2,5,1,4,2,6,4,3,3,7,5,9,3,5,4,3,9,5,0,3,3,5}; + --1giRMj6yz/+FOIRq-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 14:31:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C1F437B401 for ; Tue, 12 Aug 2003 14:31:55 -0700 (PDT) Received: from smail2.alcatel.fr (na5.alcatel.fr [194.133.58.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD52D43FBD for ; Tue, 12 Aug 2003 14:31:53 -0700 (PDT) (envelope-from Stephane.Lentz@ansf.alcatel.fr) Received: from iww.netfr.alcatel.fr (iww.netfr.alcatel.fr [155.132.180.114]) by smail2.alcatel.fr (ALCANET/NETFR) with ESMTP id h7CLVp6O006149 for ; Tue, 12 Aug 2003 23:31:52 +0200 Received: by iww.netfr.alcatel.fr ("Mikrosoft Xchange", from userid 513) id 6C55B5C351; Tue, 12 Aug 2003 23:31:46 +0200 (CEST) Date: Tue, 12 Aug 2003 23:31:46 +0200 From: Stephane Lentz To: ports@FreeBSD.org Message-ID: <20030812213146.GA26372@iww.netfr.alcatel.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Mailer: Bogus Notes 5.10.1 (Corporate Release) X-Virus-Scanned: by amavisd-new Subject: sentinel port : pkg-message missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 21:31:55 -0000 Hi, Jeff D. Hamann didn't use send-pr to report the problem apparently. Can anyone update the sentinel port to provide some clear pkg-message as I proposed below. Regards, SL/ --- Unofficial Milter Introduction & Products Lits available on http://mutt.free.fr/milter/ ----- Forwarded message from Steph L ----- From: Steph L Newsgroups: comp.mail.sendmail,comp.unix.bsd.freebsd.misc Subject: Re: almost there with sentinel milter installation... Date: Tue, 5 Aug 2003 22:20:00 +0200 User-Agent: slrn/0.9.7.4 (Linux) On Tue, 5 Aug 2003 09:50:40 -0700, Jeff D. Hamann wrote: > I've almost got it, at least I think..... > > I've managed to update sendmail to 8.12.9 (FreeBSD 4.4) and have > successfully installed sentinel from the ports collection. I've copied the > sentinel.cf.SAMPLE to /etc/mail/sentinel.cf and renamed the > /usr/local/etc/rc.d/000.sentinel.sh to /usr/local/etc/rc.d/sentinel.sh and > now I'm trying to figure out how to hook up sentinel in the > /etc/mail/freebsd.mc file to use the milter. The entries in the sendmail > reference book show entries like... > > INPUT_MAIL_FILTER(`progA', `S=local:/var/run/f1.sock, F=R') > INPUT_MAIL_FILTER(`progC', `S=inet:3333@localhost') > > so does this mean I should add the following entry to my freebsd.mc file > > INPUT_MAIL_FILTER(`sentinel', `S=inet:25@localhost') > > ? I'm a little confused about how milters work and reading the README file > in /usr/ports/mail/sendmail/work/sendmail-8.12.9/libmilter didn't help me > much. > The sentinel-1.6.5b.tar.gz tarball comes with a README.Solaris that provides the relevant instructions (the README.FreeBSD provides other info) : << INPUT_MAIL_FILTER(`sentinel',`S=local:/var/run/sentinel/sock,T=S:2m;R:4m;E:6m') define(`confINPUT_MAIL_FILTERS',`sentinel') >> Use send-pr to ask the FreeBSD packager for sentinel to provide a pkg-message that will specify how to get it to work for instance : << Reconfigure sendmail to use sentinel, for example add this lines to your sendmail.mc (or freebsd.mc) : INPUT_MAIL_FILTER(`sentinel',`S=local:/var/run/sentinel/sock,T=S:2m;R:4m;E:6m')dnl define(`confINPUT_MAIL_FILTERS',`sentinel')dnl rebuild sendmail.cf and install it. >> FreeBSD 4.4 is old : please consider installing FreeBSD 4.8. Beware the README.FreeBSD specify << Unfortunately you cannot use "rbl" feature on FreeBSD platform. I didn't find reentrant gethostbyname() implementation for FreeBSD. If somebody find out right solution, please let me know and I implement it right away. >> Regards, SL/ --- Stephane Lentz Alcanet International, Internet Services ----- End forwarded message ----- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 14:33:13 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29DFF37B401 for ; Tue, 12 Aug 2003 14:33:13 -0700 (PDT) Received: from moya.lambermont.dyndns.org (e165253.upc-e.chello.nl [213.93.165.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 309E843FE1 for ; Tue, 12 Aug 2003 14:33:12 -0700 (PDT) (envelope-from hans@lambermont.dyndns.org) Received: from localhost (localhost [127.0.0.1]) by moya.lambermont.dyndns.org (Postfix) with ESMTP id 2C780365A4; Tue, 12 Aug 2003 23:33:10 +0200 (CEST) Received: by moya.lambermont.dyndns.org (Postfix, from userid 1001) id 5F0EE365A8; Tue, 12 Aug 2003 23:33:07 +0200 (CEST) Date: Tue, 12 Aug 2003 23:33:07 +0200 To: Edwin Groothuis Message-ID: <20030812213307.GG92209@moya.lambermont.dyndns.org> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> <20030812114430.GK815@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812114430.GK815@k7.mavetju> User-Agent: Mutt/1.4.1i From: hans@lambermont.dyndns.org (Hans Lambermont) X-Virus-Scanned: by AMaViS perl-11 cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 21:33:13 -0000 Edwin Groothuis wrote: > On Mon, Aug 11, 2003 at 09:25:53PM -0700, Kris Kennaway wrote: > > On Tue, Aug 12, 2003 at 01:45:08PM +1000, Edwin Groothuis wrote: > > > This works for all the ports I did (if I remember correctly): > > > CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" ... > > See also USE_SDL. > > See also ports/55494: [patch] ports/Mk/bsd.sdl.mk That won't help me. I'm not talking about one of the ports, but of more generic software. For SDL in Blender we use things like : sdl-config --prefix sdl-config --libs sdl-config --cflags for all target platforms (around 10), except this doesn't work on FreeBSD because of the version number in the name ... hence my symlink proposal; it leaves sdl11-config as is for all ports to use, and still offers non-ports software a reasonable default. If both sdl11 and say sdl12 were installed I don't even care to which one it would point, if I did I would be using sdl11-config. Ok, enough. what do you think now ? regards, Hans -- http://lambermont.webhop.org/ () ascii ribbon campaign - against HTML mail, /\ vCards and proprietary formats From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 14:34:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5CD837B401 for ; Tue, 12 Aug 2003 14:34:55 -0700 (PDT) Received: from thuis.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id 9F24243FA3 for ; Tue, 12 Aug 2003 14:34:54 -0700 (PDT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 57883 invoked from network); 12 Aug 2003 21:35:58 -0000 Received: from unknown (HELO 192.168.0.109) (192.168.0.109) by 0 with SMTP; 12 Aug 2003 21:35:58 -0000 From: Arjan van Leeuwen To: ports@freebsd.org Date: Tue, 12 Aug 2003 23:34:53 +0200 User-Agent: KMail/1.5.3 References: <200308121231.00875.avleeuwen@piwebs.com> In-Reply-To: <200308121231.00875.avleeuwen@piwebs.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308122334.53649.avleeuwen@piwebs.com> Subject: Re: Update www/opera to 7.x beta, or repo-copy? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 21:34:56 -0000 OK, a few people mailed me off-list about this. Everyone thought it was a better idea to update www/opera. The PR for the update is ports/55509, if some committer would like to take a look at it then that would be real nice :). Best regards, Arjan On Tuesday 12 August 2003 12:31, Arjan van Leeuwen wrote: > Hi, > > Yesterday, Opera 7.20 Beta 3 for FreeBSD was released (the first 7.x > version for FreeBSD). I'm planning on taking maintainership of the > www/opera port (if no one objects, of course) and updating it. > > There's a bit of a dilemma here. Would it be better to get a new port, > www/opera7 for this (because 7.20 B3 is still beta), or to update the > existing www/opera port to 7.20 B3? > > I personally think the latter is a better idea, because www/opera is at > this moment pretty unstable. 7.20 B3 is a lot better. Also, there is no > development anymore going on in the 6.x tree at Opera, so there won't be > any other updates to www/opera. > > What do you think? If we all agree on this, I'll send in a PR today. > > Best regards, > > Arjan > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 14:44:21 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E0FBF37B401 for ; Tue, 12 Aug 2003 14:44:21 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0495B43FB1 for ; Tue, 12 Aug 2003 14:44:21 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 706E066B04; Tue, 12 Aug 2003 14:44:20 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 50871788; Tue, 12 Aug 2003 14:44:20 -0700 (PDT) Date: Tue, 12 Aug 2003 14:44:20 -0700 From: Kris Kennaway To: Hans Lambermont Message-ID: <20030812214420.GA49666@rot13.obsecurity.org> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> <20030812114430.GK815@k7.mavetju> <20030812213307.GG92209@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline In-Reply-To: <20030812213307.GG92209@moya.lambermont.dyndns.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 21:44:22 -0000 --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 12, 2003 at 11:33:07PM +0200, Hans Lambermont wrote: > Edwin Groothuis wrote: >=20 > > On Mon, Aug 11, 2003 at 09:25:53PM -0700, Kris Kennaway wrote: > > > On Tue, Aug 12, 2003 at 01:45:08PM +1000, Edwin Groothuis wrote: > > > > This works for all the ports I did (if I remember correctly): > > > > CONFIGURE_ENV=3D SDL_CONFIG=3D"${SDL_CONFIG}" ... > > > See also USE_SDL. > > > > See also ports/55494: [patch] ports/Mk/bsd.sdl.mk >=20 > That won't help me. I'm not talking about one of the ports, but of more > generic software. For SDL in Blender we use things like : >=20 > sdl-config --prefix > sdl-config --libs > sdl-config --cflags >=20 > for all target platforms (around 10), except this doesn't work on > FreeBSD because of the version number in the name ... hence my symlink > proposal; it leaves sdl11-config as is for all ports to use, and still > offers non-ports software a reasonable default. If both sdl11 and say > sdl12 were installed I don't even care to which one it would point, if I > did I would be using sdl11-config. Ok, enough. what do you think now ? As I already said, patch the port to use ${SDL_CONFIG} instead of a hard-coded binary name. Kris --3MwIy2ne0vdjdPXF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OV+0Wry0BWjoQKURAmCOAKDLE/o6Gao0oaw91FYjTylTBSTIlwCbBTfp fuMLJoznC4IV2mn1FIBeqsE= =d4I4 -----END PGP SIGNATURE----- --3MwIy2ne0vdjdPXF-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 14:51:06 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABBA537B401 for ; Tue, 12 Aug 2003 14:51:06 -0700 (PDT) Received: from moya.lambermont.dyndns.org (e165253.upc-e.chello.nl [213.93.165.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC06943FBD for ; Tue, 12 Aug 2003 14:51:05 -0700 (PDT) (envelope-from hans@lambermont.dyndns.org) Received: from localhost (localhost [127.0.0.1]) by moya.lambermont.dyndns.org (Postfix) with ESMTP id 39FC6365A7; Tue, 12 Aug 2003 23:51:04 +0200 (CEST) Received: by moya.lambermont.dyndns.org (Postfix, from userid 1001) id 5140B36401; Tue, 12 Aug 2003 23:51:01 +0200 (CEST) Date: Tue, 12 Aug 2003 23:51:01 +0200 To: Kris Kennaway Message-ID: <20030812215101.GH92209@moya.lambermont.dyndns.org> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> <20030812114430.GK815@k7.mavetju> <20030812213307.GG92209@moya.lambermont.dyndns.org> <20030812214420.GA49666@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812214420.GA49666@rot13.obsecurity.org> User-Agent: Mutt/1.4.1i From: hans@lambermont.dyndns.org (Hans Lambermont) X-Virus-Scanned: by AMaViS perl-11 cc: ports@FreeBSD.org Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 21:51:07 -0000 Kris Kennaway wrote: > On Tue, Aug 12, 2003 at 11:33:07PM +0200, Hans Lambermont wrote: > > Edwin Groothuis wrote: > > > See also ports/55494: [patch] ports/Mk/bsd.sdl.mk > > > > That won't help me. I'm not talking about one of the ports, but of more > > generic software. For SDL in Blender we use things like : > > > > sdl-config --prefix > > sdl-config --libs > > sdl-config --cflags > > > > for all target platforms (around 10), except this doesn't work on > > FreeBSD because of the version number in the name ... hence my symlink > > proposal; it leaves sdl11-config as is for all ports to use, and still > > offers non-ports software a reasonable default. If both sdl11 and say > > sdl12 were installed I don't even care to which one it would point, if I > > did I would be using sdl11-config. Ok, enough. what do you think now ? > > As I already said, patch the port to use ${SDL_CONFIG} instead of a > hard-coded binary name. Did you read what I wrote ? I am not talking about a port, so ${SDL_CONFIG} won't work for me. SDL made sdl-config and I think that should be available for non-port software. kind regards, Hans -- http://lambermont.webhop.org/ () ascii ribbon campaign - against HTML mail, /\ vCards and proprietary formats From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 15:13:36 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA3E837B407 for ; Tue, 12 Aug 2003 15:13:36 -0700 (PDT) Received: from topaz.ad1810.com (topaz.ad1810.com [212.204.230.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BEA243F75 for ; Tue, 12 Aug 2003 15:13:36 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from localhost ([127.0.0.1] helo=k7.mavetju ident=edwin) by topaz.ad1810.com with esmtp (Exim 3.35 #1 (Debian)) id 19mhOY-0003K3-00; Wed, 13 Aug 2003 00:13:35 +0200 Received: by k7.mavetju (Postfix, from userid 1001) id C3DF36A7101; Wed, 13 Aug 2003 08:13:31 +1000 (EST) Date: Wed, 13 Aug 2003 08:13:31 +1000 From: Edwin Groothuis To: Hans Lambermont Message-ID: <20030812221331.GL815@k7.mavetju> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> <20030812114430.GK815@k7.mavetju> <20030812213307.GG92209@moya.lambermont.dyndns.org> <20030812214420.GA49666@rot13.obsecurity.org> <20030812215101.GH92209@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812215101.GH92209@moya.lambermont.dyndns.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 22:13:37 -0000 On Tue, Aug 12, 2003 at 11:51:01PM +0200, Hans Lambermont wrote: > Kris Kennaway wrote: > > > On Tue, Aug 12, 2003 at 11:33:07PM +0200, Hans Lambermont wrote: > > > Edwin Groothuis wrote: > > > > See also ports/55494: [patch] ports/Mk/bsd.sdl.mk > > > > > > That won't help me. I'm not talking about one of the ports, but of more > > > generic software. For SDL in Blender we use things like : > > > > > > sdl-config --prefix > > > sdl-config --libs > > > sdl-config --cflags > > > > > > for all target platforms (around 10), except this doesn't work on > > > FreeBSD because of the version number in the name ... hence my symlink > > > proposal; it leaves sdl11-config as is for all ports to use, and still > > > offers non-ports software a reasonable default. If both sdl11 and say > > > sdl12 were installed I don't even care to which one it would point, if I > > > did I would be using sdl11-config. Ok, enough. what do you think now ? > > > > As I already said, patch the port to use ${SDL_CONFIG} instead of a > > hard-coded binary name. > > Did you read what I wrote ? I am not talking about a port, so > ${SDL_CONFIG} won't work for me. SDL made sdl-config and I think that > should be available for non-port software. Of course there is nothing stopping you from making that symlink yourself, but with the experience I have with different versions of software and their clashing[sp] naming conventions I prefer to make sure that I use the right sdl-config and not one which was locally available as sdl-config and doesn't work for the source-files I have. But then, who am I? Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 17:04:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D61137B401 for ; Tue, 12 Aug 2003 17:04:26 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B3D243F93 for ; Tue, 12 Aug 2003 17:04:25 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id E348266B04; Tue, 12 Aug 2003 17:04:24 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id D3724659; Tue, 12 Aug 2003 17:04:24 -0700 (PDT) Date: Tue, 12 Aug 2003 17:04:24 -0700 From: Kris Kennaway To: Hans Lambermont Message-ID: <20030813000424.GA50252@rot13.obsecurity.org> References: <20030811202331.GC92209@moya.lambermont.dyndns.org> <20030812034508.GA903@k7.mavetju> <20030812042553.GA45612@rot13.obsecurity.org> <20030812114430.GK815@k7.mavetju> <20030812213307.GG92209@moya.lambermont.dyndns.org> <20030812214420.GA49666@rot13.obsecurity.org> <20030812215101.GH92209@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TB36FDmn/VVEgNH/" Content-Disposition: inline In-Reply-To: <20030812215101.GH92209@moya.lambermont.dyndns.org> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: sdl11-config / sdl-config X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 00:04:26 -0000 --TB36FDmn/VVEgNH/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 12, 2003 at 11:51:01PM +0200, Hans Lambermont wrote: > Kris Kennaway wrote: >=20 > > On Tue, Aug 12, 2003 at 11:33:07PM +0200, Hans Lambermont wrote: > > > Edwin Groothuis wrote: > > > > See also ports/55494: [patch] ports/Mk/bsd.sdl.mk > > >=20 > > > That won't help me. I'm not talking about one of the ports, but of mo= re > > > generic software. For SDL in Blender we use things like : > > >=20 > > > sdl-config --prefix > > > sdl-config --libs > > > sdl-config --cflags > > >=20 > > > for all target platforms (around 10), except this doesn't work on > > > FreeBSD because of the version number in the name ... hence my symlink > > > proposal; it leaves sdl11-config as is for all ports to use, and still > > > offers non-ports software a reasonable default. If both sdl11 and say > > > sdl12 were installed I don't even care to which one it would point, i= f I > > > did I would be using sdl11-config. Ok, enough. what do you think now ? > >=20 > > As I already said, patch the port to use ${SDL_CONFIG} instead of a > > hard-coded binary name. >=20 > Did you read what I wrote ? I am not talking about a port, so > ${SDL_CONFIG} won't work for me. SDL made sdl-config and I think that > should be available for non-port software. And I have said earlier in this thread, that approach breaks down when there are more than one version of SDL installed on the system. You may not have had to deal with this kind of upgrade before, but we have (sdl10 -> sdl11), and it's a pain in the ass because all sorts of ports typically break when built with the new version, so there has to be a simple mechanism in place to allow them to build with the old one. Preparing for it in advance by not hard-wiring things to only work with a single concurrent SDL installation is the correct approach for the long run. Otherwise, we'd just have to introduce it (again) the next time a major SDL update comes out and all the ports that refer to the sdl-config -> sdl13-config symlink fail to build. Vendor software should be taught to do the following: SDL_CONFIG?=3Dsdl-config foo: ...${SDL_CONFIG} --libs... So it works in the default SDL case as well as on FreeBSD. At this point I think I've said everything I need to say about this issue. Kris --TB36FDmn/VVEgNH/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OYCIWry0BWjoQKURAsWuAJ9Kj7z8VcqOonloNJqnf/0YYU0adACgkltN Noh8hAAVzXICDQJtaZh4Bpo= =pdRF -----END PGP SIGNATURE----- --TB36FDmn/VVEgNH/-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 17:16:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9974A37B401; Tue, 12 Aug 2003 17:16:23 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD90143F75; Tue, 12 Aug 2003 17:16:20 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id C75F113787; Wed, 13 Aug 2003 02:16:17 +0200 (CEST) Date: Wed, 13 Aug 2003 02:16:25 +0200 (CEST) From: Gerald Pfeifer To: Kris Kennaway In-Reply-To: Message-ID: References: <200307120606.h6C66T69010399@repoman.freebsd.org> <1057992291.42958.21.camel@shumai.marcuscom.com> <20030715034041.GA19804@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: Joe Marcus Clarke cc: Ruslan Ermilov cc: ports-committers@FreeBSD.org Subject: Re: texinfo breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 00:16:24 -0000 On Sat, 26 Jul 2003, Gerald Pfeifer wrote: > Sure. PR/54883 it is, and I already assigned it to portmgr. > > (Once it is in, we'll need to update the porters' handbook and notify > all maintainers of ports with info files, but updating the ports should > be very straightforward.) Since you committed my change, I updated some ports and contacted the maintainers of a few others; how do we want to handle the situation in general? Can you (automatically) contact all authors whose ports exhibit this `make package`problem on bento, notifying them of the new infrastructure for .info files? Below is a patch for sysutils/cfengine2 that can serve as a nice example for this mail. What else should we do to inform all ports maintainers/developers of the new situation, and have all ports updated by 4.9-RELEASE? (Having a -doc committer update/simplify the Porter's Handbook would be good.) Gerald Index: Makefile =================================================================== RCS file: /home/pcvs/ports/sysutils/cfengine2/Makefile,v retrieving revision 1.26 diff -u -3 -p -r1.26 Makefile --- Makefile 7 Mar 2003 06:11:08 -0000 1.26 +++ Makefile 4 Aug 2003 11:07:25 -0000 @@ -25,5 +25,6 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} MAN8= cfengine.8 +INFO= cfengine-Anomalies cfengine-Reference cfengine-Tutorial .include Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/sysutils/cfengine2/pkg-plist,v retrieving revision 1.7 diff -u -3 -p -r1.7 pkg-plist --- pkg-plist 30 Jul 2002 18:34:22 -0000 1.7 +++ pkg-plist 4 Aug 2003 11:07:25 -0000 @@ -1,26 +1,3 @@ -@unexec install-info --delete %D/info/cfengine-Anomalies.info %D/info/dir -@unexec install-info --delete %D/info/cfengine-Reference.info %D/info/dir -@unexec install-info --delete %D/info/cfengine-Tutorial.info %D/info/dir -info/cfengine-Anomalies.info -info/cfengine-Reference.info -info/cfengine-Reference.info-1 -info/cfengine-Reference.info-2 -info/cfengine-Reference.info-3 -info/cfengine-Reference.info-4 -info/cfengine-Reference.info-5 -info/cfengine-Reference.info-6 -info/cfengine-Reference.info-7 -info/cfengine-Reference.info-8 -info/cfengine-Tutorial.info -info/cfengine-Tutorial.info-1 -info/cfengine-Tutorial.info-2 -info/cfengine-Tutorial.info-3 -info/cfengine-Tutorial.info-4 -info/cfengine-Tutorial.info-5 -info/cfengine-Tutorial.info-6 -@exec install-info %D/info/cfengine-Anomalies.info %D/info/dir -@exec install-info %D/info/cfengine-Reference.info %D/info/dir -@exec install-info %D/info/cfengine-Tutorial.info %D/info/dir sbin/cfagent sbin/cfdoc sbin/cfenvd From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 17:19:40 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79E3F37B401; Tue, 12 Aug 2003 17:19:40 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CDF143F75; Tue, 12 Aug 2003 17:19:39 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7D0GGnU004763; Tue, 12 Aug 2003 20:16:16 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7D0JWUA005945; Tue, 12 Aug 2003 20:19:33 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Gerald Pfeifer In-Reply-To: References: <200307120606.h6C66T69010399@repoman.freebsd.org> <20030712063421.GA61124@rot13.obsecurity.org> <1057992291.42958.21.camel@shumai.marcuscom.com> <20030715034041.GA19804@rot13.obsecurity.org> <20030719213127.GB68178@sunbay.com> <20030724113142.GA726@rot13.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-2ZJHFvdEVjATgWyPUqAy" Organization: FreeBSD, Inc. Message-Id: <1060733969.64573.5.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Tue, 12 Aug 2003 20:19:29 -0400 X-Spam-Status: No, hits=-11.6 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: Ruslan Ermilov cc: Kris Kennaway Subject: Re: texinfo breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 00:19:40 -0000 --=-2ZJHFvdEVjATgWyPUqAy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-08-12 at 20:16, Gerald Pfeifer wrote: > On Sat, 26 Jul 2003, Gerald Pfeifer wrote: > > Sure. PR/54883 it is, and I already assigned it to portmgr. > > > > (Once it is in, we'll need to update the porters' handbook and notify > > all maintainers of ports with info files, but updating the ports should > > be very straightforward.) >=20 > Since you committed my change, I updated some ports and contacted the > maintainers of a few others; how do we want to handle the situation in > general? >=20 > Can you (automatically) contact all authors whose ports exhibit this > `make package`problem on bento, notifying them of the new infrastructure > for .info files? Below is a patch for sysutils/cfengine2 that can serve > as a nice example for this mail. >=20 > What else should we do to inform all ports maintainers/developers of the > new situation, and have all ports updated by 4.9-RELEASE? I plan on adding INFO support to portlint very soon. Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-2ZJHFvdEVjATgWyPUqAy Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/OYQRb2iPiv4Uz4cRAoh4AJ9nsXCk1+TNC48g41C8yfYBDuAvKACdGIV6 6dkk3HVqHJYm47fP9VCSmfI= =8y1j -----END PGP SIGNATURE----- --=-2ZJHFvdEVjATgWyPUqAy-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 17:27:22 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ACB337B401; Tue, 12 Aug 2003 17:27:22 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B83943F75; Tue, 12 Aug 2003 17:27:21 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 9C02F13787; Wed, 13 Aug 2003 02:27:19 +0200 (CEST) Date: Wed, 13 Aug 2003 02:27:27 +0200 (CEST) From: Gerald Pfeifer To: Joe Marcus Clarke In-Reply-To: <1060733969.64573.5.camel@shumai.marcuscom.com> Message-ID: References: <200307120606.h6C66T69010399@repoman.freebsd.org> <1057992291.42958.21.camel@shumai.marcuscom.com> <20030715034041.GA19804@rot13.obsecurity.org> <20030724113142.GA726@rot13.obsecurity.org> <1060733969.64573.5.camel@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: Ruslan Ermilov cc: Kris Kennaway Subject: Re: texinfo breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 00:27:22 -0000 On Tue, 12 Aug 2003, Joe Marcus Clarke wrote: > I plan on adding INFO support to portlint very soon. Cool! Basically, each of ^@unexec install-info ^@exec install-info info$ in pkg-plist probably should become a warning and info-1$ a hard error, for the latter means that the port won't be portable across 4.x (x < 9) and -CURRENT. Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 20:44:51 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22BA637B401 for ; Tue, 12 Aug 2003 20:44:51 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14CC143F85 for ; Tue, 12 Aug 2003 20:44:50 -0700 (PDT) (envelope-from freebsd@critesclan.com) Received: from helaman ([68.107.163.57]) by lakemtao07.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with SMTP id <20030813033307.DVAI26675.lakemtao07.cox.net@helaman>; Tue, 12 Aug 2003 23:33:07 -0400 From: To: , "Evan Dower" Date: Tue, 12 Aug 2003 22:34:01 -0500 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.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal In-Reply-To: Subject: RE: fcrontab and script command nonexecution X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: freebsd@critesclan.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 03:44:51 -0000 Evan; I don't use "script" very often because it requires you be running in from a terminal. I have a lot of cron based scripts which I want to keep the output from, so I "rolled my own." Here is a VERY SMALL example, with NO ERROR CHECKING. But it shows you how you can do what you are wanting to do. Save this someplace, make it executable (of course) and stick it into your crontab in place of "script." Lee #!/bin/sh SFILE=$1 ; shift SCMD="$1" ; shift SREST="$*" ( echo "Starting $SCMD at `date '+%d-%h-%Y %H:%M:%S'`" $SCMD $SREST 2>&1 echo "Ending $SCMD at `date '+%d-%h-%Y %H:%M:%S'`" ) 1>$SFILE 2>&1 From owner-freebsd-ports@FreeBSD.ORG Tue Aug 12 22:17:40 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65CCE37B401 for ; Tue, 12 Aug 2003 22:17:40 -0700 (PDT) Received: from ns.kobe1995.net (219.117.208.10.user.rb.il24.net [219.117.208.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 156B243FAF for ; Tue, 12 Aug 2003 22:17:35 -0700 (PDT) (envelope-from kaz@kobe1995.net) Received: (from kaz@localhost) by ns.kobe1995.net (8.8.8/3.7W-primary) id OAA27208; Wed, 13 Aug 2003 14:17:31 +0900 (JST) To: sane-devel@mostang.com, ports@FreeBSD.ORG From: kaz@kobe1995.net (NAKAMURA Kazushi) X-Mailer: mnews [version 1.22PL6] 2002-07/03(Wed) Date: Wed, 13 Aug 2003 14:17:31 +0900 Message-ID: <030813141731.M0127146@ns.kobe1995.net> cc: kaz@kobe1995.net Subject: Please merge this for EPSON GT-9700F X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 05:17:40 -0000 Hi, the sane-backend works fine on my EPSON GT-9700F (USB & IEEE1394). But it needs simokawa-san's patch for sane-1.0.11. Please merge it. Thank you! ==> patch-epson.c <== --- backend/epson_scsi.c.orig Sun Apr 27 21:57:39 2003 +++ backend/epson_scsi.c Tue Aug 12 14:26:20 2003 @@ -93,15 +93,16 @@ { u_char * cmd; - cmd = alloca( 6 + buf_size); - memset( cmd, 0, 6); +#define ALIGN 8 + cmd = alloca( ALIGN + buf_size); + memset( cmd, 0, ALIGN); cmd[ 0] = WRITE_6_COMMAND; cmd[ 2] = buf_size >> 16; cmd[ 3] = buf_size >> 8; cmd[ 4] = buf_size; - memcpy( cmd + 6, buf, buf_size); + memcpy( cmd + ALIGN, buf, buf_size); - if( SANE_STATUS_GOOD == ( *status = sanei_scsi_cmd( fd, cmd, 6 + buf_size, NULL, NULL))) + if( SANE_STATUS_GOOD == ( *status = sanei_scsi_cmd2( fd, cmd, 6, cmd + ALIGN, buf_size, NULL, NULL))) return buf_size; return 0; -- $BCfB NAKAMURA Kazushi@KOBE - Be Free(BSD), or Die... From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 02:09:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C80637B401 for ; Wed, 13 Aug 2003 02:09:33 -0700 (PDT) Received: from smtp.fud.org.nz (203-79-110-29.cable.paradise.net.nz [203.79.110.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B10E43FA3 for ; Wed, 13 Aug 2003 02:09:32 -0700 (PDT) (envelope-from andy@fud.org.nz) Received: from [192.168.10.254] (dhcp-254.fud.org.nz [192.168.10.254]) by smtp.fud.org.nz (Postfix) with ESMTP id 020C532A; Wed, 13 Aug 2003 21:09:30 +1200 (NZST) From: Andrew Thompson To: Martin Blapp In-Reply-To: <20030813103527.S2686@cvs.imp.ch> References: <03Aug12.110200nzst.119044@homer.fire.org.nz> <20030812010635.H2686@cvs.imp.ch> <03Aug12.111336nzst.119047@homer.fire.org.nz> <20030813103527.S2686@cvs.imp.ch> Content-Type: text/plain Message-Id: <1060765805.24203.6.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Wed, 13 Aug 2003 21:10:06 +1200 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: cirtix_ica X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 09:09:33 -0000 On Wed, 2003-08-13 at 20:37, Martin Blapp wrote: > Hi, > > > Here you go, thanks. > > Looks everything normal. Is it possible that the linux emulation > is not running or not installed ? A "uname" call seems not to > return linux in your case. > > This works here just fine. > > Martin > It seems that uname -m in linux compat returns i686 while the setupwfc script is greping for i386 [thompsa@holly]$uname -m i386 [thompsa@holly]$/compat/linux/bin/sh [thompsa@holly]$uname -m i686 Andy From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 02:14:38 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 115D837B401 for ; Wed, 13 Aug 2003 02:14:38 -0700 (PDT) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A238443F75 for ; Wed, 13 Aug 2003 02:14:36 -0700 (PDT) (envelope-from mb@imp.ch) Received: from nbs.imp.ch (nbs.imp.ch [157.161.4.7]) by mail.imp.ch (8.12.6p2/8.12.3) with ESMTP id h7D9EX5w048148; Wed, 13 Aug 2003 11:14:34 +0200 (CEST) (envelope-from Martin.Blapp@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by nbs.imp.ch (8.12.8/8.12.3) with ESMTP id h7D9EXlH9171872; Wed, 13 Aug 2003 11:14:33 +0200 (MES) Date: Wed, 13 Aug 2003 11:14:33 +0200 (CEST) From: Martin Blapp To: Andrew Thompson In-Reply-To: <1060765805.24203.6.camel@localhost> Message-ID: <20030813111413.B2686@cvs.imp.ch> References: <03Aug12.110200nzst.119044@homer.fire.org.nz> <03Aug12.111336nzst.119047@homer.fire.org.nz> <1060765805.24203.6.camel@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org Subject: Re: cirtix_ica X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 09:14:38 -0000 Hi, > It seems that uname -m in linux compat returns i686 while the setupwfc > script is greping for i386 > > [thompsa@holly]$uname -m > i386 > [thompsa@holly]$/compat/linux/bin/sh > [thompsa@holly]$uname -m > i686 Ok, I'll add a fix then. Thank you for reporting this ! Martin From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 02:23:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13C0937B401 for ; Wed, 13 Aug 2003 02:23:26 -0700 (PDT) Received: from smtp.fud.org.nz (203-79-110-29.cable.paradise.net.nz [203.79.110.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EE3643FAF for ; Wed, 13 Aug 2003 02:23:25 -0700 (PDT) (envelope-from andy@fud.org.nz) Received: from [192.168.10.254] (dhcp-254.fud.org.nz [192.168.10.254]) by smtp.fud.org.nz (Postfix) with ESMTP id 8266619E; Wed, 13 Aug 2003 21:23:24 +1200 (NZST) From: Andrew Thompson To: Martin Blapp In-Reply-To: <20030813111413.B2686@cvs.imp.ch> References: <03Aug12.110200nzst.119044@homer.fire.org.nz> <20030812010635.H2686@cvs.imp.ch> <03Aug12.111336nzst.119047@homer.fire.org.nz> <1060765805.24203.6.camel@localhost> <20030813111413.B2686@cvs.imp.ch> Content-Type: text/plain Message-Id: <1060766640.24203.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Wed, 13 Aug 2003 21:24:00 +1200 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: cirtix_ica X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 09:23:26 -0000 On Wed, 2003-08-13 at 21:14, Martin Blapp wrote: > Hi, > > > It seems that uname -m in linux compat returns i686 while the setupwfc > > script is greping for i386 > > > > [thompsa@holly]$uname -m > > i386 > > [thompsa@holly]$/compat/linux/bin/sh > > [thompsa@holly]$uname -m > > i686 > > Ok, I'll add a fix then. Thank you for reporting this ! > Thanks. fyi, This change was made a few weeks ago in rev 1.147 and can have any value of i386,i486,i586,i686 http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/compat/linux/linux_misc.c From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 02:30:10 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E86A837B401 for ; Wed, 13 Aug 2003 02:30:10 -0700 (PDT) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC55C43FB1 for ; Wed, 13 Aug 2003 02:30:09 -0700 (PDT) (envelope-from mb@imp.ch) Received: from nbs.imp.ch (nbs.imp.ch [157.161.4.7]) by mail.imp.ch (8.12.6p2/8.12.3) with ESMTP id h7D9U75w053052; Wed, 13 Aug 2003 11:30:07 +0200 (CEST) (envelope-from Martin.Blapp@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by nbs.imp.ch (8.12.8/8.12.3) with ESMTP id h7D9U6lH9150790; Wed, 13 Aug 2003 11:30:06 +0200 (MES) Date: Wed, 13 Aug 2003 11:30:06 +0200 (CEST) From: Martin Blapp To: Andrew Thompson In-Reply-To: <1060766640.24203.10.camel@localhost> Message-ID: <20030813112953.B2686@cvs.imp.ch> References: <03Aug12.110200nzst.119044@homer.fire.org.nz> <03Aug12.111336nzst.119047@homer.fire.org.nz> <1060765805.24203.6.camel@localhost> <1060766640.24203.10.camel@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org Subject: Re: cirtix_ica X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 09:30:11 -0000 Hi, > This change was made a few weeks ago in rev 1.147 and can have any value > of i386,i486,i586,i686 > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/compat/linux/linux_misc.c Fixed. Thanks a lot ! Martin From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 02:46:04 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E308637B401 for ; Wed, 13 Aug 2003 02:46:04 -0700 (PDT) Received: from port9.org (12-233-252-26.client.attbi.com [12.233.252.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A65943FB1 for ; Wed, 13 Aug 2003 02:46:04 -0700 (PDT) (envelope-from tplagge@port9.org) Received: from port9.org (localhost [127.0.0.1]) by port9.org (8.12.9/8.12.9) with ESMTP id h7D9k1A0007896 for ; Wed, 13 Aug 2003 02:46:01 -0700 (PDT) (envelope-from tplagge@port9.org) Received: (from tplagge@localhost) by port9.org (8.12.9/8.12.9/Submit) id h7D9k1LC007894; Wed, 13 Aug 2003 02:46:01 -0700 (PDT) Message-Id: <200308130946.h7D9k1LC007894@port9.org> To: freebsd-ports@freebsd.org X-Mailer: nmh 1.0.4 (FreeBSD) X-PBR: ASAP Date: Wed, 13 Aug 2003 02:46:00 -0700 From: Tom Plagge Subject: Fluxbox/boxtools problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tplagge@socrates.berkeley.edu List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 09:46:05 -0000 I have a fresh install of 5-CURRENT running, and I'm trying to install Fluxbox. As has been reported in the past, there's a problem: fluxbox.cc: In member function `void Fluxbox::save_rc()': fluxbox.cc:1976: error: `B_EuropeanDate' undeclared (first use this function) fluxbox.cc:1976: error: (Each undeclared identifier is reported only once for each function it appears in.) fluxbox.cc: In member function `void Fluxbox::load_rc(BScreen*)': fluxbox.cc:2324: error: `B_AmericanDate' undeclared (first use this function) *** Error code 1 Stop in /usr/ports/x11-wm/fluxbox. As noted before, this can be fixed by editing config.h to include #define HAVE_STRFTIME 1 and by including cassert in FbRun.cc. However, even after these fixes, it wouldn't install; see the dump at the end of this file. It seems there's a whole host of errors in the boxtools package, and they look to either be due to bad C++ or bugs in gcc. Any suggestions on how to proceed? Thanks much -t ------------------- ===> Installing for fluxbox-0.1.14_2 ===> fluxbox-0.1.14_2 depends on executable: bsetbg - not found ===> Verifying install for bsetbg in /usr/ports/x11-wm/boxtools ===> Building for boxtools-0.65.0 make all-recursive Making all in data Making all in styles Making all in doc Making all in nls Making all in C Making all in da_DK Making all in de_DE Making all in es_AR Making all in es_ES Making all in fr_FR Making all in hu_HU Making all in it_IT Making all in ja_JP Making all in ko_KR Making all in lv_LV Making all in nl_NL Making all in no_NO Making all in pl_PL Making all in pt_BR Making all in ro_RO Making all in ru_RU Making all in sk_SK Making all in sl_SI Making all in sv_SE Making all in uk_UA Making all in zh_CN Making all in zh_TW Making all in src c++ -DHAVE_CONFIG_H -I. -I. -I.. -DSHAPE -DNDEBUG -DNLS -DTIMEDCACHE -DLOCALE PATH=\"/usr/X11R6/share/boxtools/nls\" -DDEFAULTMENU=\"/usr/X11R6/share/boxtools /menu\" -DDEFAULTSTYLE=\"/usr/X11R6/share/boxtools/styles/Results\" -O -pipe -m cpu=pentiumpro -I/usr/X11R6/include -Wall -W -pedantic -c BaseDisplay.cc In file included from BaseDisplay.cc:47: /usr/include/stdlib.h:134: error: ISO C++ does not support `long long' /usr/include/stdlib.h:135: error: ISO C++ does not support `long long' /usr/include/stdlib.h:140: error: ISO C++ does not support `long long' /usr/include/stdlib.h:143: error: ISO C++ does not support `long long' /usr/include/stdlib.h:143: error: ISO C++ does not support `long long' /usr/include/stdlib.h:145: error: ISO C++ does not support `long long' /usr/include/stdlib.h:145: error: ISO C++ does not support `long long' /usr/include/stdlib.h:148: error: ISO C++ does not support `long long' /usr/include/stdlib.h:151: error: ISO C++ does not support `long long' In file included from /usr/include/c++/3.3/cwchar:54, from /usr/include/c++/3.3/bits/fpos.h:45, from /usr/include/c++/3.3/bits/char_traits.h:46, from /usr/include/c++/3.3/string:47, from BaseDisplay.cc:81: /usr/include/wchar.h:189: error: ISO C++ does not support `long long' /usr/include/wchar.h:192: error: ISO C++ does not support `long long' In file included from /usr/include/c++/3.3/bits/fpos.h:45, from /usr/include/c++/3.3/bits/char_traits.h:46, from /usr/include/c++/3.3/string:47, from BaseDisplay.cc:81: /usr/include/c++/3.3/cwchar:237: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cwchar:239: error: ISO C++ does not support `long long' In file included from /usr/include/c++/3.3/bits/stl_algobase.h:67, from /usr/include/c++/3.3/memory:54, from /usr/include/c++/3.3/string:48, from BaseDisplay.cc:81: /usr/include/c++/3.3/cstdlib:149: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:149: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:152: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:152: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:157: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:157: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:161: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:161: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:165: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:167: error: ISO C++ does not support `long long' /usr/include/c++/3.3/cstdlib:169: error: ISO C++ does not support `long long' In file included from /usr/include/c++/3.3/bits/stl_algobase.h:72, from /usr/include/c++/3.3/memory:54, from /usr/include/c++/3.3/string:48, from BaseDisplay.cc:81: /usr/include/c++/3.3/bits/type_traits.h:211: error: ISO C++ does not support `long long' /usr/include/c++/3.3/bits/type_traits.h:219: error: ISO C++ does not support `long long' /usr/include/c++/3.3/bits/type_traits.h:312: error: ISO C++ does not support `long long' /usr/include/c++/3.3/bits/type_traits.h:316: error: ISO C++ does not support `long long' In file included from /usr/include/c++/3.3/memory:55, from /usr/include/c++/3.3/string:48, from BaseDisplay.cc:81: /usr/include/c++/3.3/bits/stl_alloc.h:968: error: ISO C++ forbids the use of ` extern' on explicit instantiations /usr/include/c++/3.3/bits/stl_alloc.h:969: error: ISO C++ forbids the use of ` extern' on explicit instantiations /usr/include/c++/3.3/bits/stl_alloc.h:970: error: ISO C++ forbids the use of ` extern' on explicit instantiations /usr/include/c++/3.3/bits/stl_alloc.h:970: error: ISO C++ forbids the use of ` extern' on explicit instantiations /usr/include/c++/3.3/bits/stl_alloc.h:970: error: ISO C++ forbids the use of ` extern' on explicit instantiations /usr/include/c++/3.3/bits/stl_alloc.h:970: error: ISO C++ forbids the use of ` extern' on explicit instantiations In file included from /usr/include/c++/3.3/string:57, from BaseDisplay.cc:81: /usr/include/c++/3.3/bits/basic_string.tcc:1061: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1061: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1061: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1064: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1067: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1070: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1073: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1076: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1076: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1076: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1079: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1082: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1085: error: ISO C++ forbids the use of `extern' on explicit instantiations /usr/include/c++/3.3/bits/basic_string.tcc:1088: error: ISO C++ forbids the use of `extern' on explicit instantiations *** Error code 1 Stop in /usr/ports/x11-wm/boxtools/work/blackbox-0.65.0/src. *** Error code 1 Stop in /usr/ports/x11-wm/boxtools/work/blackbox-0.65.0. *** Error code 1 Stop in /usr/ports/x11-wm/boxtools/work/blackbox-0.65.0. *** Error code 1 Stop in /usr/ports/x11-wm/boxtools. *** Error code 1 Stop in /usr/ports/x11-wm/fluxbox. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 03:32:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CCF137B401 for ; Wed, 13 Aug 2003 03:32:26 -0700 (PDT) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5793D43FA3 for ; Wed, 13 Aug 2003 03:32:25 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (orb_rules@localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.9/8.12.9) with ESMTP id h7DAXMKj038605; Wed, 13 Aug 2003 12:33:22 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.9/8.12.9/Submit) id h7DAXLY4038604; Wed, 13 Aug 2003 12:33:21 +0200 (CEST) Date: Wed, 13 Aug 2003 12:33:21 +0200 From: Stijn Hoop To: tplagge@socrates.berkeley.edu Message-ID: <20030813103321.GI59732@pcwin002.win.tue.nl> References: <200308130946.h7D9k1LC007894@port9.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E1BPhOSoTthPQdPL" Content-Disposition: inline In-Reply-To: <200308130946.h7D9k1LC007894@port9.org> User-Agent: Mutt/1.4.1i X-Bright-Idea: Let's abolish HTML mail! cc: freebsd-ports@freebsd.org Subject: Re: Fluxbox/boxtools problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 10:32:26 -0000 --E1BPhOSoTthPQdPL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 13, 2003 at 02:46:00AM -0700, Tom Plagge wrote: > I have a fresh install of 5-CURRENT running, and I'm trying to install > Fluxbox. As has been reported in the past, there's a problem: >=20 > fluxbox.cc: In member function `void Fluxbox::save_rc()': > fluxbox.cc:1976: error: `B_EuropeanDate' undeclared (first use this funct= ion) > fluxbox.cc:1976: error: (Each undeclared identifier is reported only once= for=20 > each function it appears in.) > fluxbox.cc: In member function `void Fluxbox::load_rc(BScreen*)': > fluxbox.cc:2324: error: `B_AmericanDate' undeclared (first use this funct= ion) > *** Error code 1 > > Stop in /usr/ports/x11-wm/fluxbox. >=20 >=20 > As noted before, this can be fixed by editing config.h to include > #define HAVE_STRFTIME 1=20 > and by including cassert in FbRun.cc. >=20 > However, even after these fixes, it wouldn't install; see the dump at the > end of this file. It seems there's a whole host of errors in the boxtools > package, and they look to either be due to bad C++ or bugs in gcc. Any= =20 > suggestions on how to proceed? It's probably bad C++, -CURRENT's compiler got a lot pickier after the upgrade. I'm able to reproduce this and hopefully I can get the boxtools port to work. Will send you a diff when finished. Thanks for the report! --Stijn --=20 An Orb is for life, not just for Christmas. --E1BPhOSoTthPQdPL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OhPxY3r/tLQmfWcRAutnAKCZh/tsgG9+8QoaQe/Jf8K/njUqEwCgmBzg 9c++ydH1oRWIsE4JLwvuFI0= =CUzi -----END PGP SIGNATURE----- --E1BPhOSoTthPQdPL-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 03:47:44 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3AA637B401 for ; Wed, 13 Aug 2003 03:47:44 -0700 (PDT) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9A7443FAF for ; Wed, 13 Aug 2003 03:47:43 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (orb_rules@localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.9/8.12.9) with ESMTP id h7DAmeKj038734; Wed, 13 Aug 2003 12:48:40 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.9/8.12.9/Submit) id h7DAmeG6038733; Wed, 13 Aug 2003 12:48:40 +0200 (CEST) Date: Wed, 13 Aug 2003 12:48:40 +0200 From: Stijn Hoop To: tplagge@socrates.berkeley.edu Message-ID: <20030813104840.GJ59732@pcwin002.win.tue.nl> References: <200308130946.h7D9k1LC007894@port9.org> <20030813103321.GI59732@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sDhuxz86kt5qlkuV" Content-Disposition: inline In-Reply-To: <20030813103321.GI59732@pcwin002.win.tue.nl> User-Agent: Mutt/1.4.1i X-Bright-Idea: Let's abolish HTML mail! cc: freebsd-ports@freebsd.org Subject: Re: Fluxbox/boxtools problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 10:47:45 -0000 --sDhuxz86kt5qlkuV Content-Type: multipart/mixed; boundary="80Ds8Z/hZmemMosa" Content-Disposition: inline --80Ds8Z/hZmemMosa Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 13, 2003 at 12:33:21PM +0200, Stijn Hoop wrote: > On Wed, Aug 13, 2003 at 02:46:00AM -0700, Tom Plagge wrote: > > However, even after these fixes, it wouldn't install; see the dump at t= he > > end of this file. It seems there's a whole host of errors in the boxto= ols > > package, and they look to either be due to bad C++ or bugs in gcc. Any= =20 > > suggestions on how to proceed? >=20 > It's probably bad C++, -CURRENT's compiler got a lot pickier after the > upgrade. I'm able to reproduce this and hopefully I can get the boxtools > port to work. Will send you a diff when finished. Thanks for the report! Turned out to be easier than I thought. Here's the diff, tested to install = but not tested wrt functionality. If you can confirm that the tools actually wo= rk, I'll send-pr. --Stijn --=20 "Well," Brahma said, "even after ten thousand explanations, a fool is no wiser, but an intelligent man requires only two thousand five hundred." -- The Mahabharata. --80Ds8Z/hZmemMosa Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="boxtools.diff" Content-Transfer-Encoding: quoted-printable Index: 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/stijn/cvsroot/ports/boxtools/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 13 Aug 2003 10:13:49 -0000 1.5 +++ Makefile 13 Aug 2003 10:43:51 -0000 @@ -23,6 +23,7 @@ =20 pre-patch: ${REINPLACE_CMD} -e 's#PACKAGE=3Dblackbox#PACKAGE=3Dboxtools#' \ + -e 's#-pedantic##' \ ${WRKSRC}/configure =20 do-install: Index: files/patch-src::Window.cc =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: files/patch-src::Window.cc diff -N files/patch-src::Window.cc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src::Window.cc 13 Aug 2003 10:43:51 -0000 @@ -0,0 +1,11 @@ +--- src/Window.cc.orig Wed Aug 13 12:40:02 2003 ++++ src/Window.cc Wed Aug 13 12:41:03 2003 +@@ -44,6 +44,8 @@ + #endif // HAVE_STDLIB_H + } +=20 ++#include ++ + #include "i18n.hh" + #include "blackbox.hh" + #include "GCCache.hh" --80Ds8Z/hZmemMosa-- --sDhuxz86kt5qlkuV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OheIY3r/tLQmfWcRAspmAKCk8kITakokYBaoeng+Dm6t6M242gCfQAW6 ZiYsf/EMpYz+arpRMR0vABE= =AiQC -----END PGP SIGNATURE----- --sDhuxz86kt5qlkuV-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 07:39:40 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B8F337B401; Wed, 13 Aug 2003 07:39:40 -0700 (PDT) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.128.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF31943FCB; Wed, 13 Aug 2003 07:39:34 -0700 (PDT) (envelope-from kilianh@lantic.net) Received: from [137.158.128.125] (helo=anubis.uct.ac.za) by mail.uct.ac.za with esmtp (Exim 3.35 #1) id 19mwmd-0009RD-00; Wed, 13 Aug 2003 16:39:27 +0200 Received: from localhost ([127.0.0.1]) by anubis.uct.ac.za with esmtp (Exim 4.20) id 19mwoU-000Bx3-DW; Wed, 13 Aug 2003 16:41:22 +0200 Received: from anubis.uct.ac.za ([127.0.0.1]) by localhost (anubis.uct.ac.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 45771-04; Wed, 13 Aug 2003 16:41:22 +0200 (SAST) Received: from particle.egs.uct.ac.za ([196.21.8.146]) by anubis.uct.ac.za with esmtp (Exim 4.20) id 19mwoT-000Bww-Mf; Wed, 13 Aug 2003 16:41:21 +0200 From: Kilian Hagemann To: netchild@FreeBSD.org Date: Wed, 13 Aug 2003 16:39:09 +0000 User-Agent: KMail/1.5.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308131639.09391.kilianh@lantic.net> X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19mwoT-000Bww-Mf*i6ZRP.gVp2I* X-Virus-Scanned: by amavisd-new at anubis.uct.ac.za X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19mwoU-000Bx3-DW*mKT9xW5nJ8Y* cc: ports@FreeBSD.org Subject: FreeBSD Port: icc-7.1.021 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 14:39:40 -0000 Hi there, I'm just trying to install the icc port on my system, but the port specifies version 7.1.021. After registering the product with Intel, they told me to visit http://www.intel.com/software/products/compilers/downloads/clin.htm to download the compiler. However, there they only have version 7.1.006. When running make install, it tells me I can also get the latest version from https://premier.intel.com. So I registered for that site, but they only have version 7.1.25, as it became available on the day I decided to install the port(11 August)!!! I can't even find a checksum for the 7.1.25 version, so I'm stuffed. Please advise when you'll update the port or how I can get around the version problem. Kilian Hagemann From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 07:48:46 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF52837B404; Wed, 13 Aug 2003 07:48:45 -0700 (PDT) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.128.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5DF443FD7; Wed, 13 Aug 2003 07:48:44 -0700 (PDT) (envelope-from kilianh@lantic.net) Received: from [137.158.128.125] (helo=anubis.uct.ac.za) by mail.uct.ac.za with esmtp (Exim 3.35 #1) id 19mwvb-000AeT-00; Wed, 13 Aug 2003 16:48:43 +0200 Received: from localhost ([127.0.0.1]) by anubis.uct.ac.za with esmtp (Exim 4.20) id 19mwxS-000C7e-BT; Wed, 13 Aug 2003 16:50:38 +0200 Received: from anubis.uct.ac.za ([127.0.0.1]) by localhost (anubis.uct.ac.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 46541-01; Wed, 13 Aug 2003 16:50:37 +0200 (SAST) Received: from particle.egs.uct.ac.za ([196.21.8.146]) by anubis.uct.ac.za with esmtp (Exim 4.20) id 19mwxR-000C7X-KE; Wed, 13 Aug 2003 16:50:37 +0200 From: Kilian Hagemann To: netchild@FreeBSD.org Date: Wed, 13 Aug 2003 16:48:25 +0000 User-Agent: KMail/1.5.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200308131648.25084.kilianh@lantic.net> X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19mwxR-000C7X-KE*HckVLe3/xkw* X-Virus-Scanned: by amavisd-new at anubis.uct.ac.za X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19mwxS-000C7e-BT*UaUWbDNoF7Y* cc: ports@FreeBSD.org Subject: FreeBSD Port: icc-7.1.021(again) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 14:48:46 -0000 Sorry, I posted my last e-mail prematurely(again). I found the link on the premier.intel.com website where I could download older versions. Sorry for the hassle. Still would like to know what the average time is it takes to support a brand new version... Thanks, Kilian From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 08:12:21 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 182BD37B409 for ; Wed, 13 Aug 2003 08:12:21 -0700 (PDT) Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA88A43FBD for ; Wed, 13 Aug 2003 08:12:19 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd09.aul.t-online.de by mailout02.sul.t-online.com with smtp id 19mxIQ-0001l3-04; Wed, 13 Aug 2003 17:12:18 +0200 Received: from Andro-Beta.Leidinger.net (SmTZXTZ-YeVJAcfxEfC74lrIBEH119n9kzOJNjrajLVwx7+O4y-ss7@[80.131.123.211]) by fmrl09.sul.t-online.com with esmtp id 19mxIA-21Qm9I0; Wed, 13 Aug 2003 17:12:02 +0200 Received: from Leidinger.net ([192.168.1.5])h7DFD29O023021; Wed, 13 Aug 2003 17:13:03 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Message-ID: <3F3A553E.1010701@Leidinger.net> Date: Wed, 13 Aug 2003 17:11:58 +0200 From: Alexander Leidinger User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.4) Gecko/20030624 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Kilian Hagemann References: <200308131639.09391.kilianh@lantic.net> In-Reply-To: <200308131639.09391.kilianh@lantic.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Seen: false X-ID: SmTZXTZ-YeVJAcfxEfC74lrIBEH119n9kzOJNjrajLVwx7+O4y-ss7@t-dialin.net cc: ports@freebsd.org Subject: Re: FreeBSD Port: icc-7.1.021 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 15:12:21 -0000 Kilian Hagemann schrieb: > However, there they only have version 7.1.006. When running make install, it > tells me I can also get the latest version from https://premier.intel.com. So > I registered for that site, but they only have version 7.1.25, as it became > available on the day I decided to install the port(11 August)!!! Yes, and I also got the mail from Intel about the update. Unfortunately my monitor just died at the same day and the box with the neccessary ssh key for committing the update doesn't allow remote logins (it seems I'm paranoid...). At the end of the week I get a message if I need to buy a new one or not (but I may get a loaned one over the weekend). > I can't even find a checksum for the 7.1.25 version, so I'm stuffed. > > Please advise when you'll update the port or how I can get around the version > problem. Edit the port Makefile to have the 7.1.25 version ("PORTVERSION"), put the icc tarball into /usr/ports/distfiles, run "make makesum; make" (it will fail), look into the created "work" directory and write down the version number of the extracted files, edit the Makefile again (correct the version numbers you just wrote down), run "make clean". Now the port should be updated and you can install it (it may be the case, that the packaging list (pkg-plist) isn't correct, but as it installs completely into its own directory, you don't need to worry about it that much). Bye, Alexander. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 08:14:30 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9D7037B404 for ; Wed, 13 Aug 2003 08:14:30 -0700 (PDT) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB51343FB1 for ; Wed, 13 Aug 2003 08:14:29 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd06.aul.t-online.de by mailout05.sul.t-online.com with smtp id 19mxKW-0002Ot-06; Wed, 13 Aug 2003 17:14:28 +0200 Received: from Andro-Beta.Leidinger.net (bRvFf6ZrZe1N9-oT4LOyF4FaEKXVS2ushEUsL9JLLC13bG51h+aasW@[80.131.123.211]) by fmrl06.sul.t-online.com with esmtp id 19mxKS-06cGy80; Wed, 13 Aug 2003 17:14:24 +0200 Received: from Leidinger.net ([192.168.1.5])h7DFFO9O023027; Wed, 13 Aug 2003 17:15:24 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Message-ID: <3F3A55CC.1050202@Leidinger.net> Date: Wed, 13 Aug 2003 17:14:20 +0200 From: Alexander Leidinger User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.4) Gecko/20030624 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Kilian Hagemann References: <200308131648.25084.kilianh@lantic.net> In-Reply-To: <200308131648.25084.kilianh@lantic.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Seen: false X-ID: bRvFf6ZrZe1N9-oT4LOyF4FaEKXVS2ushEUsL9JLLC13bG51h+aasW@t-dialin.net cc: ports@freebsd.org Subject: Re: FreeBSD Port: icc-7.1.021(again) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 15:14:31 -0000 Kilian Hagemann schrieb: > Still would like to know what the average time is it takes to support a brand > new version... It depends... for minor updates maybe a day or two (depending on my personal schedule), if I'm really busy or just something bad happens it may take longer... Bye, Alexander. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 15:38:58 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C59937B401 for ; Wed, 13 Aug 2003 15:38:58 -0700 (PDT) Received: from mail47.fg.online.no (mail47-s.fg.online.no [148.122.161.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C7343F3F for ; Wed, 13 Aug 2003 15:38:55 -0700 (PDT) (envelope-from jakob@grimstveit.no) Received: from [192.168.0.103] (ti400720a080-3913.bb.online.no [80.212.175.73]) by mail47.fg.online.no (8.9.3p2/8.9.3) with ESMTP id AAA03152 for ; Thu, 14 Aug 2003 00:38:51 +0200 (MEST) From: Jakob Breivik Grimstveit To: ports@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-WOoZ8PSPHdpBFO8Sjg5d" Organization: BitWise Computing Message-Id: <1060814330.584.19.camel@dune> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Thu, 14 Aug 2003 00:38:50 +0200 Subject: sane-backends build fails miserably X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 22:38:58 -0000 --=-WOoZ8PSPHdpBFO8Sjg5d Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Since I got some complaints when running xsane, I tried reinstalling sane-backends. That fails this way. How do I fix this? Will this port be fixed soon? Thanks for any help with this. [jakobbg@dune jakobbg]$ cd /usr/ports/graphics/sane-backends/ [jakobbg@dune sane-backends]$ sudo make deinstall reinstall Password: =3D=3D=3D> Deinstalling for graphics/sane-backends =3D=3D=3D> sane-backends not installed, skipping >> sane-backends-1.0.12.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.no.freebsd.org/pub/FreeBSD/ports/distfiles //. Receiving sane-backends-1.0.12.tar.gz (2790931 bytes): 100% 2790931 bytes transferred in 21.2 seconds (128.35 kBps) =3D=3D=3D> Extracting for sane-backends-1.0.12_2 >> Checksum OK for sane-backends-1.0.12.tar.gz. =3D=3D=3D> Patching for sane-backends-1.0.12_2 =3D=3D=3D> Applying FreeBSD patches for sane-backends-1.0.12_2 =3D=3D=3D> sane-backends-1.0.12_2 depends on executable: gmake - found =3D=3D=3D> sane-backends-1.0.12_2 depends on file: /usr/local/libexec/libtool13/libtool - found =3D=3D=3D> sane-backends-1.0.12_2 depends on shared library: intl.4 - fou= nd =3D=3D=3D> sane-backends-1.0.12_2 depends on shared library: usb-0.1.7 - found =3D=3D=3D> sane-backends-1.0.12_2 depends on shared library: jpeg.9 - fou= nd =3D=3D=3D> sane-backends-1.0.12_2 depends on shared library: gphoto2.2 - found =3D=3D=3D> Configuring for sane-backends-1.0.12_2 checking build system type... i386-portbld-freebsd4.8 checking host system type... i386-portbld-freebsd4.8 checking for gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ANSI C... none needed checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether gmake sets $(MAKE)... yes checking how to run the C preprocessor... cc -E checking for egrep... grep -E checking whether cc needs -traditional... no checking for sane-config... no checking for msgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for msgmerge... /usr/local/bin/msgmerge checking for latex... no checking for dvips... no checking for makeindex... no checking linker parameter to set runtime link path... -Wl,-rpath, checking for AIX... no checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking for strerror in -lcposix... no checking mach-o/dyld.h usability... no checking mach-o/dyld.h presence... no checking for mach-o/dyld.h... no checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for dlopen in -ldl... no checking for dlopen... yes checking dl.h usability... no checking dl.h presence... no checking for dl.h... no checking for sqrt in -lm... yes checking for scsireq_enter in -lscsi... no checking for cam_open_device in -lcam... yes checking for gethostbyaddr in -lnsl... no checking for socket in -lsocket... no checking for syslog in -lsyslog... no checking for jpeg_start_decompress in -ljpeg... yes checking jconfig.h usability... yes checking jconfig.h presence... yes checking for jconfig.h... yes checking for jpeglib - version >=3D 61 (6a)... yes checking ieee1284.h usability... no checking ieee1284.h presence... no checking for ieee1284.h... no checking for gphoto2-config... gphoto2-config checking for sane_init in -lsane... no checking for ANSI C header files... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking for unistd.h... (cached) yes checking libc.h usability... no checking libc.h presence... no checking for libc.h... no checking sys/dsreq.h usability... no checking sys/dsreq.h presence... no checking for sys/dsreq.h... no checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/shm.h usability... yes checking sys/shm.h presence... yes checking for sys/shm.h... yes checking sys/scanio.h usability... no checking sys/scanio.h presence... no checking for sys/scanio.h... no checking scsi.h usability... no checking scsi.h presence... no checking for scsi.h... no checking sys/scsi.h usability... no checking sys/scsi.h presence... no checking for sys/scsi.h... no checking sys/scsicmd.h usability... no checking sys/scsicmd.h presence... no checking for sys/scsicmd.h... no checking sys/scsiio.h usability... no checking sys/scsiio.h presence... no checking for sys/scsiio.h... no checking bsd/dev/scsireg.h usability... no checking bsd/dev/scsireg.h presence... no checking for bsd/dev/scsireg.h... no checking scsi/sg.h usability... no checking scsi/sg.h presence... no checking for scsi/sg.h... no checking /usr/src/linux/include/scsi/sg.h usability... no checking /usr/src/linux/include/scsi/sg.h presence... no checking for /usr/src/linux/include/scsi/sg.h... no checking io/cam/cam.h usability... no checking io/cam/cam.h presence... no checking for io/cam/cam.h... no checking camlib.h usability... yes checking camlib.h presence... yes checking for camlib.h... yes checking os2.h usability... no checking os2.h presence... no checking for os2.h... no checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/io.h usability... no checking sys/io.h presence... no checking for sys/io.h... no checking gscdds.h usability... no checking gscdds.h presence... no checking for gscdds.h... no checking sys/hw.h usability... no checking sys/hw.h presence... no checking for sys/hw.h... no checking for sys/types.h... (cached) yes checking sys/scsi/scsi.h usability... no checking sys/scsi/scsi.h presence... no checking for sys/scsi/scsi.h... no checking sys/scsi/sgdefs.h usability... no checking sys/scsi/sgdefs.h presence... no checking for sys/scsi/sgdefs.h... no checking sys/scsi/targets/scgio.h usability... no checking sys/scsi/targets/scgio.h presence... no checking for sys/scsi/targets/scgio.h... no checking apollo/scsi.h usability... no checking apollo/scsi.h presence... no checking for apollo/scsi.h... no checking sys/sdi_comm.h usability... no checking sys/sdi_comm.h presence... no checking for sys/sdi_comm.h... no checking sys/passthrudef.h usability... no checking sys/passthrudef.h presence... no checking for sys/passthrudef.h... no checking linux/ppdev.h usability... no checking linux/ppdev.h presence... no checking for linux/ppdev.h... no checking dev/ppbus/ppi.h usability... yes checking dev/ppbus/ppi.h presence... yes checking for dev/ppbus/ppi.h... yes checking usb.h usability... yes checking usb.h presence... yes checking for usb.h... yes checking sys/bitypes.h usability... no checking sys/bitypes.h presence... no checking for sys/bitypes.h... no checking sys/sem.h usability... yes checking sys/sem.h presence... yes checking for sys/sem.h... yes checking sys/poll.h usability... yes checking sys/poll.h presence... yes checking for sys/poll.h... yes checking IOKit/IOKitLib.h usability... no checking IOKit/IOKitLib.h presence... no checking for IOKit/IOKitLib.h... no checking for asm/io.h... no checking linux/videodev.h usability... no checking linux/videodev.h presence... no checking for linux/videodev.h... no checking return type of signal handlers... void checking for size_t... yes checking for pid_t... yes checking for ssize_t... yes checking for u_int8_t... yes checking for u_int16_t... yes checking for u_int32_t... yes checking for u_char... yes checking for u_int... yes checking for u_long... yes checking for long long support... yes checking for socklen_t in ... no checking for union semun in ... yes checking for sg_header.target_status in ... no checking for struct flock in fcntl.h... yes checking whether byte ordering is bigendian... no checking for an ANSI C-conforming const... yes checking for inline... inline checking for working alloca.h... no checking for alloca... no checking whether `alloca.c' needs Cray hooks... no checking stack direction for C alloca... -1 checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for getpagesize... no checking for working mmap... no checking for atexit... no checking for inet_addr... no checking for inet_aton... no checking for inet_ntoa... no checking for ioperm... no checking for mkdir... no checking for scsireq_enter... no checking for strftime... no checking for strstr... no checking for strtod... no checking for cfmakeraw... no checking for tcsendbreak... no checking for strcasecmp... no checking for strncasecmp... no checking for _portaccess... no checking for getaddrinfo... no checking for getnameinfo... no checking for poll... no checking for getenv... no checking for inet_ntop... no checking for inet_pton... no checking for isfdtype... no checking for sigprocmask... no checking for snprintf... no checking for strdup... no checking for strndup... no checking for strsep... no checking for usleep... no checking for vsyslog... no checking for usb_get_busses in -lusb... no sparc64: not found checking for a sed that does not truncate output... /usr/bin/sed checking for ld used by cc... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking for /usr/libexec/elf/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking for dlfcn.h... (cached) yes checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking how to run the C++ preprocessor... c++ -E checking for g77... no checking for f77... f77 checking whether we are using the GNU Fortran 77 compiler... yes checking whether f77 accepts -g... yes checking the maximum length of command line arguments... 16384 checking command to parse /usr/bin/nm -B output from cc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if cc static flag works... no checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking whether the cc linker (/usr/libexec/elf/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.8 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking whether the c++ linker (/usr/libexec/elf/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/libexec/elf/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.8 ld.so appending configuration tag "F77" to libtool checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for f77 option to produce PIC... -fPIC checking if f77 PIC flag -fPIC works... yes checking if f77 supports -c -o file.o... yes checking whether the f77 linker (/usr/libexec/elf/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.8 ld.so checking host system type... i386-unknown-freebsd4.8 checking for ranlib... ranlib checking whether we are using GNU C... yes checking for object suffix... o checking for executable suffix... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.lo... yes checking if cc supports -fno-rtti -fno-exceptions ... yes checking if cc static flag -static works... -static checking whether ln -s works... yes checking for ld used by GCC... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking for BSD-compatible nm... /usr/bin/nm -B checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/libexec/elf/ld option to reload object files... -r checking dynamic linker characteristics... freebsd4.8 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for objdir... .libs creating libtool enabling DC210/DC240 backends disabling CANON_PP backend (failed to find required libieee1284 version) disabling HPSJ5S backend (failed to find required libieee1284 version) enabling GPHOTO2 backend disabling PINT backend disabling QuickCam backend disabling Video4Linux backend enabling NET backend enabling SnapScan backend scsi buffersize: 131072 disabling SM3600 backend enabling translations configure: creating ./config.status config.status: creating Makefile config.status: creating lib/Makefile config.status: creating sanei/Makefile config.status: creating frontend/Makefile config.status: creating japi/Makefile config.status: creating backend/Makefile config.status: creating include/Makefile config.status: creating doc/Makefile config.status: creating po/Makefile config.status: creating testsuite/Makefile config.status: creating tools/Makefile config.status: creating tools/sane-desc.el config.status: creating tools/sane-config config.status: creating include/sane/config.h Variables used for compilation/linking: using CPPFLAGS=3D"-I/usr/local/include -DPATH_SANE_CONFIG_DIR=3D$(configdir= ) -DPATH_SANE_DATA_DIR=3D$(datadir) -DV_MAJOR=3D1 -DV_MINOR=3D0 -I/usr/local/include/gphoto2 -I/usr/local/include" using CFLAGS=3D"-O2 -pipe -march=3Dk6 -W -Wall" using LDFLAGS=3D" -L/usr/local/lib" using LIBS=3D"-lcam -lm -L/usr/local/lib -lc -ljpeg -lgphoto2 -lm" Installation directories: Configuration: /usr/local/etc Libraries: /usr/local/lib Binaries: /usr/local/bin and /usr/local/sbin Manpages: /usr/local/man Network parameters: IPv6 support: no **************************************************************** * Please be sure to read file PROBLEMS in this directory * * BEFORE running any of the SANE applications. Some devices * * may be damaged by inproper operation, so please do heed this * * advice. * **************************************************************** =3D=3D=3D> Building for sane-backends-1.0.12_2 making all in include gmake[1]: Entering directory `/usr/ports/graphics/sane-backends/work/sane-backends-1.0.12/include' gmake[1]: Nothing to be done for `all'. gmake[1]: Leaving directory `/usr/ports/graphics/sane-backends/work/sane-backends-1.0.12/include' making all in lib gmake[1]: Entering directory `/usr/ports/graphics/sane-backends/work/sane-backends-1.0.12/lib' cc -c -DHAVE_CONFIG_H -I. -I. -I../include/sane -I../include -I/usr/local/include -DPATH_SANE_CONFIG_DIR=3D/usr/local/etc/sane.d =20 -DPATH_SANE_DATA_DIR=3D/usr/local/share -DV_MAJOR=3D1 -DV_MINOR= =3D0 -I/usr/local/include/gphoto2 -I/usr/local/include -O2 -pipe -march=3Dk6 -W -Wall getenv.c getenv.c:13: #error "Missing getenv() on this platform. Please implement." getenv.c: In function `getenv': getenv.c:6: warning: unused parameter `name' gmake[1]: *** [getenv.o] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/sane-backends/work/sane-backends-1.0.12/lib' gmake: *** [all-recursive] Error 1 *** Error code 2 =20 Stop in /usr/ports/graphics/sane-backends. *** Error code 1 =20 Stop in /usr/ports/graphics/sane-backends. [jakobbg@dune sane-backends]$ --=20 Jakob Breivik Grimstveit, http://www.grimstveit.no/jakob/, +47 48298152=20 --=-WOoZ8PSPHdpBFO8Sjg5d Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/Or36qnSGjTijL7IRAkliAKC3ognmTpEQEJaN95kGbHh3tL8pvwCfWzCg 3/CgZIw2QUXaHHUdezGG1fA= =dWBX -----END PGP SIGNATURE----- --=-WOoZ8PSPHdpBFO8Sjg5d-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 16:16:13 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6306E37B401; Wed, 13 Aug 2003 16:16:13 -0700 (PDT) Received: from vasfw03.fdic.gov (vasfw03.fdic.gov [192.147.69.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FC2843FA3; Wed, 13 Aug 2003 16:16:12 -0700 (PDT) (envelope-from BHacker@FDIC.gov) Received: by vasfw03.fdic.gov; id TAA24181; Wed, 13 Aug 2003 19:16:11 -0400 (EDT) Received: from unknown(151.174.4.145) by vasfw03.fdic.gov via smap (V5.5) id xma024163; Wed, 13 Aug 03 19:15:51 -0400 Received: by s00exc101.fdic.gov with Internet Mail Service (5.5.2655.55) id ; Wed, 13 Aug 2003 19:15:51 -0400 Message-ID: From: "Hacker Jr., Benjamin T." To: "'brian@FreeBSD.org'" Date: Wed, 13 Aug 2003 19:15:50 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2655.55) Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: "'ports@FreeBSD.org'" Subject: FreeBSD Port: freeradius-0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Ben Hacker Jr.-y" List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2003 23:16:13 -0000 Just wondering when this port might be updated to 0.9.x Thanks > Benjamin Hacker, Jr > Sr. Security Analyst > FDIC PKI Security Lab > (703) 516-5340 > From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 17:53:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F1D037B401 for ; Wed, 13 Aug 2003 17:53:52 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD4A743F85 for ; Wed, 13 Aug 2003 17:53:51 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp135-153.dialup.mtu-net.ru [62.118.135.153]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 7FA8FD5DC7 for ; Thu, 14 Aug 2003 04:53:47 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F3ADD9C.2090609@ciam.ru> Date: Thu, 14 Aug 2003 04:53:48 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ru-RU; rv:1.3) Gecko/20030309 X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: close PR/53615 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 00:53:55 -0000 Please, close PR/53615. It have been aplied in last commit (security/drweb). ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 18:28:17 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4306337B401 for ; Wed, 13 Aug 2003 18:28:17 -0700 (PDT) Received: from mailman.packetdesign.com (dns.packetdesign.com [65.192.41.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9E2443F93 for ; Wed, 13 Aug 2003 18:28:15 -0700 (PDT) (envelope-from casner@acm.org) Received: from acm.org (ash.packetdesign.com [192.168.0.243]) h7E1S6wq078919; Wed, 13 Aug 2003 18:28:12 -0700 (PDT) (envelope-from casner@acm.org) Message-ID: <3F3AE5C5.4050405@acm.org> Date: Wed, 13 Aug 2003 18:28:37 -0700 From: Stephen Casner User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030805 X-Accept-Language: en-us, en MIME-Version: 1.0 To: riggs@rrr.de Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mplayer-0.90.0.110_2 and RealAudio doesn't find linux libm X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 01:28:17 -0000 I have installed the subject mplayer port and the linux-realplayer port on FreeBSD 4.8-RELEASE. Trying to decode a .rm file using the RealAudio encoding results in the error message: Error: Shared object "libm.so.6" not found That file is present in /usr/compat/linux/lib/libm.so.6, but that directory is apparently not in the search path. Adding that directory to LD_LIBRARY_PATH solves the problem, but it seems that might cause some the linux library to be selected by non-linux programs. I tried building mplayer with that directory added to the --with-extralibdir configure argument, but that didn't help (I presume because it's not the mplayer binary that needs to load libm, but rather the sipr.so.6 codec library that needs it, and I'm not sure how mplayer loads codecs that are linux libraries). This question was asked on the mplayer-users list where the answer suggested installing symlinks to the desired files, or to run ldconfig. What is the correct approach? -- Steve From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 18:38:35 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6901837B401 for ; Wed, 13 Aug 2003 18:38:35 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id B789643FCB for ; Wed, 13 Aug 2003 18:38:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 7D29466B9B; Wed, 13 Aug 2003 18:38:34 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 649C77A2; Wed, 13 Aug 2003 18:38:34 -0700 (PDT) Date: Wed, 13 Aug 2003 18:38:34 -0700 From: Kris Kennaway To: Jakob Breivik Grimstveit Message-ID: <20030814013834.GA56464@rot13.obsecurity.org> References: <1060814330.584.19.camel@dune> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <1060814330.584.19.camel@dune> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: sane-backends build fails miserably X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 01:38:35 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Aug 14, 2003 at 12:38:50AM +0200, Jakob Breivik Grimstveit wrote: > Since I got some complaints when running xsane, I tried reinstalling > sane-backends. That fails this way. How do I fix this? Will this port be > fixed soon? Thanks for any help with this. I don't think this is a problem in FreeBSD; getenv() is prototyped in the stdlib.h system header and is present on non-corrupted FreeBSD systems :-) Moreover, the package build is currently succeeding on both 4.x and 5.x. Have you done anything to your system recently that could account for this, such as attempting a system upgrade that may have gone awry and instead partially destroyed your system? :-) Kris --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OugaWry0BWjoQKURAqDjAKDlku9OFOQC7A24zjSo4Q5rxibuswCeKYj0 wvQH1NdzUfAb7RHxGGL0v/Q= =hpth -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 22:14:00 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFC5837B401; Wed, 13 Aug 2003 22:14:00 -0700 (PDT) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4048043F85; Wed, 13 Aug 2003 22:13:59 -0700 (PDT) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 9C1481FFC39; Thu, 14 Aug 2003 07:13:57 +0200 (CEST) Received: by transport.cksoft.de (Postfix, from userid 66) id 66C901FFC44; Thu, 14 Aug 2003 07:13:56 +0200 (CEST) Received: by mail.int.zabbadoz.net (Postfix, from userid 1060) id 6F66B155AB; Thu, 14 Aug 2003 05:04:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.int.zabbadoz.net (Postfix) with ESMTP id 65173155A6; Thu, 14 Aug 2003 05:04:06 +0000 (UTC) Date: Thu, 14 Aug 2003 05:04:06 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@e0-0.zab2.int.zabbadoz.net To: "Ben Hacker Jr.-y" In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020300 cc: "'ports@FreeBSD.org'" cc: "'brian@FreeBSD.org'" Subject: Re: FreeBSD Port: freeradius-0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 05:14:01 -0000 On Wed, 13 Aug 2003, Hacker Jr., Benjamin T. wrote: Hi, > Just wondering when this port might be updated to 0.9.x when someone finds the time to do it. I once started to do this for 0.8.1 and sent a couple of pathces to the freeradius maintainers but none was incoperated. Last time it was a pain doing this and I will see if I can do it in a month again but I won't find the time before. Most important is that libradius has to be renamed to libfreeradius or you will have problems with /usr/lib/libradius. my last patchset should be somewhere on http://sources.zabbadoz.net/freebsd/ports/ or search the archive. -- Greetings Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT 56 69 73 69 74 http://www.zabbadoz.net/ From owner-freebsd-ports@FreeBSD.ORG Wed Aug 13 23:46:24 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC5C637B401 for ; Wed, 13 Aug 2003 23:46:24 -0700 (PDT) Received: from mail.droso.net (koala.droso.net [193.162.142.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E1EF43FCB for ; Wed, 13 Aug 2003 23:46:24 -0700 (PDT) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 2CE8922D91; Thu, 14 Aug 2003 08:46:22 +0200 (CEST) Date: Thu, 14 Aug 2003 08:46:22 +0200 From: Erwin Lansing To: ports@freebsd.org Message-ID: <20030814064621.GA688@droso.net> Mail-Followup-To: ports@freebsd.org References: <3F3ADD9C.2090609@ciam.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mYCpIKhGyMATD0i+" Content-Disposition: inline In-Reply-To: <3F3ADD9C.2090609@ciam.ru> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD/i386 5.1-RELEASE-p2 Subject: Re: close PR/53615 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 06:46:25 -0000 --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 14, 2003 at 04:53:48AM +0400, Sergey Matveychuk wrote: > Please, close PR/53615. > It have been aplied in last commit (security/drweb). >=20 Closed. Thanks for the reminder! -erwin --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| erwin@lansing.dk http://droso.org `-.-' \ )-`( , o o) erwin@FreeBSD.org -bf- `- \`_`"'- --mYCpIKhGyMATD0i+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/OzA9qy9aWxUlaZARAhKXAJ4iIPWk7liGKN+KalITxgM/JR91sgCfeV+f oiIyoGC+/l7y/wfDkRxLLqY= =NezG -----END PGP SIGNATURE----- --mYCpIKhGyMATD0i+-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 00:38:05 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 933A437B401 for ; Thu, 14 Aug 2003 00:38:05 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id E466F43F3F for ; Thu, 14 Aug 2003 00:38:04 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7E7YgmY084169 for ; Thu, 14 Aug 2003 03:34:42 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7E7Ygc1084168 for ports@FreeBSD.org; Thu, 14 Aug 2003 03:34:42 -0400 (EDT) Date: Thu, 14 Aug 2003 03:34:42 -0400 (EDT) From: Kris Kennaway Message-Id: <200308140734.h7E7Ygc1084168@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 07:38:05 -0000 INDEX build failed with errors: make_index: ldapdiff-0.9.0: no entry for /usr/ports/net/openldap20 make_index: ldapdiff-0.9.0: no entry for /usr/ports/net/openldap20 make_index: turba-1.2_1: no entry for /usr/ports/net/openldap21 make_index: turba-1.2_1: no entry for /usr/ports/net/openldap21 make_index: balsa-1.4.4: no entry for /usr/ports/net/openldap20 make_index: balsa-1.4.4: no entry for /usr/ports/net/openldap20 make_index: ruby-ldap-0.8.0: no entry for /usr/ports/net/openldap20 make_index: ruby-ldap-0.8.0: no entry for /usr/ports/net/openldap20 make_index: dirmngr-0.4.5_1: no entry for /usr/ports/net/openldap20 make_index: dirmngr-0.4.5_1: no entry for /usr/ports/net/openldap20 make_index: sendmail-ldap-8.12.9: no entry for /usr/ports/net/openldap20 make_index: sendmail-ldap-8.12.9: no entry for /usr/ports/net/openldap20 make_index: nss_ldap-1.204_1: no entry for /usr/ports/net/openldap20 make_index: nss_ldap-1.204_1: no entry for /usr/ports/net/openldap20 make_index: opensc-0.7.0: no entry for /usr/ports/net/openldap20 make_index: opensc-0.7.0: no entry for /usr/ports/net/openldap20 make_index: gnomemeeting-0.96.1: no entry for /usr/ports/net/openldap20 make_index: gnomemeeting-0.96.1: no entry for /usr/ports/net/openldap20 make_index: auth_ldap-1.6.0_2: no entry for /usr/ports/net/openldap20 make_index: auth_ldap-1.6.0_2: no entry for /usr/ports/net/openldap20 make_index: py23-ldap2-2.0.0pre04: no entry for /usr/ports/net/openldap20 make_index: py23-ldap2-2.0.0pre04: no entry for /usr/ports/net/openldap20 make_index: balsa2-2.0.13_1: no entry for /usr/ports/net/openldap21 make_index: balsa2-2.0.13_1: no entry for /usr/ports/net/openldap21 make_index: pam_ldap-1.6.4: no entry for /usr/ports/net/openldap20 make_index: pam_ldap-1.6.4: no entry for /usr/ports/net/openldap20 make_index: gq-0.6.0: no entry for /usr/ports/net/openldap20 make_index: gq-0.6.0: no entry for /usr/ports/net/openldap20 make_index: exim-ldap2-4.20_4: no entry for /usr/ports/net/openldap20 make_index: exim-ldap2-4.20_4: no entry for /usr/ports/net/openldap20 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log U net/Makefile ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 01:33:15 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 770CC37B401 for ; Thu, 14 Aug 2003 01:33:15 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id C673643F3F for ; Thu, 14 Aug 2003 01:33:14 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7E8TpmY041516 for ; Thu, 14 Aug 2003 04:29:51 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7E8TpoY041515 for ports@FreeBSD.org; Thu, 14 Aug 2003 04:29:51 -0400 (EDT) Date: Thu, 14 Aug 2003 04:29:51 -0400 (EDT) From: Kris Kennaway Message-Id: <200308140829.h7E8TpoY041515@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 08:33:15 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log U x11/zenity/Makefile U x11/zenity/distinfo U x11/zenity/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Mon Aug 11 05:08:54 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED80337B401 for ; Mon, 11 Aug 2003 05:08:54 -0700 (PDT) Received: from x9media.com (mail.x9media.com [62.75.136.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id A805243F75 for ; Mon, 11 Aug 2003 05:08:53 -0700 (PDT) (envelope-from thomas.may@x9media.com) Received: from notebook (unverified [217.231.242.211]) by x9media.com (SurgeMail 1.3i) with ESMTP id 8922 for ; Mon, 11 Aug 2003 14:13:11 -3736800 From: "thomas may" To: Date: Mon, 11 Aug 2003 14:07:49 +0200 Message-ID: <000001c36001$328c11a0$8b01a8c0@notebook> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Server: High Performance Mail Server - http://surgemail.com X-Mailman-Approved-At: Thu, 14 Aug 2003 02:01:21 -0700 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: missing port xmailserver X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Aug 2003 12:08:55 -0000 Hi, iam missing a port for xmailserver. www.xmailserver.org regards thomas From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 02:29:13 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3325437B401 for ; Thu, 14 Aug 2003 02:29:13 -0700 (PDT) Received: from accms33.physik.rwth-aachen.de (accms33.physik.RWTH-Aachen.DE [137.226.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A7243FB1 for ; Thu, 14 Aug 2003 02:29:12 -0700 (PDT) (envelope-from kuku@accms33.physik.rwth-aachen.de) Received: (from kuku@localhost) by accms33.physik.rwth-aachen.de (8.11.6/8.9.3) id h7E9TAn11836 for freebsd-ports@freebsd.org; Thu, 14 Aug 2003 11:29:10 +0200 Date: Thu, 14 Aug 2003 11:29:10 +0200 From: Christoph Kukulies Message-Id: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> To: freebsd-ports@freebsd.org Subject: kde3 port broken in -current? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 09:29:13 -0000 After quite a while of compilation the kde3 port build bails out with l/lib -Wl,-rpath,/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/lib -L/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/lib -L/usr/X11R6/lib -L/usr/X11R6/lib -lqt-mt -lmng -ljpeg -lpng -lz -lGLU -lGL -lXmu -lXrender -lXinerama -lXft -lfreetype -lfontconfig -lXext -lX11 -lm -lSM -lICE /usr/X11R6/lib/libfontconfig.so: undefined reference to `FT_Get_BDF_Property' gmake[3]: *** [../../../bin/uic] Error 1 gmake[3]: Leaving directory `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools/designer/uic' gmake[2]: *** [sub-uic] Error 2 gmake[2]: Leaving directory `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools/designer' gmake[1]: *** [sub-designer] Error 2 gmake[1]: Leaving directory `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools' gmake: *** [sub-tools] Error 2 *** Error code 2 Stop in /home/ports/x11-toolkits/qt31. *** Error code 1 Stop in /home/ports/x11/kde3. Anyone else seen this or knows a fix? I would like to install a full fledged KDE environment on my notebook and for another user. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 02:36:15 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DACE37B401 for ; Thu, 14 Aug 2003 02:36:15 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52A2343FBD for ; Thu, 14 Aug 2003 02:36:14 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7E9WomY098771 for ; Thu, 14 Aug 2003 05:32:50 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7E9WoXY098770 for ports@FreeBSD.org; Thu, 14 Aug 2003 05:32:50 -0400 (EDT) Date: Thu, 14 Aug 2003 05:32:50 -0400 (EDT) From: Kris Kennaway Message-Id: <200308140932.h7E9WoXY098770@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 09:36:15 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U Mk/bsd.sites.mk U audio/p5-CDDB/Makefile U audio/p5-CDDB/distinfo U audio/p5-CDDB/pkg-descr U audio/p5-CDDB/pkg-plist ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U security/drweb-qmail/Makefile U security/drweb-qmail/distinfo ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 02:46:35 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF96A37B401 for ; Thu, 14 Aug 2003 02:46:35 -0700 (PDT) Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.168.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id B336C43FCB for ; Thu, 14 Aug 2003 02:46:34 -0700 (PDT) (envelope-from ernst@zaphod.euronet.nl) Received: from zaphod.euronet.nl (localhost [127.0.0.1]) by zaphod.euronet.nl (8.12.9/8.12.9) with ESMTP id h7E9khAf014380; Thu, 14 Aug 2003 11:46:43 +0200 (CEST) (envelope-from ernst@zaphod.euronet.nl) Received: from localhost (localhost [[UNIX: localhost]]) by zaphod.euronet.nl (8.12.9/8.12.9/Submit) id h7E9kgqV014379; Thu, 14 Aug 2003 11:46:42 +0200 (CEST) From: Ernst de Haan Organization: Wanadoo Nederland B.V. To: Christoph Kukulies , freebsd-ports@freebsd.org Date: Thu, 14 Aug 2003 11:46:42 +0200 User-Agent: KMail/1.5.2 References: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> In-Reply-To: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308141146.42693.ernst.dehaan@nl.wanadoo.com> Subject: Re: kde3 port broken in -current? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 09:46:36 -0000 KDE 3 works for me on my FreeBSD 5.1-RELEASE. Have you installed Xft? Looks like it can't find the Xft libs. What version of XFree86 are you using? Ernst On Thursday 14 August 2003 11:29, Christoph Kukulies wrote: > After quite a while of compilation the kde3 port build bails out with > l/lib > -Wl,-rpath,/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/lib > -L/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/lib > -L/usr/X11R6/lib -L/usr/X11R6/lib -lqt-mt -lmng -ljpeg -lpng -lz -lGLU > -lGL -lXmu -lXrender -lXinerama -lXft -lfreetype -lfontconfig -lXext > -lX11 -lm -lSM -lICE /usr/X11R6/lib/libfontconfig.so: undefined reference > to `FT_Get_BDF_Property' gmake[3]: *** [../../../bin/uic] Error 1 > gmake[3]: Leaving directory > `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools/designer/uic' > gmake[2]: *** [sub-uic] Error 2 > gmake[2]: Leaving directory > `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools/designer' > gmake[1]: *** [sub-designer] Error 2 > gmake[1]: Leaving directory > `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools' gmake: *** > [sub-tools] Error 2 > *** Error code 2 > > Stop in /home/ports/x11-toolkits/qt31. > *** Error code 1 > > Stop in /home/ports/x11/kde3. > > Anyone else seen this or knows a fix? I would like to > install a full fledged KDE environment on my notebook and > for another user. > > > -- > Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 03:13:20 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D77B37B401 for ; Thu, 14 Aug 2003 03:13:20 -0700 (PDT) Received: from accms33.physik.rwth-aachen.de (accms33.physik.RWTH-Aachen.DE [137.226.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B5D043F85 for ; Thu, 14 Aug 2003 03:13:19 -0700 (PDT) (envelope-from kuku@accms33.physik.rwth-aachen.de) Received: (from kuku@localhost) by accms33.physik.rwth-aachen.de (8.11.6/8.9.3) id h7EADFj12464; Thu, 14 Aug 2003 12:13:15 +0200 Date: Thu, 14 Aug 2003 12:13:15 +0200 From: "Christoph P. Kukulies" To: Ernst de Haan Message-ID: <20030814101315.GA12396@gilberto.physik.rwth-aachen.de> References: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> <200308141146.42693.ernst.dehaan@nl.wanadoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200308141146.42693.ernst.dehaan@nl.wanadoo.com> User-Agent: Mutt/1.4i cc: Christoph Kukulies cc: freebsd-ports@freebsd.org Subject: Re: kde3 port broken in -current? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 10:13:20 -0000 On Thu, Aug 14, 2003 at 11:46:42AM +0200, Ernst de Haan wrote: > KDE 3 works for me on my FreeBSD 5.1-RELEASE. Have you installed Xft? Looks > like it can't find the Xft libs. What version of XFree86 are you using? XFree86-4.3.1 (directly compiled from the xfree86-tarballs). Maybe I caught a newer Xft this way? > > `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools/designer' > > gmake[1]: *** [sub-designer] Error 2 > > gmake[1]: Leaving directory > > `/home/ports/x11-toolkits/qt31/work/qt-x11-free-3.1.2/tools' gmake: *** > > [sub-tools] Error 2 > > *** Error code 2 > > > > Stop in /home/ports/x11-toolkits/qt31. > > *** Error code 1 > > > > Stop in /home/ports/x11/kde3. > > > > Anyone else seen this or knows a fix? I would like to > > install a full fledged KDE environment on my notebook and > > for another user. > > > > -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 03:33:19 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F38CF37B401 for ; Thu, 14 Aug 2003 03:33:18 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 545EB43F85 for ; Thu, 14 Aug 2003 03:33:18 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EATsmY056128 for ; Thu, 14 Aug 2003 06:29:54 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EATs2K056127 for ports@FreeBSD.org; Thu, 14 Aug 2003 06:29:54 -0400 (EDT) Date: Thu, 14 Aug 2003 06:29:54 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141029.h7EATs2K056127@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 10:33:19 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 03:37:01 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17A6437B401 for ; Thu, 14 Aug 2003 03:37:01 -0700 (PDT) Received: from accms33.physik.rwth-aachen.de (accms33.physik.RWTH-Aachen.DE [137.226.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2DC543FA3 for ; Thu, 14 Aug 2003 03:36:59 -0700 (PDT) (envelope-from kuku@accms33.physik.rwth-aachen.de) Received: (from kuku@localhost) by accms33.physik.rwth-aachen.de (8.11.6/8.9.3) id h7EAauV12885; Thu, 14 Aug 2003 12:36:56 +0200 Date: Thu, 14 Aug 2003 12:36:56 +0200 From: "Christoph P. Kukulies" To: Ernst de Haan Message-ID: <20030814103656.GA12870@gilberto.physik.rwth-aachen.de> References: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> <200308141146.42693.ernst.dehaan@nl.wanadoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200308141146.42693.ernst.dehaan@nl.wanadoo.com> User-Agent: Mutt/1.4i cc: Christoph Kukulies cc: freebsd-ports@freebsd.org Subject: Re: kde3 port broken in -current? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 10:37:01 -0000 On Thu, Aug 14, 2003 at 11:46:42AM +0200, Ernst de Haan wrote: > KDE 3 works for me on my FreeBSD 5.1-RELEASE. Have you installed Xft? Looks > like it can't find the Xft libs. What version of XFree86 are you using? > > Ernst I tried to re-install Xft 2.1.2 from the ports but goto told that is was already installed. I assume it got installed as a package through previous installs. -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 03:50:09 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A787837B401 for ; Thu, 14 Aug 2003 03:50:09 -0700 (PDT) Received: from accms33.physik.rwth-aachen.de (accms33.physik.RWTH-Aachen.DE [137.226.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62F7E43FD7 for ; Thu, 14 Aug 2003 03:50:08 -0700 (PDT) (envelope-from kuku@accms33.physik.rwth-aachen.de) Received: (from kuku@localhost) by accms33.physik.rwth-aachen.de (8.11.6/8.9.3) id h7EAo3C12969; Thu, 14 Aug 2003 12:50:03 +0200 Date: Thu, 14 Aug 2003 12:50:03 +0200 From: "Christoph P. Kukulies" To: "Christoph P. Kukulies" Message-ID: <20030814105003.GA12952@gilberto.physik.rwth-aachen.de> References: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> <200308141146.42693.ernst.dehaan@nl.wanadoo.com> <20030814103656.GA12870@gilberto.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030814103656.GA12870@gilberto.physik.rwth-aachen.de> User-Agent: Mutt/1.4i cc: Ernst de Haan cc: freebsd-ports@freebsd.org Subject: Re: kde3 port broken in -current? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 10:50:10 -0000 On Thu, Aug 14, 2003 at 12:36:56PM +0200, Christoph P. Kukulies wrote: > On Thu, Aug 14, 2003 at 11:46:42AM +0200, Ernst de Haan wrote: > > KDE 3 works for me on my FreeBSD 5.1-RELEASE. Have you installed Xft? Looks > > like it can't find the Xft libs. What version of XFree86 are you using? > > > > Ernst > > I tried to re-install Xft 2.1.2 from the ports but goto told > that is was already installed. I assume it got installed as a > package through previous installs. I did a make install in the X11 tree..libfontconfig directory and the missing symbol was gone. Could that have happenend through an intermediate 'make install' in /usr/ports/x11/XFree86-4 ? -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 04:33:17 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55D6337B401 for ; Thu, 14 Aug 2003 04:33:17 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F1FB43F75 for ; Thu, 14 Aug 2003 04:33:16 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EBTpmY013488 for ; Thu, 14 Aug 2003 07:29:51 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EBTpVr013487 for ports@FreeBSD.org; Thu, 14 Aug 2003 07:29:51 -0400 (EDT) Date: Thu, 14 Aug 2003 07:29:51 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141129.h7EBTpVr013487@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 11:33:18 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log U mail/exim/Makefile U mail/exim/distinfo ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U security/cyrus-sasl2-saslauthd/Makefile U sysutils/duplicity/files/patch-librsyncmodule.c U sysutils/rdiff-backup/Makefile U sysutils/rdiff-backup/distinfo ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 05:33:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8F9937B401 for ; Thu, 14 Aug 2003 05:33:16 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4924E43FA3 for ; Thu, 14 Aug 2003 05:33:16 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7ECTpmY070731 for ; Thu, 14 Aug 2003 08:29:51 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7ECTpqv070730 for ports@FreeBSD.org; Thu, 14 Aug 2003 08:29:51 -0400 (EDT) Date: Thu, 14 Aug 2003 08:29:51 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141229.h7ECTpqv070730@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 12:33:17 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 06:05:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11F9037B401; Thu, 14 Aug 2003 06:05:50 -0700 (PDT) Received: from accms33.physik.rwth-aachen.de (accms33.physik.RWTH-Aachen.DE [137.226.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ABC243FBF; Thu, 14 Aug 2003 06:05:48 -0700 (PDT) (envelope-from kuku@accms33.physik.rwth-aachen.de) Received: (from kuku@localhost) by accms33.physik.rwth-aachen.de (8.11.6/8.9.3) id h7ED5lJ15042; Thu, 14 Aug 2003 15:05:47 +0200 Date: Thu, 14 Aug 2003 15:05:47 +0200 From: Christoph Kukulies Message-Id: <200308141305.h7ED5lJ15042@accms33.physik.rwth-aachen.de> To: freebsd-ports@freebsd.org cc: kde@freebsd.org Subject: kde3 under -current X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 13:05:50 -0000 I'm not quite through with the compilation of kde3 under -current. After hetting over the last hurd (Xft) compilation stops now in checking if STL implementation is SGI like... no checking if STL implementation is HP like... no configure: error: "no known STL type found - did you forget to install libstdc++-devel ?" ===> Script "configure" failed unexpectedly. Please report the problem to kde@FreeBSD.org [maintainer] and attach the "/home/ports/audio/arts/work/arts-1.1.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /home/ports/audio/arts. *** Error code 1 Stop in /home/ports/x11/kdelibs3. *** Error code 1 Stop in /home/ports/x11/kdebase3. *** Error code 1 Stop in /home/ports/x11/kde3. ls /var/db/pkg Mesa-3.4.2_2 imake-4.2.0_1 ORBit-0.5.17 jpeg-6b_1 XFree86-4.2.0_1,1 lcms-1.09,1 XFree86-4.3.0,1 libaudiofile-0.2.3 XFree86-FontServer-4.2.0_1 libgnugetopt-1.2 XFree86-Server-4.2.1_6 libiconv-1.8_2 XFree86-clients-4.2.1_2 libmng-1.0.5 XFree86-documents-4.2.0 libtool-1.3.4_4 XFree86-font100dpi-4.2.0 linux_base-6.1_5 XFree86-font75dpi-4.2.0 m4-1.4_1 XFree86-fontCyrillic-4.2.0_4 mozilla-1.4,2 XFree86-fontDefaultBitmaps-4.2.0 mozilla-1.4b,1 XFree86-fontEncodings-4.2.0 mpack-1.5_2 XFree86-fontScalable-4.2.0 nmap-3.27 XFree86-libraries-4.2.1_5 nmapfe-3.27 Xft-2.1.2 perl-5.6.1_11 autoconf-2.53_1 pkgconfig-0.15.0 autoconf213-2.13.000227_5 png-1.2.5_2 automake14-1.4.5_9 popt-1.6.4 cups-base-1.1.18.0_5 qt-3.1.2 cvsup-16.1f rpm-3.0.6_6 esound-0.2.29 ruby-1.6.8.2003.04.19 expat-1.95.5 ruby-shim-ruby18-1.8.0.p2.2003.04.19 ezm3-1.0 samba-2.2.8a fontconfig-2.2.0 tiff-3.5.7 freetype2-2.1.2_1 unzip-5.50 gettext-0.11.5_1 wrapper-1.0_2 glib-1.2.10_9 x11amp-0.9.b1.1 gmake-3.80 xbattbar-1.4.2_2 gtk-1.2.10_9 xmix-2.1 help2man-1.29 zip-2.3_1 -- Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 06:16:37 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E54F37B405; Thu, 14 Aug 2003 06:16:37 -0700 (PDT) Received: from hex.athame.co.uk (guru164.netsonic.fi [194.29.193.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26FE843FAF; Thu, 14 Aug 2003 06:16:35 -0700 (PDT) (envelope-from andy@athame.co.uk) Received: from hex.int.athame.co.uk ([192.168.1.1] helo=localhost.localdomain) by hex.athame.co.uk with esmtp (Exim 4.20) id 19nHxt-000KWn-HM; Thu, 14 Aug 2003 16:16:29 +0300 From: Andy Fawcett To: Christoph Kukulies , freebsd-ports@freebsd.org Date: Thu, 14 Aug 2003 16:14:21 +0300 User-Agent: KMail/1.5.3 References: <200308141305.h7ED5lJ15042@accms33.physik.rwth-aachen.de> In-Reply-To: <200308141305.h7ED5lJ15042@accms33.physik.rwth-aachen.de> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308141614.21203.andy@athame.co.uk> cc: kde@freebsd.org Subject: Re: [kde-freebsd] kde3 under -current X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 13:16:37 -0000 On Thursday 14 August 2003 16:05, Christoph Kukulies wrote: > I'm not quite through with the compilation of kde3 under -current. > > After hetting over the last hurd (Xft) compilation stops now in > > checking if STL implementation is SGI like... no > checking if STL implementation is HP like... no > configure: error: "no known STL type found - did you forget to > install libstdc++-devel ?" ===> Script "configure" failed > unexpectedly. > Please report the problem to kde@FreeBSD.org [maintainer] and > attach the "/home/ports/audio/arts/work/arts-1.1.2/config.log" ^^^^^^^^^^ Update your ports tree, these problems were fixed with KDE 3.1.3, which includes arts 1.1.3 A. -- Andy Fawcett | andy@athame.co.uk | tap@kde.org "In an open world without walls and fences, | tap@lspace.org we wouldn't need Windows and Gates." -- anon | tap@fruitsalad.org From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 06:33:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC17B37B401 for ; Thu, 14 Aug 2003 06:33:16 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 058FA43F85 for ; Thu, 14 Aug 2003 06:33:16 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EDTomY028091 for ; Thu, 14 Aug 2003 09:29:50 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EDTotT028090 for ports@FreeBSD.org; Thu, 14 Aug 2003 09:29:50 -0400 (EDT) Date: Thu, 14 Aug 2003 09:29:50 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141329.h7EDTotT028090@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 13:33:17 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.21: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U graphics/metapixel/Makefile ? mail/log U mail/exim/Makefile U mail/exim/distinfo U mail/exim/pkg-plist U mail/exim/files/patch-OS::Makefile-FreeBSD ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U net/pptpclient/Makefile U net/pptpclient/distinfo U net/pptpclient/files/patch-aa U net/proxy-suite/Makefile U net/proxy-suite/distinfo U net/proxy-suite/pkg-descr ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 07:33:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 308D737B401 for ; Thu, 14 Aug 2003 07:33:26 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7792143F3F for ; Thu, 14 Aug 2003 07:33:25 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EETsmY085334 for ; Thu, 14 Aug 2003 10:29:54 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EETsmS085333 for ports@FreeBSD.org; Thu, 14 Aug 2003 10:29:54 -0400 (EDT) Date: Thu, 14 Aug 2003 10:29:54 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141429.h7EETsmS085333@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 14:33:26 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.21: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 08:30:07 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 646C537B401 for ; Thu, 14 Aug 2003 08:30:07 -0700 (PDT) Received: from wuytack.demon.co.uk (wuytack.demon.co.uk [80.177.111.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id C012143FCB for ; Thu, 14 Aug 2003 08:30:05 -0700 (PDT) (envelope-from filip@wuytack.net) Received: (qmail 46892 invoked by uid 89); 14 Aug 2003 15:18:40 -0000 Received: from unknown (HELO www.wuytack.net) (127.0.0.1) by localhost with SMTP; 14 Aug 2003 15:18:40 -0000 Received: from 217.154.72.154 (SquirrelMail authenticated user filip@wuytack.net) by www.wuytack.net with HTTP; Thu, 14 Aug 2003 16:18:40 +0100 (BST) Message-ID: <52707.217.154.72.154.1060874320.squirrel@www.wuytack.net> Date: Thu, 14 Aug 2003 16:18:40 +0100 (BST) From: filip@wuytack.net To: ache@FreeBSD.org User-Agent: SquirrelMail/1.4.0 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 Importance: Normal cc: ports@FreeBSD.org Subject: FreeBSD Port: mnogosearch-3.1.20_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 15:30:07 -0000 Hi, How can install mnogosearch (with mysql) on a freebsd 4.8 box with apache2 installed? When I install this port, it keeps on trying to install apache 1.3? Best regards, Filip PS. Any idea when 3.2.xx branch of mnogosearch will be available through the port system? From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 08:33:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FDC937B404 for ; Thu, 14 Aug 2003 08:33:23 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6398B43FAF for ; Thu, 14 Aug 2003 08:33:22 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EFTtmY042694 for ; Thu, 14 Aug 2003 11:29:55 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EFTttL042693 for ports@FreeBSD.org; Thu, 14 Aug 2003 11:29:55 -0400 (EDT) Date: Thu, 14 Aug 2003 11:29:55 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141529.h7EFTttL042693@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 15:33:23 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U audio/ruby-smf/Makefile U audio/ruby-smf/distinfo U devel/apache-ant/Makefile U devel/apache-ant/distinfo U devel/apache-ant/pkg-plist U devel/hs-buddha/Makefile U devel/hs-buddha/distinfo U devel/hs-buddha/pkg-plist U devel/msp430-gcc/Makefile U devel/msp430-gcc/distinfo U devel/msp430-gcc/pkg-plist U devel/ruby-date2/Makefile U devel/ruby-date2/distinfo U devel/ruby-rbtree/Makefile U devel/ruby-rbtree/distinfo U games/xpenguins/Makefile U games/xpenguins/distinfo U games/xpenguins/pkg-plist ? mail/log U mail/exim/Makefile U mail/exim/distinfo U mail/exim/pkg-plist U mail/exim/files/patch-OS::Makefile-FreeBSD U mail/exim/files/patch-src::host.c U math/ruby-math3d/Makefile ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/etcmerge/Makefile U sysutils/etcmerge/src/etcmerge.sh U www/ruby-webrick/Makefile U www/ruby-webrick/distinfo U www/ruby-webrick/pkg-plist ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 09:04:58 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 666D137B401; Thu, 14 Aug 2003 09:04:58 -0700 (PDT) Received: from depot.depot.axxiscorp.com (ip-64-32-234-4.dsl.iad.megapath.net [64.32.234.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id A81C943F3F; Thu, 14 Aug 2003 09:04:56 -0700 (PDT) (envelope-from RJV@WEBLINKMO.COM) MIME-Version: 1.0 Date: Thu, 14 Aug 2003 11:04:54 -0500 Message-ID: <5EEBE9C3C61D1142994C6B620C51E84707A0D0@ip-64-32-234-4.dsl.iad.megapath.net> X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: FreeBSD Port: smbfs-1.4.1 Thread-Index: AcNifJRnbAnuKPIbRmeVanz0uyoOSA== From: "Richard J. Valenta" To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: smbfs-1.4.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 16:04:58 -0000 I have been able to mount windows shares flawlessly with mount_smbfs on i386 machines, but the same commands to the same win2k servers seem to have problems under alpha (5.0release and 5.0current) - do you know what might cause this, and/or ideas on how i can repair it? This is the error: skunkworx# mount_smbfs -I 24.32.34.14 //backup@web1/www /archive/backup Password: mount_smbfs: unable to open connection: syserr =3D Connection reset by peer skunkworx#=20 Thanks for the help. Richard J. Valenta Note: The information contained in this e-mail message, including any attachments, is legally privileged and confidential. If you are not the intended recipient, you are hereby notified that any reading, use or dissemination of this message is strictly prohibited. If you have received this message in error, please immediately, notify us by telephone at 314/966.9993 and delete this message from your system. This message is NOT or NOLONGER ENCRYPTED -----BEGIN PGP SIGNATURE----- iQA/AwUBPxB11XHywJHFtakmEQLR7QCePuVbfTACQLrLVaN2aHVqHtJJHOIAoJP3 lSDDPwENBV3deRd/CMhMq2+N =3DxnNu -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 09:28:02 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96FF837B404 for ; Thu, 14 Aug 2003 09:28:02 -0700 (PDT) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3581543F75 for ; Thu, 14 Aug 2003 09:27:59 -0700 (PDT) (envelope-from riggs@o503.hadiko.de) Received: from o503.hadiko.de (hadio503.hadiko.uni-karlsruhe.de [172.20.45.138]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 19nKx9-0005hA-00; Thu, 14 Aug 2003 18:27:55 +0200 Received: from o503.hadiko.de (RIXT@localhost [127.0.0.1]) by o503.hadiko.de (8.12.9/8.12.9) with ESMTP id h7EGRtsI009818; Thu, 14 Aug 2003 18:27:55 +0200 (CEST) (envelope-from riggs@o503.hadiko.de) Received: (from riggs@localhost) by o503.hadiko.de (8.12.9/8.12.9/Submit) id h7EGRtHC009817; Thu, 14 Aug 2003 18:27:55 +0200 (CEST) (envelope-from riggs) Date: Thu, 14 Aug 2003 18:27:55 +0200 From: "Thomas E. Zander" To: Stephen Casner Message-ID: <20030814162755.GC9430@o503.hadiko.de> References: <3F3AE5C5.4050405@acm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wac7ysb48OaltWcw" Content-Disposition: inline In-Reply-To: <3F3AE5C5.4050405@acm.org> Organization: RiggiServ - Ihr Partner =?iso-8859-15?Q?f?= =?iso-8859-15?Q?=FCr?= alles Delikate X-PGP-KeyID: 0xC85996CD X-PGP-Fingerprint: 4F59 75B4 4CE3 3B00 BC61 5400 8DD4 8929 C859 96CD X-Mailer: Riggisoft Ausguck Eggsbress (Build 1060877198) X-Operating-System: Riggiland BSD 5.1-RELEASE-p2 (To serve and protect.) cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mplayer-0.90.0.110_2 and RealAudio doesn't find linux libm X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 16:28:02 -0000 --wac7ysb48OaltWcw Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, 13. Aug 2003, at 18:28 -0700, Stephen Casner wrote according to [FreeBSD Port: mplayer-0.90.0.110_2 and RealAudio doesn't find= linux libm]: > I have installed the subject mplayer port and the linux-realplayer port= =20 > on FreeBSD 4.8-RELEASE. Trying to decode a .rm file using the RealAudio= =20 > encoding results in the error message: >=20 > Error: Shared object "libm.so.6" not found >=20 > That file is present in /usr/compat/linux/lib/libm.so.6, but that=20 > directory is apparently not in the search path. Adding that directory=20 > to LD_LIBRARY_PATH solves the problem, but it seems that might cause=20 > some the linux library to be selected by non-linux programs. Yes, it's actually no good idea to permanently add the compat libdirs to your LD_LIBRARY_PATH, you must not try to mix linux and BSD libraries, unless you write a wrapper for these situation like the flashplugin in FreeBSD mozilla. > This question was asked on the mplayer-users list where the answer=20 > suggested installing symlinks to the desired files, or to run ldconfig.= =20 Hmm...ldconfig is just evil. If you add the linux compatibility libs to the ldconfig path for your BSD build environment, you would again break binary consistency. I suppose symlinks don't hurt too bad if done correctly, but personally I don't like it here. I'd suggest the following: If adding /usr/compat/linux/lib to LD_LIBRARY_PATH solves the problem for you but you don't want to define it for your entire environment, why not just put in something like alias mplayer env LD_LIBRARY_PATH=3D/usr/compat/linux/lib mplayer in your shell startup file? Riggs --=20 - "[...] I talked to the computer at great length and -- explained my view of the Universe to it" said Marvin. --- And what happened?" pressed Ford. ---- "It committed suicide." said Marvin. --wac7ysb48OaltWcw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE/O7iLjdSJKchZls0RAsORAJ4zg5Ygu980Yf3Uzgmfuzc+Q6zj6QCeMDBg LQ0seLLhSiv9qBcyGdRv/CY= =uJDM -----END PGP SIGNATURE----- --wac7ysb48OaltWcw-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 09:40:05 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28EC537B401 for ; Thu, 14 Aug 2003 09:40:05 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B0DC43FE0 for ; Thu, 14 Aug 2003 09:40:03 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EGaamY099957 for ; Thu, 14 Aug 2003 12:36:36 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EGaZiQ099956 for ports@FreeBSD.org; Thu, 14 Aug 2003 12:36:35 -0400 (EDT) Date: Thu, 14 Aug 2003 12:36:35 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141636.h7EGaZiQ099956@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 16:40:05 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 10:00:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5121437B401 for ; Thu, 14 Aug 2003 10:00:23 -0700 (PDT) Received: from graf.pompo.net (lns-th2-2f-81-56-186-139.adsl.proxad.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 675AB43F75 for ; Thu, 14 Aug 2003 10:00:20 -0700 (PDT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id ED0CC752C; Thu, 14 Aug 2003 18:59:28 +0200 (CEST) Date: Thu, 14 Aug 2003 18:59:28 +0200 From: Thierry Thomas To: ports@FreeBSD.org Message-ID: <20030814165928.GA14159@graf.pompo.net> Mail-Followup-To: ports@FreeBSD.org References: <200308141636.h7EGaZiQ099956@8ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200308141636.h7EGaZiQ099956@8ball.rtp.freebsd.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.8-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 17:00:23 -0000 Le Jeu 14 aoû 03 à 18:36:35 +0200, Kris Kennaway écrivait : > INDEX build failed with errors: > balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete > balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete etc. net/openldap* have been splited into server and client, but this update has not been followed in the ports using them. -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 10:00:36 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77E3337B425 for ; Thu, 14 Aug 2003 10:00:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E63543F75 for ; Thu, 14 Aug 2003 10:00:36 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EH0ZUp033940 for ; Thu, 14 Aug 2003 10:00:35 -0700 (PDT) (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h7EH0ZvG033939 for ports@freebsd.org; Thu, 14 Aug 2003 10:00:35 -0700 (PDT) Date: Thu, 14 Aug 2003 10:00:35 -0700 (PDT) From: Bill Fenner Message-Id: <200308141700.h7EH0ZvG033939@freefall.freebsd.org> To: ports@freebsd.org Subject: Possibly unbuildable ports reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 17:00:36 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://bento.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 10:37:12 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4153A37B401 for ; Thu, 14 Aug 2003 10:37:12 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 949DF43FBF for ; Thu, 14 Aug 2003 10:37:11 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EHXcmY057314 for ; Thu, 14 Aug 2003 13:33:38 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EHXcIH057313 for ports@FreeBSD.org; Thu, 14 Aug 2003 13:33:38 -0400 (EDT) Date: Thu, 14 Aug 2003 13:33:38 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141733.h7EHXcIH057313@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 17:37:12 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.20_4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 11:36:12 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE9BB37B404 for ; Thu, 14 Aug 2003 11:36:12 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00C6743FE0 for ; Thu, 14 Aug 2003 11:36:12 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EIWhmY014668 for ; Thu, 14 Aug 2003 14:32:43 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EIWhGT014667 for ports@FreeBSD.org; Thu, 14 Aug 2003 14:32:43 -0400 (EDT) Date: Thu, 14 Aug 2003 14:32:43 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141832.h7EIWhGT014667@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 18:36:13 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U games/freebsd-games/Makefile U games/freebsd-games/pkg-plist U games/freebsd-games/files/Makefile U java/linux-sun-jdk13/Makefile U java/linux-sun-jdk13/distinfo ? mail/log U mail/exim/Makefile U mail/exim/distinfo U mail/exim/pkg-plist U mail/exim/files/patch-OS::Makefile-FreeBSD U mail/exim/files/patch-src::os.c ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U net/proxy-suite/Makefile U textproc/intltool/Makefile U textproc/intltool/distinfo ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 11:45:22 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DCF237B404 for ; Thu, 14 Aug 2003 11:45:22 -0700 (PDT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E9BE43FBD for ; Thu, 14 Aug 2003 11:45:21 -0700 (PDT) (envelope-from kutulu@kutulu.org) Received: by basement.kutulu.org (Postfix, from userid 1001) id 9738EA963; Thu, 14 Aug 2003 14:45:34 -0400 (EDT) Date: Thu, 14 Aug 2003 14:45:34 -0400 From: Michael Edenfield To: "Christoph P. Kukulies" Message-ID: <20030814184534.GA92414@basement.kutulu.org> Mail-Followup-To: "Christoph P. Kukulies" , Ernst de Haan , freebsd-ports@freebsd.org References: <200308140929.h7E9TAn11836@accms33.physik.rwth-aachen.de> <200308141146.42693.ernst.dehaan@nl.wanadoo.com> <20030814103656.GA12870@gilberto.physik.rwth-aachen.de> <20030814105003.GA12952@gilberto.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline In-Reply-To: <20030814105003.GA12952@gilberto.physik.rwth-aachen.de> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.4i cc: Ernst de Haan cc: freebsd-ports@freebsd.org Subject: Re: kde3 port broken in -current? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 18:45:22 -0000 --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Christoph P. Kukulies [030814 06:50]: > On Thu, Aug 14, 2003 at 12:36:56PM +0200, Christoph P. Kukulies wrote: > > On Thu, Aug 14, 2003 at 11:46:42AM +0200, Ernst de Haan wrote: > > > KDE 3 works for me on my FreeBSD 5.1-RELEASE. Have you installed Xft?= Looks=20 > > > like it can't find the Xft libs. What version of XFree86 are you usin= g? > > >=20 > > > Ernst > >=20 > > I tried to re-install Xft 2.1.2 from the ports but goto told > > that is was already installed. I assume it got installed as a > > package through previous installs. >=20 > I did a make install in the X11 tree..libfontconfig directory > and the missing symbol was gone. Could that have happenend > through an intermediate 'make install' in /usr/ports/x11/XFree86-4 ? There was a problem several months back that caused this if you=20 upgraded the XFree86 ports. I beleive the problem is that certain=20 files were contained in the package lists for multiple ports and/or=20 that Xft was broken out into a seperate port. You can probably find=20 more (accurate) details searching the ports@ archives. The problem, as I recall, was basically that portupgrade would remove=20 files (they were in the old pkg-plist) and never reinstall them (they=20 weren't in the new pkg-plist). The easiest solution is to 'make=20 deinstall ; make reinstall' in the Xft port. --Mike --x+6KMIRAuhnl3hBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/O9jNCczNhKRsh48RAnpFAJ0V3T3z2jCHit1VCcoESDfsSzKeMQCgqlLT AjdR9yDjCrCJmPF9DMyO0Fo= =yBOd -----END PGP SIGNATURE----- --x+6KMIRAuhnl3hBn-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 11:51:10 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 632CC37B401 for ; Thu, 14 Aug 2003 11:51:10 -0700 (PDT) Received: from web40807.mail.yahoo.com (web40807.mail.yahoo.com [66.218.78.184]) by mx1.FreeBSD.org (Postfix) with SMTP id 19E4043F75 for ; Thu, 14 Aug 2003 11:51:10 -0700 (PDT) (envelope-from luguotao@yahoo.com) Message-ID: <20030814185110.34184.qmail@web40807.mail.yahoo.com> Received: from [216.145.58.81] by web40807.mail.yahoo.com via HTTP; Thu, 14 Aug 2003 11:51:10 PDT Date: Thu, 14 Aug 2003 11:51:10 -0700 (PDT) From: Guotao Lu To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: package requirement for zh-cxterm-5.0.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: glu@yahoo-inc.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 18:51:10 -0000 hi there, i tried to install ports/zh-cxterm-5.0.3. the webpage www.freebsd.org/ports/chinese.html says that it requires Xft-2.1.2, but when i tried to install it, it complains that it can not find Xft-2.1_8, whereas only Xft-2.1_7 is available. could you please check it out? thanks -guotao __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 12:36:06 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC76537B401 for ; Thu, 14 Aug 2003 12:36:05 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BC9143F75 for ; Thu, 14 Aug 2003 12:36:05 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EJWamY071911 for ; Thu, 14 Aug 2003 15:32:36 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EJWa8a071910 for ports@FreeBSD.org; Thu, 14 Aug 2003 15:32:36 -0400 (EDT) Date: Thu, 14 Aug 2003 15:32:36 -0400 (EDT) From: Kris Kennaway Message-Id: <200308141932.h7EJWa8a071910@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 19:36:06 -0000 INDEX build failed with errors: balsa-1.4.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete balsa2-2.0.13_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete sendmail-ldap-8.12.9: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ldapdiff-0.9.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete py23-ldap2-2.0.0pre04: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete pam_ldap-1.6.4: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete auth_ldap-1.6.0_2: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U games/moria/files/patch-source::types.h ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 12:36:47 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43DE237B401 for ; Thu, 14 Aug 2003 12:36:47 -0700 (PDT) Received: from remt19.cluster1.charter.net (remt19.cluster1.charter.net [209.225.8.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id A053043FD7 for ; Thu, 14 Aug 2003 12:36:46 -0700 (PDT) (envelope-from cableboy@charter.net) Received: from [68.186.32.151] (HELO zoom) by remt19.cluster1.charter.net (CommuniGate Pro SMTP 4.0.6) with ESMTP id 122990434 for freebsd-ports@FreeBSD.ORG; Thu, 14 Aug 2003 15:36:45 -0400 From: "Remington L." To: Date: Thu, 14 Aug 2003 12:36:25 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5507 Thread-Index: AcNim1hg8jBVuereRmGO/NX4lY+AMA== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: Subject: Submission Problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 19:36:47 -0000 I am currently trying to get a new port into PR but I seem to be having problems. I am using FreeBSD Port Tools 0.25(pr-new) to submit it but I don't see my port here: http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports I submitted it on 8/14. Is there any other way to get it in there? From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 13:33:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3CBA37B401 for ; Thu, 14 Aug 2003 13:33:23 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id D217F43FE3 for ; Thu, 14 Aug 2003 13:33:22 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EKTrmY029268 for ; Thu, 14 Aug 2003 16:29:53 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EKTrN3029267 for ports@FreeBSD.org; Thu, 14 Aug 2003 16:29:53 -0400 (EDT) Date: Thu, 14 Aug 2003 16:29:53 -0400 (EDT) From: Kris Kennaway Message-Id: <200308142029.h7EKTrN3029267@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 20:33:24 -0000 INDEX build failed with errors: exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log U mail/balsa/Makefile U mail/balsa2/Makefile U mail/evolution/Makefile U mail/sendmail/Makefile ? net/bind9-dlz/Makefile.inc U net/dgd/Makefile U net/krdesktop/Makefile U net/krdesktop/distinfo U net/ldapdiff/Makefile ? net/powerdns/Makefile.inc U net/py-ldap2/Makefile U security/pam_ldap/Makefile U www/auth_ldap/Makefile ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 13:57:05 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 914DE37B401 for ; Thu, 14 Aug 2003 13:57:05 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 769CF43F85 for ; Thu, 14 Aug 2003 13:57:04 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D118166CFA; Thu, 14 Aug 2003 13:56:57 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id AC74C7A8; Thu, 14 Aug 2003 13:56:57 -0700 (PDT) Date: Thu, 14 Aug 2003 13:56:57 -0700 From: Kris Kennaway To: glu@yahoo-inc.com Message-ID: <20030814205657.GA61324@rot13.obsecurity.org> References: <20030814185110.34184.qmail@web40807.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline In-Reply-To: <20030814185110.34184.qmail@web40807.mail.yahoo.com> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: package requirement for zh-cxterm-5.0.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 20:57:05 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Aug 14, 2003 at 11:51:10AM -0700, Guotao Lu wrote: > hi there, > i tried to install ports/zh-cxterm-5.0.3. the webpage > www.freebsd.org/ports/chinese.html says that it > requires Xft-2.1.2, but when i tried to install it, it > complains that it can not find Xft-2.1_8, whereas only > Xft-2.1_7 is available. could you please check it out? This is normal. The Xft-2.1.2 listing is because that's the version currently in the ports collection (it was recently upgraded). However the most recent package built depends on 2.1_8, because that's what was there at the time the package built. And since the older Xft-2.1_7 is what you have installed on your machine, pkg_add warns about it when you add the package. kris --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/O/eZWry0BWjoQKURAnAYAJ0co0gzRDmcD7v5aYJMw6dShhpokQCg3wur 5kr9+ux02Xz5N3kWT0w9yf8= =VDK+ -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 14:31:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA9937B401 for ; Thu, 14 Aug 2003 14:31:33 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73AF743FCB for ; Thu, 14 Aug 2003 14:31:32 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp134-74.dialup.mtu-net.ru [62.118.134.74]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id C0CBDE78E9 for ; Fri, 15 Aug 2003 01:31:26 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F3BFFB0.9000309@ciam.ru> Date: Fri, 15 Aug 2003 01:31:28 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ru-RU; rv:1.3) Gecko/20030309 X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: bento questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 21:31:33 -0000 Hello! I have some questions about bento. How often builds run? What is the difference between full run and current run? ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 14:33:28 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D9C437B401 for ; Thu, 14 Aug 2003 14:33:28 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id D013043FA3 for ; Thu, 14 Aug 2003 14:33:27 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7ELTqmY086495 for ; Thu, 14 Aug 2003 17:29:52 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7ELTqsJ086494 for ports@FreeBSD.org; Thu, 14 Aug 2003 17:29:52 -0400 (EDT) Date: Thu, 14 Aug 2003 17:29:52 -0400 (EDT) From: Kris Kennaway Message-Id: <200308142129.h7ELTqsJ086494@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 21:33:28 -0000 INDEX build failed with errors: exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 U MOVED ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U lang/cli/Makefile ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U net/wide-dhcp/Makefile U net/wide-dhcp/files/patch-database.c ? x11/gnome2/log U x11-toolkits/Makefile U x11-toolkits/gnome-themes-extras/Makefile U x11-toolkits/gnome-themes-extras/distinfo U x11-toolkits/gnome-themes-extras/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 15:33:31 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF33C37B401 for ; Thu, 14 Aug 2003 15:33:31 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16AEC43FE0 for ; Thu, 14 Aug 2003 15:33:24 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7EMTrmY043839 for ; Thu, 14 Aug 2003 18:29:53 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7EMTrEg043838 for ports@FreeBSD.org; Thu, 14 Aug 2003 18:29:53 -0400 (EDT) Date: Thu, 14 Aug 2003 18:29:53 -0400 (EDT) From: Kris Kennaway Message-Id: <200308142229.h7EMTrEg043838@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 22:33:32 -0000 INDEX build failed with errors: exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 16:33:25 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1714837B401 for ; Thu, 14 Aug 2003 16:33:25 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E0EC43FCB for ; Thu, 14 Aug 2003 16:33:24 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7ENTrmY001183 for ; Thu, 14 Aug 2003 19:29:53 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7ENTqZg001182 for ports@FreeBSD.org; Thu, 14 Aug 2003 19:29:52 -0400 (EDT) Date: Thu, 14 Aug 2003 19:29:52 -0400 (EDT) From: Kris Kennaway Message-Id: <200308142329.h7ENTqZg001182@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 23:33:25 -0000 INDEX build failed with errors: exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U security/tinc/Makefile U security/tinc/distinfo U security/tinc/pkg-plist U sysutils/cdrtools-devel/Makefile U sysutils/cdrtools-devel/distinfo U sysutils/cdrtools-devel/pkg-descr U sysutils/cdrtools-devel/pkg-descr.mkisofs U sysutils/cdrtools-devel/pkg-plist U sysutils/cdrtools-devel/pkg-plist.mkisofs U sysutils/cdrtools-devel/files/patch-ad U sysutils/cdrtools-devel/files/patch-ai U sysutils/cdrtools-devel/files/patch-bb U sysutils/mkisofs-devel/Makefile ? x11/gnome2/log U x11-toolkits/gtk20/Makefile U x11-toolkits/gtk20/files/patch-gtk_gtkwidget.c From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 17:33:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 338DF37B401 for ; Thu, 14 Aug 2003 17:33:23 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CF9043FA3 for ; Thu, 14 Aug 2003 17:33:22 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7F0TomY058410 for ; Thu, 14 Aug 2003 20:29:50 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7F0ToVC058409 for ports@FreeBSD.org; Thu, 14 Aug 2003 20:29:50 -0400 (EDT) Date: Thu, 14 Aug 2003 20:29:50 -0400 (EDT) From: Kris Kennaway Message-Id: <200308150029.h7F0ToVC058409@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 00:33:23 -0000 INDEX build failed with errors: exim-ldap2-4.21_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete turba-1.2_1: "/vol/vol0/users/kris/ports.clean/net/openldap21" non-existent -- dependency list incomplete gnomemeeting-0.96.1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete gq-0.6.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete nss_ldap-1.204_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete ruby-ldap-0.8.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete dirmngr-0.4.5_1: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete opensc-0.7.0: "/vol/vol0/users/kris/ports.clean/net/openldap20" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 18:34:20 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0BA137B401 for ; Thu, 14 Aug 2003 18:34:20 -0700 (PDT) Received: from procyon.firepipe.net (procyon.firepipe.net [198.78.66.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80BDE43F85 for ; Thu, 14 Aug 2003 18:34:16 -0700 (PDT) (envelope-from will@csociety.org) Received: by procyon.firepipe.net (Postfix, from userid 1000) id 056BF2A775; Thu, 14 Aug 2003 18:34:15 -0700 (PDT) Date: Thu, 14 Aug 2003 18:34:15 -0700 From: Will Andrews To: Sergey Matveychuk Message-ID: <20030815013415.GB95290@procyon.firepipe.net> Mail-Followup-To: Sergey Matveychuk , ports@freebsd.org References: <3F3BFFB0.9000309@ciam.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F3BFFB0.9000309@ciam.ru> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: bento questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 01:34:21 -0000 On Fri, Aug 15, 2003 at 01:31:28AM +0400, Sergey Matveychuk wrote: > I have some questions about bento. > How often builds run? It depends on what fails/succeeds in a particular run, and how much resources are available for a given architecture and branch. Sometimes FreeBSD throws all the resources behind a particular branch e.g. around release time. In the past at least, on average, i386 runs take about 24 hours, alpha runs 1-3 weeks, and sparc64/ia64/amd64 varies a lot more. That's sort of the problem with the question, there are just too many variables. > What is the difference between full run and current run? A full run is a run that has completed. A current run is a run in progress, or has not completed for some reason. Regards, -- wca From owner-freebsd-ports@FreeBSD.ORG Thu Aug 14 22:09:56 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CFD337B401; Thu, 14 Aug 2003 22:09:56 -0700 (PDT) Received: from ms-smtp-01.southeast.rr.com (ms-smtp-01.southeast.rr.com [24.93.67.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45AE443F75; Thu, 14 Aug 2003 22:09:55 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7F53BTf029336; Fri, 15 Aug 2003 01:03:11 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7F59YUA027216; Fri, 15 Aug 2003 01:09:34 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Gerald Pfeifer In-Reply-To: References: <200307120606.h6C66T69010399@repoman.freebsd.org> <20030712063421.GA61124@rot13.obsecurity.org> <1057992291.42958.21.camel@shumai.marcuscom.com> <20030715034041.GA19804@rot13.obsecurity.org> <20030719213127.GB68178@sunbay.com> <20030724113142.GA726@rot13.obsecurity.org> <1060733969.64573.5.camel@shumai.marcuscom.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Rx1+U3lnuzeWZbQRIzRi" Organization: FreeBSD, Inc. Message-Id: <1060924183.81631.43.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Fri, 15 Aug 2003 01:09:44 -0400 X-Spam-Status: No, hits=-11.6 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: Ruslan Ermilov cc: Kris Kennaway Subject: Re: texinfo breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 05:09:56 -0000 --=-Rx1+U3lnuzeWZbQRIzRi Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-08-12 at 20:27, Gerald Pfeifer wrote: > On Tue, 12 Aug 2003, Joe Marcus Clarke wrote: > > I plan on adding INFO support to portlint very soon. >=20 > Cool! >=20 > Basically, each of > ^@unexec install-info > ^@exec install-info > info$ > in pkg-plist probably should become a warning and > info-1$ > a hard error, for the latter means that the port won't be portable > across 4.x (x < 9) and -CURRENT. Done. Please let me know what you think. Joe >=20 > Gerald --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-Rx1+U3lnuzeWZbQRIzRi Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/PGsXb2iPiv4Uz4cRAk6yAJ9eyOPStLEvP36WXjZ0UuYlGFenLwCgktvS u6KUk/Mdl0jChQZa+rGOq/4= =rsv7 -----END PGP SIGNATURE----- --=-Rx1+U3lnuzeWZbQRIzRi-- From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 01:29:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B989E37B404 for ; Fri, 15 Aug 2003 01:29:33 -0700 (PDT) Received: from beta.netcraft.com (beta.netcraft.com [195.92.95.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1922A43FAF for ; Fri, 15 Aug 2003 01:29:32 -0700 (PDT) (envelope-from jez@netcraft.com) Received: from [195.92.95.48] (chagford.netcraft.com [195.92.95.48]) by beta.netcraft.com (8.12.9/8.12.9) with ESMTP id h7F8TUmg018591 for ; Fri, 15 Aug 2003 09:29:30 +0100 (BST) (envelope-from jez@netcraft.com) From: Jeremy Prior To: ports@freebsd.org Content-Type: multipart/mixed; boundary="=-eL+ShsnqTiMjZGYFqP0H" Organization: Netcraft Ltd Message-Id: <1060936169.18898.8.camel@chagford.netcraft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Fri, 15 Aug 2003 09:29:29 +0100 Subject: gphoto2-2.1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 08:29:35 -0000 --=-eL+ShsnqTiMjZGYFqP0H Content-Type: text/plain Content-Transfer-Encoding: 7bit [I'm sending this to ports@freebsd.org because it is listed as the maintainer of the gphoto2 and libgphoto2 ports] Hi! There are new versions of both gphoto2 and libgphoto2 on sourceforge. I've attached patches to upgrade our ports collection for both (they are pretty straight-forward). The libusb port is already up-to-date. Hope this helps, jez -- Jeremy Prior http://www.netcraft.com/ Netcraft Ltd, Treenwood Ho, Rowden La, Bradford-on-Avon, BA15 2AZ. UK Tel: +44-1225-867932 (direct-dial) Fax: +44-8700-517767 --=-eL+ShsnqTiMjZGYFqP0H Content-Disposition: attachment; filename=libgphoto2.patch Content-Type: text/x-patch; name=libgphoto2.patch; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Index: libgphoto2/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/libgphoto2/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- libgphoto2/Makefile 12 Aug 2003 09:12:15 -0000 1.5 +++ libgphoto2/Makefile 14 Aug 2003 11:14:09 -0000 @@ -6,7 +6,7 @@ # PORTNAME= libgphoto2 -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= gphoto @@ -27,7 +27,7 @@ LDFLAGS="-L${LOCALBASE}/lib" INSTALLS_SHLIB= yes -MAN3= gphoto2.3 gphoto2_port.3 +MAN3= libgphoto2.3 libgphoto2_port.3 post-patch: .for file in configure libgphoto2_port/configure Index: libgphoto2/distinfo =================================================================== RCS file: /usr/cvs/ports/graphics/libgphoto2/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- libgphoto2/distinfo 3 Jan 2003 20:27:22 -0000 1.1 +++ libgphoto2/distinfo 14 Aug 2003 09:44:23 -0000 @@ -1 +1 @@ -MD5 (libgphoto2-2.1.1.tar.bz2) = ec69ffba3dc3d6a6a604fd63b3e1159e +MD5 (libgphoto2-2.1.2.tar.bz2) = ded0d8262d02e4c215ffc0d73d5acbbb Index: libgphoto2/pkg-plist =================================================================== RCS file: /usr/cvs/ports/graphics/libgphoto2/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- libgphoto2/pkg-plist 3 Jan 2003 20:27:22 -0000 1.1 +++ libgphoto2/pkg-plist 14 Aug 2003 10:47:32 -0000 @@ -18,44 +18,52 @@ include/gphoto2/gphoto2-version.h include/gphoto2/gphoto2-widget.h include/gphoto2/gphoto2.h -lib/gphoto2/2.1.1/libgphoto2_barbie.so -lib/gphoto2/2.1.1/libgphoto2_canon.so -lib/gphoto2/2.1.1/libgphoto2_casio_qv.so -lib/gphoto2/2.1.1/libgphoto2_digita.so -lib/gphoto2/2.1.1/libgphoto2_dimagev.so -lib/gphoto2/2.1.1/libgphoto2_dimera3500.so -lib/gphoto2/2.1.1/libgphoto2_directory.so -lib/gphoto2/2.1.1/libgphoto2_fuji.so -lib/gphoto2/2.1.1/libgphoto2_gsmart.so -lib/gphoto2/2.1.1/libgphoto2_jamcam.so -lib/gphoto2/2.1.1/libgphoto2_jd11.so -lib/gphoto2/2.1.1/libgphoto2_kodak_dc120.so -lib/gphoto2/2.1.1/libgphoto2_kodak_dc210.so -lib/gphoto2/2.1.1/libgphoto2_kodak_dc240.so -lib/gphoto2/2.1.1/libgphoto2_kodak_dc3200.so -lib/gphoto2/2.1.1/libgphoto2_konica.so -lib/gphoto2/2.1.1/libgphoto2_largan.so -lib/gphoto2/2.1.1/libgphoto2_mustek.so -lib/gphoto2/2.1.1/libgphoto2_panasonic_coolshot.so -lib/gphoto2/2.1.1/libgphoto2_panasonic_dc1000.so -lib/gphoto2/2.1.1/libgphoto2_panasonic_dc1580.so -lib/gphoto2/2.1.1/libgphoto2_panasonic_l859.so -lib/gphoto2/2.1.1/libgphoto2_pccam600.so -lib/gphoto2/2.1.1/libgphoto2_polaroid_pdc320.so -lib/gphoto2/2.1.1/libgphoto2_polaroid_pdc640.so -lib/gphoto2/2.1.1/libgphoto2_polaroid_pdc700.so -lib/gphoto2/2.1.1/libgphoto2_ptp.so -lib/gphoto2/2.1.1/libgphoto2_ricoh.so -lib/gphoto2/2.1.1/libgphoto2_samsung.so -lib/gphoto2/2.1.1/libgphoto2_sierra.so -lib/gphoto2/2.1.1/libgphoto2_sipix.so -lib/gphoto2/2.1.1/libgphoto2_sipixblink.so -lib/gphoto2/2.1.1/libgphoto2_sony_dscf1.so -lib/gphoto2/2.1.1/libgphoto2_sony_dscf55.so -lib/gphoto2/2.1.1/libgphoto2_soundvision.so -lib/gphoto2/2.1.1/libgphoto2_spca504_flash.so -lib/gphoto2/2.1.1/libgphoto2_stv0680.so -lib/gphoto2/2.1.1/libgphoto2_sx330z.so +lib/gphoto2/2.1.2/libgphoto2_agfa_cl20.so +lib/gphoto2/2.1.2/libgphoto2_barbie.so +lib/gphoto2/2.1.2/libgphoto2_canon.so +lib/gphoto2/2.1.2/libgphoto2_casio_qv.so +lib/gphoto2/2.1.2/libgphoto2_digita.so +lib/gphoto2/2.1.2/libgphoto2_dimera3500.so +lib/gphoto2/2.1.2/libgphoto2_directory.so +lib/gphoto2/2.1.2/libgphoto2_fuji.so +lib/gphoto2/2.1.2/libgphoto2_gsmart300.so +lib/gphoto2/2.1.2/libgphoto2_jamcam.so +lib/gphoto2/2.1.2/libgphoto2_jd11.so +lib/gphoto2/2.1.2/libgphoto2_kodak_dc120.so +lib/gphoto2/2.1.2/libgphoto2_kodak_dc210.so +lib/gphoto2/2.1.2/libgphoto2_kodak_dc240.so +lib/gphoto2/2.1.2/libgphoto2_kodak_dc3200.so +lib/gphoto2/2.1.2/libgphoto2_konica.so +lib/gphoto2/2.1.2/libgphoto2_konica_qm150.so +lib/gphoto2/2.1.2/libgphoto2_largan.so +lib/gphoto2/2.1.2/libgphoto2_dimagev.so +lib/gphoto2/2.1.2/libgphoto2_mustek.so +lib/gphoto2/2.1.2/libgphoto2_panasonic_coolshot.so +lib/gphoto2/2.1.2/libgphoto2_panasonic_l859.so +lib/gphoto2/2.1.2/libgphoto2_panasonic_dc1000.so +lib/gphoto2/2.1.2/libgphoto2_panasonic_dc1580.so +lib/gphoto2/2.1.2/libgphoto2_pccam300.so +lib/gphoto2/2.1.2/libgphoto2_pccam600.so +lib/gphoto2/2.1.2/libgphoto2_polaroid_pdc320.so +lib/gphoto2/2.1.2/libgphoto2_polaroid_pdc640.so +lib/gphoto2/2.1.2/libgphoto2_polaroid_pdc700.so +lib/gphoto2/2.1.2/libgphoto2_ptp2.so +lib/gphoto2/2.1.2/libgphoto2_ricoh.so +lib/gphoto2/2.1.2/libgphoto2_samsung.so +lib/gphoto2/2.1.2/libgphoto2_sierra.so +lib/gphoto2/2.1.2/libgphoto2_sipix_blink.so +lib/gphoto2/2.1.2/libgphoto2_sipix_blink2.so +lib/gphoto2/2.1.2/libgphoto2_sipix_web2.so +lib/gphoto2/2.1.2/libgphoto2_smal.so +lib/gphoto2/2.1.2/libgphoto2_sony_dscf1.so +lib/gphoto2/2.1.2/libgphoto2_sony_dscf55.so +lib/gphoto2/2.1.2/libgphoto2_soundvision.so +lib/gphoto2/2.1.2/libgphoto2_spca50x.so +lib/gphoto2/2.1.2/libgphoto2_sq905.so +lib/gphoto2/2.1.2/libgphoto2_stv0674.so +lib/gphoto2/2.1.2/libgphoto2_stv0680.so +lib/gphoto2/2.1.2/libgphoto2_sx330z.so +lib/gphoto2/2.1.2/libgphoto2_toshiba.so lib/gphoto2_port/0.5.1/libgphoto2_port_serial.so lib/gphoto2_port/0.5.1/libgphoto2_port_usb.so libdata/pkgconfig/libgphoto2.pc @@ -71,12 +79,12 @@ %%PORTDOCS%%share/doc/libgphoto2_port/AUTHORS %%PORTDOCS%%share/doc/libgphoto2_port/NEWS %%PORTDOCS%%share/doc/libgphoto2_port/README -share/libgphoto2/2.1.1/konica/english -share/libgphoto2/2.1.1/konica/french -share/libgphoto2/2.1.1/konica/german -share/libgphoto2/2.1.1/konica/japanese -share/libgphoto2/2.1.1/konica/korean -share/libgphoto2/2.1.1/konica/spanish +share/libgphoto2/2.1.2/konica/english +share/libgphoto2/2.1.2/konica/french +share/libgphoto2/2.1.2/konica/german +share/libgphoto2/2.1.2/konica/japanese +share/libgphoto2/2.1.2/konica/korean +share/libgphoto2/2.1.2/konica/spanish share/locale/da/LC_MESSAGES/libgphoto2-2.mo share/locale/da/LC_MESSAGES/libgphoto2_port-0.mo share/locale/de/LC_MESSAGES/libgphoto2-2.mo @@ -101,13 +109,13 @@ share/locale/uk/LC_MESSAGES/libgphoto2_port-0.mo share/locale/zh_CN/LC_MESSAGES/libgphoto2-2.mo share/locale/zh_CN/LC_MESSAGES/libgphoto2_port-0.mo -@dirrm share/libgphoto2/2.1.1/konica -@dirrm share/libgphoto2/2.1.1 +@dirrm share/libgphoto2/2.1.2/konica +@dirrm share/libgphoto2/2.1.2 @dirrm share/libgphoto2 %%PORTDOCS%%@dirrm share/doc/libgphoto2_port %%PORTDOCS%%@dirrm share/doc/libgphoto2 @dirrm lib/gphoto2_port/0.5.1 @dirrm lib/gphoto2_port -@dirrm lib/gphoto2/2.1.1 +@dirrm lib/gphoto2/2.1.2 @dirrm lib/gphoto2 @dirrm include/gphoto2 --=-eL+ShsnqTiMjZGYFqP0H Content-Disposition: attachment; filename=gphoto2.patch Content-Type: text/x-patch; name=gphoto2.patch; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Index: gphoto2/Makefile =================================================================== RCS file: /usr/cvs/ports/graphics/gphoto2/Makefile,v retrieving revision 1.36 diff -u -r1.36 Makefile --- gphoto2/Makefile 20 Feb 2003 18:08:02 -0000 1.36 +++ gphoto2/Makefile 14 Aug 2003 10:13:11 -0000 @@ -6,7 +6,7 @@ # PORTNAME= gphoto2 -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= gphoto Index: gphoto2/distinfo =================================================================== RCS file: /usr/cvs/ports/graphics/gphoto2/distinfo,v retrieving revision 1.7 diff -u -r1.7 distinfo --- gphoto2/distinfo 3 Jan 2003 20:29:18 -0000 1.7 +++ gphoto2/distinfo 14 Aug 2003 10:19:12 -0000 @@ -1 +1 @@ -MD5 (gphoto2-2.1.1.tar.bz2) = ce77b9c9ce25a57990c61f9e301e74b9 +MD5 (gphoto2-2.1.2.tar.bz2) = 322999934ac09df43747dadafacb7a5e --=-eL+ShsnqTiMjZGYFqP0H-- From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 01:38:19 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AEBE37B401 for ; Fri, 15 Aug 2003 01:38:19 -0700 (PDT) Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 395B443FDD for ; Fri, 15 Aug 2003 01:38:18 -0700 (PDT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by white.imgsrc.co.jp (Postfix) with ESMTP id 1CE5C284018; Fri, 15 Aug 2003 17:38:17 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id 52CB3284035; Fri, 15 Aug 2003 17:38:16 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by black.imgsrc.co.jp (Postfix) with ESMTP id CFB801E463F; Fri, 15 Aug 2003 17:38:15 +0900 (JST) Date: Fri, 15 Aug 2003 17:38:15 +0900 Message-ID: <7m65kztix4.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Jeremy Prior In-Reply-To: <1060936169.18898.8.camel@chagford.netcraft.com> References: <1060936169.18898.8.camel@chagford.netcraft.com> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020531 cc: ports@freebsd.org Subject: Re: gphoto2-2.1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 08:38:19 -0000 At Fri, 15 Aug 2003 08:30:01 +0000 (UTC), Jeremy Prior wrote: > [I'm sending this to ports@freebsd.org because it is listed as the > maintainer of the gphoto2 and libgphoto2 ports] Could you please filing as PR via send-pr? -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 02:44:44 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 346D537B401 for ; Fri, 15 Aug 2003 02:44:44 -0700 (PDT) Received: from beta.netcraft.com (beta.netcraft.com [195.92.95.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22AB743F75 for ; Fri, 15 Aug 2003 02:44:43 -0700 (PDT) (envelope-from jez@netcraft.com) Received: from [195.92.95.48] (chagford.netcraft.com [195.92.95.48]) by beta.netcraft.com (8.12.9/8.12.9) with ESMTP id h7F9idmg020648; Fri, 15 Aug 2003 10:44:41 +0100 (BST) (envelope-from jez@netcraft.com) From: Jeremy Prior To: Jun Kuriyama In-Reply-To: <7m65kztix4.wl@black.imgsrc.co.jp> References: <1060936169.18898.8.camel@chagford.netcraft.com> <7m65kztix4.wl@black.imgsrc.co.jp> Content-Type: text/plain Organization: Netcraft Ltd Message-Id: <1060940678.18898.10.camel@chagford.netcraft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Fri, 15 Aug 2003 10:44:39 +0100 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: gphoto2-2.1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 09:44:44 -0000 On Fri, 2003-08-15 at 09:38, Jun Kuriyama wrote: > Could you please filing as PR via send-pr? Done. jez -- Jeremy Prior http://www.netcraft.com/ Netcraft Ltd, Treenwood Ho, Rowden La, Bradford-on-Avon, BA15 2AZ. UK Tel: +44-1225-867932 (direct-dial) Fax: +44-8700-517767 From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 02:47:49 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2344B37B401 for ; Fri, 15 Aug 2003 02:47:49 -0700 (PDT) Received: from hotmail.com (bay8-f93.bay8.hotmail.com [64.4.27.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF54843FBF for ; Fri, 15 Aug 2003 02:47:48 -0700 (PDT) (envelope-from evantd@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sun, 10 Aug 2003 21:56:41 -0700 Received: from 12.229.123.246 by by8fd.bay8.hotmail.msn.com with HTTP; Mon, 11 Aug 2003 04:56:41 GMT X-Originating-IP: [12.229.123.246] X-Originating-Email: [evantd@hotmail.com] From: "Evan Dower" To: ports@freebsd.org Date: Sun, 10 Aug 2003 21:56:41 -0700 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 11 Aug 2003 04:56:41.0376 (UTC) FILETIME=[F4522A00:01C35FC4] Subject: fcrontab and script command nonexecution X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 09:47:49 -0000 I wrote a script to do a -current build (and it works from the command line), but when I put it in my fcrontab, the calls to script don't seem to call their command argument. Any input would be greatly appreciated. A simplified scenario follows. Thanks in advance, Evan Dower Undergraduate, Computer Science University of Washington fcrontab contains: # #minute hour mday month wday who command # !mail(0) # &mail(1) * * * * * /home/evantd/testscript /home/evantd/testscript contains: #!/bin/sh script /home/evantd/testscriptresult.txt echo "testscript run successfully" the mail I receive and /home/evantd/testscriptresult.txt both contain: Script started on Fri Aug 8 20:48:00 2003 Script done on Fri Aug 8 20:48:00 2003 _________________________________________________________________ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 03:05:51 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56CA437B401 for ; Fri, 15 Aug 2003 03:05:51 -0700 (PDT) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA2C243FA3 for ; Fri, 15 Aug 2003 03:05:50 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 4C65641C; Fri, 15 Aug 2003 14:05:49 +0400 (MSD) Date: Fri, 15 Aug 2003 14:05:49 +0400 From: "Sergey A. Osokin" To: Jeremy Prior Message-ID: <20030815100549.GC9150@freebsd.org.ru> References: <1060936169.18898.8.camel@chagford.netcraft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1060936169.18898.8.camel@chagford.netcraft.com> User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: gphoto2-2.1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 10:05:51 -0000 On Fri, Aug 15, 2003 at 09:29:29AM +0100, Jeremy Prior wrote: > [I'm sending this to ports@freebsd.org because it is listed as the > maintainer of the gphoto2 and libgphoto2 ports] Thanks for submission. > There are new versions of both gphoto2 and libgphoto2 on sourceforge. > I've attached patches to upgrade our ports collection for both (they are > pretty straight-forward). The libusb port is already up-to-date. > > +++ libgphoto2/pkg-plist 14 Aug 2003 10:47:32 -0000 > @@ -18,44 +18,52 @@ > include/gphoto2/gphoto2-version.h > include/gphoto2/gphoto2-widget.h > include/gphoto2/gphoto2.h > -lib/gphoto2/2.1.1/libgphoto2_barbie.so > +lib/gphoto2/2.1.2/libgphoto2_barbie.so Any chance to use %%VERSION%% or somethink like that (instead of 2.1.[1|2])? Thanks one more time. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 03:16:29 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6218337B401; Fri, 15 Aug 2003 03:16:29 -0700 (PDT) Received: from beta.netcraft.com (beta.netcraft.com [195.92.95.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1962143F3F; Fri, 15 Aug 2003 03:16:28 -0700 (PDT) (envelope-from jez@netcraft.com) Received: from [195.92.95.48] (chagford.netcraft.com [195.92.95.48]) by beta.netcraft.com (8.12.9/8.12.9) with ESMTP id h7FAGQmg021722; Fri, 15 Aug 2003 11:16:27 +0100 (BST) (envelope-from jez@netcraft.com) From: Jeremy Prior To: "Sergey A. Osokin" In-Reply-To: <20030815100549.GC9150@freebsd.org.ru> References: <1060936169.18898.8.camel@chagford.netcraft.com> <20030815100549.GC9150@freebsd.org.ru> Content-Type: text/plain Organization: Netcraft Ltd Message-Id: <1060942585.18898.21.camel@chagford.netcraft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Fri, 15 Aug 2003 11:16:26 +0100 Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: gphoto2-2.1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 10:16:29 -0000 On Fri, 2003-08-15 at 11:05, Sergey A. Osokin wrote: > > +++ libgphoto2/pkg-plist 14 Aug 2003 10:47:32 -0000 > > @@ -18,44 +18,52 @@ > > include/gphoto2/gphoto2-version.h > > include/gphoto2/gphoto2-widget.h > > include/gphoto2/gphoto2.h > > -lib/gphoto2/2.1.1/libgphoto2_barbie.so > > +lib/gphoto2/2.1.2/libgphoto2_barbie.so > > Any chance to use %%VERSION%% or somethink like that (instead > of 2.1.[1|2])? That would make sense. I just s/2\.1\.1/2\.1\.2/g throughout and then fixed up the pkg-plist to reflect the changes. jez -- Jeremy Prior http://www.netcraft.com/ Netcraft Ltd, Treenwood Ho, Rowden La, Bradford-on-Avon, BA15 2AZ. UK Tel: +44-1225-867932 (direct-dial) Fax: +44-8700-517767 From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 09:06:18 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BE2537B401 for ; Fri, 15 Aug 2003 09:06:18 -0700 (PDT) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6F8943FA3 for ; Fri, 15 Aug 2003 09:06:17 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 35E4A3F9; Fri, 15 Aug 2003 20:06:15 +0400 (MSD) Date: Fri, 15 Aug 2003 20:06:15 +0400 From: "Sergey A. Osokin" To: Jeremy Prior Message-ID: <20030815160614.GE9150@freebsd.org.ru> References: <1060936169.18898.8.camel@chagford.netcraft.com> <20030815100549.GC9150@freebsd.org.ru> <1060942585.18898.21.camel@chagford.netcraft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1060942585.18898.21.camel@chagford.netcraft.com> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org Subject: Re: gphoto2-2.1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 16:06:18 -0000 On Fri, Aug 15, 2003 at 11:16:26AM +0100, Jeremy Prior wrote: > On Fri, 2003-08-15 at 11:05, Sergey A. Osokin wrote: > > > +++ libgphoto2/pkg-plist 14 Aug 2003 10:47:32 -0000 > > > @@ -18,44 +18,52 @@ > > > include/gphoto2/gphoto2-version.h > > > include/gphoto2/gphoto2-widget.h > > > include/gphoto2/gphoto2.h > > > -lib/gphoto2/2.1.1/libgphoto2_barbie.so > > > +lib/gphoto2/2.1.2/libgphoto2_barbie.so > > > > Any chance to use %%VERSION%% or somethink like that (instead > > of 2.1.[1|2])? > > That would make sense. I just s/2\.1\.1/2\.1\.2/g throughout and then > fixed up the pkg-plist to reflect the changes. OK, I commit your changes with some modifications. Please see diff for details. Thanks for submission one more time. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ From owner-freebsd-ports@FreeBSD.ORG Fri Aug 15 13:41:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B24537B401 for ; Fri, 15 Aug 2003 13:41:33 -0700 (PDT) Received: from mailman.packetdesign.com (dns.packetdesign.com [65.192.41.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id A67D443F75 for ; Fri, 15 Aug 2003 13:41:32 -0700 (PDT) (envelope-from casner@acm.org) Received: from ash.packetdesign.com (ash.packetdesign.com [192.168.0.243]) h7FKfOwr053739; Fri, 15 Aug 2003 13:41:29 -0700 (PDT) (envelope-from casner@acm.org) Date: Fri, 15 Aug 2003 13:41:58 -0700 (PDT) From: Stephen Casner Sender: casner@packetdesign.com To: "Thomas E. Zander" In-Reply-To: <20030814162755.GC9430@o503.hadiko.de> Message-ID: <20030815133732.U223@ash.packetdesign.com> References: <3F3AE5C5.4050405@acm.org> <20030814162755.GC9430@o503.hadiko.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mplayer-0.90.0.110_2 and RealAudio doesn't find linux libm X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 20:41:33 -0000 On Thu, 14 Aug 2003, Thomas E. Zander wrote: > On Wed, 13. Aug 2003, at 18:28 -0700, Stephen Casner wrote > according to [FreeBSD Port: mplayer-0.90.0.110_2 and RealAudio doesn't find linux libm]: > > > I have installed the subject mplayer port and the linux-realplayer port > > on FreeBSD 4.8-RELEASE. Trying to decode a .rm file using the RealAudio > > encoding results in the error message: > > > > Error: Shared object "libm.so.6" not found ... > I'd suggest the following: If adding /usr/compat/linux/lib to > LD_LIBRARY_PATH solves the problem for you but you don't want to define > it for your entire environment, why not just put in something like > > alias mplayer env LD_LIBRARY_PATH=/usr/compat/linux/lib mplayer > > in your shell startup file? Thanks. That idea did occur to me, but I figured there must be some more systematic solution! In this case, you have confirmed that there isn't, so that will be it. -- Steve From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 00:52:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25EDB37B401 for ; Sat, 16 Aug 2003 00:52:33 -0700 (PDT) Received: from freebsd2.nitanee.net (statecollegecable-64-178-98-203.ceinetworks.com [64.178.98.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 834F443F93 for ; Sat, 16 Aug 2003 00:52:32 -0700 (PDT) (envelope-from carl@freebsd2.nitanee.net) Received: by freebsd2.nitanee.net (Postfix, from userid 1001) id 8F635213D; Sat, 16 Aug 2003 03:52:53 -0400 (EDT) Date: Sat, 16 Aug 2003 03:52:53 -0400 From: Carl Cotner To: ports@FreeBSD.org Message-ID: <20030816075253.GA62501@nitanee.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: port bug: agrep 2.02 on FreeBSD 5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 07:52:33 -0000 Hi, I have encountered the following bug with agrep 2.04 on FreeBSD 5.1. The bug does not appear on FreeBSD 4.2. I have address files whose format is address - blank line - address - blank line - etc, like so (Name 1 begins in column 1 in the file): Name1 Address1 City1, State1 Zip1 Name2 Address2 City2, State2 Zip2 ... The following command agrep -h -i -t -d '$$' Name address_file produces the following output (The first line is missing the first two characters): me1 Address1 City1, State1 Zip1 Name2 Address2 City2, State2 Zip2 ... As I said, this bug does not appear on FreeBSD 4.2. Thanks for all the great work you guys do! Cheers, Carl P.S. One more oddity. Although both agrep's on FreeBSD 4.2 and 5.1 are compiled from the distfile agrep-2.04.tar.Z, on the 4.2 machine the command agrep -V gives This is agrep version 3.0, 1994. On 5.1 it gives agrep: illegal option -V ... From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 02:38:45 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 633F037B401 for ; Sat, 16 Aug 2003 02:38:45 -0700 (PDT) Received: from mail.tiscali.cz (stateless1.tiscali.cz [213.235.135.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 096F843F3F for ; Sat, 16 Aug 2003 02:38:44 -0700 (PDT) (envelope-from martin.vana@vslib.cz) Received: from Vanovci (212.11.116.203) by mail.tiscali.cz (6.7.018) id 3F269CE0003C5A29; Sat, 16 Aug 2003 11:32:41 +0200 Message-ID: <001901c363da$6fb10b80$cb740bd4@Vanovci> From: "Martin Vana" To: Date: Sat, 16 Aug 2003 11:40:29 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-Mimeole: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: win32-codecs-011002.0.0.90pre7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 09:38:45 -0000 hi, I'm trying to find win32-codecs package for FreeBSD 5.1- RELEASE but it seems that link from www.freebsd.org/ports is broken, is there any other download location? Thank you Martin From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 02:52:14 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB33B37B401 for ; Sat, 16 Aug 2003 02:52:14 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls20o913.bredband.comhem.se [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id A69F743FBF for ; Sat, 16 Aug 2003 02:52:12 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 11315 invoked by uid 1001); 16 Aug 2003 09:52:09 -0000 Date: Sat, 16 Aug 2003 11:52:09 +0200 From: Erik Trulsson To: Martin Vana Message-ID: <20030816095209.GA10810@falcon.midgard.homeip.net> Mail-Followup-To: Martin Vana , holger@e-gitt.net, ports@FreeBSD.org References: <001901c363da$6fb10b80$cb740bd4@Vanovci> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <001901c363da$6fb10b80$cb740bd4@Vanovci> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org cc: holger@e-gitt.net Subject: Re: FreeBSD Port: win32-codecs-011002.0.0.90pre7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 09:52:15 -0000 On Sat, Aug 16, 2003 at 11:40:29AM +0200, Martin Vana wrote: > hi, > I'm trying to find win32-codecs package for FreeBSD 5.1- RELEASE but it > seems that link from www.freebsd.org/ports is broken, is there any other > download location? > Thank you For legal reasons the package of win32-codecs is not available for downloading. You will have to build it yourself from the ports system. (I.e. do: cd /usr/ports/multimedia/win32-codec make install ) -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 03:27:06 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C8EE37B401 for ; Sat, 16 Aug 2003 03:27:06 -0700 (PDT) Received: from mr1.ucalgary.ca (mr1.ucalgary.ca [136.159.34.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6463843F85 for ; Sat, 16 Aug 2003 03:27:05 -0700 (PDT) (envelope-from achrsto@ucalgary.ca) Received: from mhost2.ucalgary.ca (mhost2.ucalgary.ca [136.159.36.11]) by mr1.ucalgary.ca (Postfix) with ESMTP id CF6557D65 for ; Sat, 16 Aug 2003 04:27:04 -0600 (MDT) Received: from ash (h68-145-205-93.cg.shawcable.net [68.145.205.93]) by mhost2.ucalgary.ca (8.11.6/8.11.6) with SMTP id h7GAR4Q06538 for ; Sat, 16 Aug 2003 04:27:04 -0600 Message-ID: <002e01c363e0$ef3e7da0$1f00a8c0@ash> From: "Ash Christopher" To: Date: Sat, 16 Aug 2003 04:27:00 -0600 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-MailScanner: Found to be clean X-MailScanner-Information: Please contact IT Help Desk at (403) 220-5555 for more information Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Postgresql problem; affecting other startup scripts.... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 10:27:06 -0000 Hello,=20 I just recently installed postgresql-7.3.3_1 on my system (FreeBSD 5.1). = Since installing the software, no other programs are run on startup = anymore. My apache, samba, sendmail, mysql etc... dont get run. I have = not read anything about incompatibilities with other packages. I have = removed the postgres startup shell from my /usr/local/etc/rc.d folder, = but it still seems to get run....which is weird... Have you heard of this problem before?? and how might I go about = resolving it?? Thanks, Ash Christopher From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 03:31:41 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D2B437B404 for ; Sat, 16 Aug 2003 03:31:41 -0700 (PDT) Received: from freebsd2.nitanee.net (statecollegecable-64-178-98-203.ceinetworks.com [64.178.98.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 577D743F3F for ; Sat, 16 Aug 2003 03:31:40 -0700 (PDT) (envelope-from carl@freebsd2.nitanee.net) Received: by freebsd2.nitanee.net (Postfix, from userid 1001) id 565222141; Sat, 16 Aug 2003 06:32:01 -0400 (EDT) Date: Sat, 16 Aug 2003 06:32:01 -0400 From: Carl Cotner To: ports@FreeBSD.org Message-ID: <20030816103201.GA75004@nitanee.net> References: <20030816075253.GA62501@nitanee.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030816075253.GA62501@nitanee.net> User-Agent: Mutt/1.5.4i Subject: Re: port bug: agrep 2.02 on FreeBSD 5.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 10:31:41 -0000 Ah, sorry, I figured it out myself! The agrep from the glimpse port works perfectly (and is version 3)! Thanks. - Carl On Sat, Aug 16, 2003 at 03:52:53AM -0400, Carl Cotner wrote: >Hi, > >I have encountered the following bug with agrep 2.04 on FreeBSD 5.1. >The bug does not appear on FreeBSD 4.2. > >I have address files whose format is address - blank line - address - >blank line - etc, like so (Name 1 begins in column 1 in the file): > > Name1 > Address1 > City1, State1 Zip1 > > Name2 > Address2 > City2, State2 Zip2 > > ... > >The following command > > agrep -h -i -t -d '$$' Name address_file > >produces the following output (The first line is missing the first two >characters): > > me1 > Address1 > City1, State1 Zip1 > > Name2 > Address2 > City2, State2 Zip2 > > ... > >As I said, this bug does not appear on FreeBSD 4.2. > >Thanks for all the great work you guys do! > From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 03:50:57 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67B8037B401; Sat, 16 Aug 2003 03:50:57 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4523D43FE0; Sat, 16 Aug 2003 03:50:56 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.52] (naos [128.131.111.52]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id AF427137C6; Sat, 16 Aug 2003 12:50:54 +0200 (CEST) Date: Sat, 16 Aug 2003 12:50:53 +0200 (CEST) From: Gerald Pfeifer To: Joe Marcus Clarke In-Reply-To: <1060924183.81631.43.camel@shumai.marcuscom.com> Message-ID: References: <200307120606.h6C66T69010399@repoman.freebsd.org> <1057992291.42958.21.camel@shumai.marcuscom.com> <20030715034041.GA19804@rot13.obsecurity.org> <20030724113142.GA726@rot13.obsecurity.org> <1060733969.64573.5.camel@shumai.marcuscom.com> <1060924183.81631.43.camel@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: Ruslan Ermilov cc: Kris Kennaway Subject: Re: texinfo breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 10:50:57 -0000 On Fri, 15 Aug 2003, Joe Marcus Clarke wrote: >>> I plan on adding INFO support to portlint very soon. > Done. Please let me know what you think. I love it! :-) Just one nit, if you don't mind: FATAL: .../cfengine2/pkg-plist 19: numbered info files are no longer supported; It's less that they are not supported, but that using split (or numbered) info files is non-portable, as different versions of makeinfo will generate a different of such files. Perhaps something like "deprecated and not portable"? Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 10:39:29 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5ABA37B401 for ; Sat, 16 Aug 2003 10:39:29 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19C9D43F93 for ; Sat, 16 Aug 2003 10:39:29 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GHZZmY008704 for ; Sat, 16 Aug 2003 13:35:35 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GHZY8P008703 for ports@FreeBSD.org; Sat, 16 Aug 2003 13:35:34 -0400 (EDT) Date: Sat, 16 Aug 2003 13:35:34 -0400 (EDT) From: Kris Kennaway Message-Id: <200308161735.h7GHZY8P008703@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 17:39:30 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U comms/hylafax/Makefile U comms/hylafax/distinfo U comms/hylafax/pkg-plist ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 11:28:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B73F437B401; Sat, 16 Aug 2003 11:28:55 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7887443F3F; Sat, 16 Aug 2003 11:28:52 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7GIQnnO029650; Sat, 16 Aug 2003 14:26:49 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7GISKUA046036; Sat, 16 Aug 2003 14:28:20 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Gerald Pfeifer In-Reply-To: References: <200307120606.h6C66T69010399@repoman.freebsd.org> <20030712063421.GA61124@rot13.obsecurity.org> <1057992291.42958.21.camel@shumai.marcuscom.com> <20030715034041.GA19804@rot13.obsecurity.org> <20030719213127.GB68178@sunbay.com> <20030724113142.GA726@rot13.obsecurity.org> <1060733969.64573.5.camel@shumai.marcuscom.com> <1060924183.81631.43.camel@shumai.marcuscom.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eEyeJe7GZfMHFg4U6jbZ" Organization: FreeBSD, Inc. Message-Id: <1061058528.54862.3.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sat, 16 Aug 2003 14:28:49 -0400 X-Spam-Status: No, hits=-11.6 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: Ruslan Ermilov cc: Kris Kennaway Subject: Re: texinfo breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 18:28:56 -0000 --=-eEyeJe7GZfMHFg4U6jbZ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-08-16 at 06:50, Gerald Pfeifer wrote: > On Fri, 15 Aug 2003, Joe Marcus Clarke wrote: > >>> I plan on adding INFO support to portlint very soon. > > Done. Please let me know what you think. >=20 > I love it! :-) >=20 >=20 > Just one nit, if you don't mind: >=20 > FATAL: .../cfengine2/pkg-plist 19: numbered info files are no longer su= pported; >=20 > It's less that they are not supported, but that using split (or numbered) > info files is non-portable, as different versions of makeinfo will genera= te > a different of such files. Perhaps something like "deprecated and not > portable"? Deprecated has the connotation of "works but not recommended." How about, "obsolete and not portable?" Joe >=20 > Gerald --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-eEyeJe7GZfMHFg4U6jbZ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/Pnfgb2iPiv4Uz4cRAuWYAJ9Bmd6rGrwoVIKg87nxwkGwLnOMVQCgkpDV IkRsAM3Tuq0Nn8KZLpIG6BA= =afJs -----END PGP SIGNATURE----- --=-eEyeJe7GZfMHFg4U6jbZ-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 11:37:01 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58FCB37B401 for ; Sat, 16 Aug 2003 11:37:01 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F65443F3F for ; Sat, 16 Aug 2003 11:37:00 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GIX6mY065976 for ; Sat, 16 Aug 2003 14:33:06 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GIX5tf065975 for ports@FreeBSD.org; Sat, 16 Aug 2003 14:33:05 -0400 (EDT) Date: Sat, 16 Aug 2003 14:33:05 -0400 (EDT) From: Kris Kennaway Message-Id: <200308161833.h7GIX5tf065975@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 18:37:01 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U graphics/ImageMagick/Makefile ? mail/log U mail/perdition/Makefile U net/angst/Makefile ? net/bind9-dlz/Makefile.inc U net/ettercap/Makefile ? net/powerdns/Makefile.inc U news/nntpcache/Makefile U security/apg/Makefile U security/crack/Makefile U security/fragroute/Makefile U security/outguess/Makefile U security/siphon/Makefile U sysutils/Makefile U sysutils/task/Makefile U sysutils/whowatch/Makefile U sysutils/xfce4-minicmd-plugin/Makefile U sysutils/xfce4-minicmd-plugin/distinfo U sysutils/xfce4-minicmd-plugin/pkg-descr U sysutils/xfce4-minicmd-plugin/pkg-plist ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 12:36:43 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F127737B401 for ; Sat, 16 Aug 2003 12:36:43 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4486343F85 for ; Sat, 16 Aug 2003 12:36:43 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GJWmmY023355 for ; Sat, 16 Aug 2003 15:32:48 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GJWmjY023354 for ports@FreeBSD.org; Sat, 16 Aug 2003 15:32:48 -0400 (EDT) Date: Sat, 16 Aug 2003 15:32:48 -0400 (EDT) From: Kris Kennaway Message-Id: <200308161932.h7GJWmjY023354@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 19:36:44 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U devel/mingw32-gcc/Makefile U devel/mingw32-gcc/pkg-plist U games/heroes/Makefile U games/heroes/pkg-plist U graphics/gltt/Makefile U graphics/gltt/pkg-plist U graphics/gltt/files/patch-configure U graphics/xmms-xvs/Makefile U graphics/xmms-xvs/pkg-descr U graphics/xmms-xvs/pkg-plist ? mail/log U mail/faces/Makefile U mail/faces/pkg-plist U mail/isync/Makefile U mail/isync/distinfo U mail/isync/pkg-descr U multimedia/libxine/Makefile U multimedia/libxine/pkg-plist ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 13:21:20 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B84137B401 for ; Sat, 16 Aug 2003 13:21:20 -0700 (PDT) Received: from graf.pompo.net (lns-th2-2f-81-56-186-139.adsl.proxad.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A1D843FB1 for ; Sat, 16 Aug 2003 13:21:19 -0700 (PDT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id EFB5A752C; Sat, 16 Aug 2003 22:20:04 +0200 (CEST) Date: Sat, 16 Aug 2003 22:20:04 +0200 From: Thierry Thomas To: Kris Kennaway Message-ID: <20030816202004.GB43667@graf.pompo.net> Mail-Followup-To: Kris Kennaway , ports@FreeBSD.org References: <200308161932.h7GJWmjY023354@8ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200308161932.h7GJWmjY023354@8ball.rtp.freebsd.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.8-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@FreeBSD.org Subject: Re: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 20:21:20 -0000 Le Sam 16 aoû 03 à 21:32:48 +0200, Kris Kennaway écrivait : > INDEX build failed with errors: databases/libgda2 still depends on the splitted net/openldap20. Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 13:33:51 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 120EC37B401 for ; Sat, 16 Aug 2003 13:33:51 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 136A343FDF for ; Sat, 16 Aug 2003 13:33:47 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GKTpmY080627 for ; Sat, 16 Aug 2003 16:29:51 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GKTpvY080626 for ports@FreeBSD.org; Sat, 16 Aug 2003 16:29:51 -0400 (EDT) Date: Sat, 16 Aug 2003 16:29:51 -0400 (EDT) From: Kris Kennaway Message-Id: <200308162029.h7GKTpvY080626@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 20:33:51 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc U net/lft/Makefile U net/lft/distinfo U net/lft/files/patch-lft.c ? net/powerdns/Makefile.inc U security/p5-Digest-MD5/Makefile U security/p5-Digest-MD5/distinfo U www/swish++/Makefile U www/swish++/distinfo ? x11/gnome2/log U x11-toolkits/scintilla/Makefile U x11-toolkits/scintilla/distinfo U x11-toolkits/scintilla/files/patch-aa From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 13:35:27 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9726537B404 for ; Sat, 16 Aug 2003 13:35:27 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A73943F85 for ; Sat, 16 Aug 2003 13:35:26 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7GKXKnO013021; Sat, 16 Aug 2003 16:33:20 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7GKYoUA046869; Sat, 16 Aug 2003 16:34:50 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Thierry Thomas In-Reply-To: <20030816202004.GB43667@graf.pompo.net> References: <200308161932.h7GJWmjY023354@8ball.rtp.freebsd.org> <20030816202004.GB43667@graf.pompo.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-DlR7zeNMbXUtTTsfJ79a" Organization: MarcusCom, Inc. Message-Id: <1061066119.54862.30.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sat, 16 Aug 2003 16:35:19 -0400 X-Spam-Status: No, hits=-11.6 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 20:35:27 -0000 --=-DlR7zeNMbXUtTTsfJ79a Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable On Sat, 2003-08-16 at 16:20, Thierry Thomas wrote: > Le Sam 16 ao=FB 03 =E0 21:32:48 +0200, Kris Kennaway > =E9crivait : > > INDEX build failed with errors: >=20 > databases/libgda2 still depends on the splitted net/openldap20. Fixed, thanks! Joe >=20 > Regards, --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-DlR7zeNMbXUtTTsfJ79a Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/PpWHb2iPiv4Uz4cRAqOrAJ9HPRsnhq2tPayINXMQcE2hKGT+6wCfWJSB 39ec08j6NatK8sS1SFRj480= =urmt -----END PGP SIGNATURE----- --=-DlR7zeNMbXUtTTsfJ79a-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 14:05:48 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FCB337B401; Sat, 16 Aug 2003 14:05:48 -0700 (PDT) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC62543F3F; Sat, 16 Aug 2003 14:05:47 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from ADMIN00 (admin00.westbend.net [216.47.253.17]) by mail.westbend.net (8.12.9/8.12.9) with SMTP id h7GL5iQM023819; Sat, 16 Aug 2003 16:05:44 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <012b01c36439$df548e80$11fd2fd8@westbend.net> From: "Scot W. Hetzel" To: "Scot W. Hetzel" , References: <031701c35c89$266a6e10$11fd2fd8@westbend.net> Date: Sat, 16 Aug 2003 16:03:40 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=1.2 required=8.0 tests=FROM_AND_TO_SAME_6,QUOTED_EMAIL_TEXT,REFERENCES, SPAM_PHRASE_01_02,TO_BE_REMOVED_REPLY,USER_AGENT_OE version=2.43 X-Spam-Level: * Subject: Re: Using rc.subr for port scripts (PR 54116, and PR 54352) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 21:05:49 -0000 Could someone on the Port Manager team have a look at PR 54116, as this PR will allow us to fully convert our PREFIX/etc/rc.d/ scripts to RC_NG and allow them to work on FreeBSD < 5.0 that don't have /etc/rc.subr. Scot ----- Original Message ----- From: "Scot W. Hetzel" To: Sent: Wednesday, August 06, 2003 9:10 PM Subject: Using rc.subr for port scripts (PR 54116, and PR 54352) > Could a portmgr have a look PR 54116? > > http://www.freebsd.org/cgi/query-pr.cgi?pr=54116 > > This port makes it possible to run RC_NG style port start up scripts on > non-RC_NG systems (FreeBSD < 5.0). > > As the maintainer of the security/cyrus-sasl port, I have included a patch > which converts the cyrus-sasl port to use RC_NG style start up script (as an > example). Please commit this patch after the rc_subr port has been added to > the ports tree. > > I have also submitted PR 54352, which converts several related ports start > up scripts to RC_NG style. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=54352 > > Also, the following PR's can be closed. > > PR 44800 RC_NG for local rc scripts > PR 43667 mail/cyrus_imapd > PR 43668 mail/cyrus_imapd2 > PR 43669 databases/mysql323-{server,client} > PR 43670 net/openldap > PR 43671 net/openldap2 > PR 43672 security/cyrus-sasl > PR 43673 security/cyrus-sasl2 > > They dealt with this problem by combining RC_OLD and RC_NG into one start up > script. The way I dealt with this problem in PR 54116 is much cleaner. > > Scot > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 14:33:53 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFDFB37B401 for ; Sat, 16 Aug 2003 14:33:53 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EFD143F3F for ; Sat, 16 Aug 2003 14:33:53 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GLTumY038019 for ; Sat, 16 Aug 2003 17:29:56 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GLTugm038018 for ports@FreeBSD.org; Sat, 16 Aug 2003 17:29:56 -0400 (EDT) Date: Sat, 16 Aug 2003 17:29:56 -0400 (EDT) From: Kris Kennaway Message-Id: <200308162129.h7GLTugm038018@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 21:33:54 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U archivers/fastjar/Makefile U audio/gnomemedia2/files/patch-gmix_gmix.h ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U polish/Makefile.inc ? x11/gnome2/log U x11/twin/Makefile From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 15:33:51 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34C3337B401 for ; Sat, 16 Aug 2003 15:33:51 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B02443FA3 for ; Sat, 16 Aug 2003 15:33:50 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GMTsmY095294 for ; Sat, 16 Aug 2003 18:29:54 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GMTsPG095293 for ports@FreeBSD.org; Sat, 16 Aug 2003 18:29:54 -0400 (EDT) Date: Sat, 16 Aug 2003 18:29:54 -0400 (EDT) From: Kris Kennaway Message-Id: <200308162229.h7GMTsPG095293@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 22:33:51 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 15:38:35 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DCF237B401; Sat, 16 Aug 2003 15:38:35 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-97.dsl.lsan03.pacbell.net [64.169.107.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id B67A043F85; Sat, 16 Aug 2003 15:38:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 5D63866D7A; Sat, 16 Aug 2003 15:38:34 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 1A43E8D1; Sat, 16 Aug 2003 15:38:34 -0700 (PDT) Date: Sat, 16 Aug 2003 15:38:34 -0700 From: Kris Kennaway To: Kris Kennaway , ports@FreeBSD.org Message-ID: <20030816223834.GA37359@rot13.obsecurity.org> References: <200308161932.h7GJWmjY023354@8ball.rtp.freebsd.org> <20030816202004.GB43667@graf.pompo.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <20030816202004.GB43667@graf.pompo.net> User-Agent: Mutt/1.4.1i cc: leeym@FreeBSD.org Subject: Re: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 22:38:35 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 16, 2003 at 10:20:04PM +0200, Thierry Thomas wrote: > Le Sam 16 ao? 03 ? 21:32:48 +0200, Kris Kennaway > ?crivait?: > > INDEX build failed with errors: >=20 > databases/libgda2 still depends on the splitted net/openldap20. That's not the error here. The failure message was: ---- INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" igno= red Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U comms/hylafax/Makefile <----- U comms/hylafax/distinfo U comms/hylafax/pkg-plist ---- And indeed the hylafax makefile has two post-patch targets. Kris --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/PrJpWry0BWjoQKURAvKQAJ4keeeIY7OGPbDigdG43gVfxnV8aQCgwrWW Uh0NWWCSW4Me1WRKd/a20ww= =pTC2 -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 16:00:20 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A899D37B401 for ; Sat, 16 Aug 2003 16:00:20 -0700 (PDT) Received: from mta8.srv.hcvlny.cv.net (mta8.srv.hcvlny.cv.net [167.206.5.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1BFA43F85 for ; Sat, 16 Aug 2003 16:00:19 -0700 (PDT) (envelope-from agapon@cv-nj.com) Received: from asv1.srv.hcvlny.cv.net (asv1.srv.hcvlny.cv.net [167.206.5.150]) by mta8.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HJQ00ACSIJXW6@mta8.srv.hcvlny.cv.net> for freebsd-ports@FreeBSD.org; Sat, 16 Aug 2003 18:59:57 -0400 (EDT) Received: from edge.foundation.invalidasv1.srv.hcvlny.cv.net ; Sat, 16 Aug 2003 18:59:32 -0400 (EDT) Received: from cv-nj.com (localhost.foundation.invalid [127.0.0.1]) h7GN0Eoc008298 for ; Sat, 16 Aug 2003 19:00:14 -0400 (EDT envelope-from agapon@cv-nj.com) Date: Sat, 16 Aug 2003 19:00:14 -0400 From: Andriy Gapon To: freebsd-ports@FreeBSD.org Message-id: <3F3EB77E.2010201@cv-nj.com> Organization: none MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en, uk, ru User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030701 Subject: Re: ports/54624: Update: net/gtk-gnutella X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 23:00:21 -0000 Could some please take a look at this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/54624 there is no feedback from the port's maintainer for about a month, and the changes in gnutella are so significant that the users of the older versions are at a great disadvantage comparing to the users of the newer one. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 16:20:48 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9A6B37B401 for ; Sat, 16 Aug 2003 16:20:48 -0700 (PDT) Received: from itaqui.terra.com.br (itaqui.terra.com.br [200.176.3.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9962B43F3F for ; Sat, 16 Aug 2003 16:20:42 -0700 (PDT) (envelope-from pasquall@terra.com.br) Received: from botucatu.terra.com.br (botucatu.terra.com.br [200.176.3.78]) by itaqui.terra.com.br (Postfix) with ESMTP id 02645810932 for ; Sat, 16 Aug 2003 20:20:41 -0300 (BRT) Received: from terra.com.br (200-207-162-249.dsl.telesp.net.br [200.207.162.249]) (authenticated user pasquall) by botucatu.terra.com.br (Postfix) with ESMTP id 3BF1529C8E9 for ; Sat, 16 Aug 2003 20:20:29 -0300 (BRT) Message-ID: <3F3EBC36.4050301@terra.com.br> Date: Sat, 16 Aug 2003 20:20:22 -0300 From: "Luiz Fernando Pasqual S. Souza" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030725 X-Accept-Language: pt-br, en, en-us MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: multipart/mixed; boundary="------------060205030009050203020007" Subject: FreeBSD Port: py-opengl-2.0.0.44 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 23:20:49 -0000 This is a multi-part message in MIME format. --------------060205030009050203020007 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, I've been trying to install py-opengl-2.0.0.44 via ports, but I get an error message and I can't understand it. Can you help me? I saved the output of make install in the file attached. Thank you --------------060205030009050203020007 Content-Type: text/plain; name="log.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="log.txt" ---> Installing 'py-opengl-2.0.0.44' from a port (graphics/py-opengl) ---> Building '/usr/ports/graphics/py-opengl' ===> Cleaning for libiconv-1.9.1_1 ===> Cleaning for gettext-0.11.5_1 ===> Cleaning for gmake-3.80 ===> Cleaning for imake-4.3.0_1 ===> Cleaning for libtool-1.3.5_1 ===> Cleaning for pkgconfig-0.15.0 ===> Cleaning for swig-1.1p5_8 ===> Cleaning for Mesa-3.4.2_2 ===> Cleaning for jpeg-6b_1 ===> Cleaning for py23-imaging-1.1.4 ===> Cleaning for perl-5.6.1_13 ===> Cleaning for python-2.3 ===> Cleaning for tcl-8.3.5_2 ===> Cleaning for tcl-8.4.4,1 ===> Cleaning for py23-numeric-23.0 ===> Cleaning for freetype2-2.1.4_1 ===> Cleaning for expat-1.95.6_1 ===> Cleaning for fontconfig-2.2.90_3 ===> Cleaning for py23-tkinter-2.3_1 ===> Cleaning for tk-8.4.4,1 ===> Cleaning for XFree86-libraries-4.3.0_5 ===> Cleaning for py-opengl-2.0.0.44 ===> Extracting for py-opengl-2.0.0.44 >> Checksum OK for PyOpenGL-2.0.0.44.tar.gz. ===> Patching for py-opengl-2.0.0.44 ===> Applying FreeBSD patches for py-opengl-2.0.0.44 ===> py-opengl-2.0.0.44 depends on file: /usr/local/lib/python2.3/site-packages/Numeric/Numeric.py - found ===> py-opengl-2.0.0.44 depends on file: /usr/local/lib/python2.3/site-packages/_tkinter.so - found ===> py-opengl-2.0.0.44 depends on file: /usr/local/lib/python2.3/site-packages/PIL.pth - found ===> py-opengl-2.0.0.44 depends on executable: swig - found ===> py-opengl-2.0.0.44 depends on file: /usr/local/bin/python2.3 - found ===> py-opengl-2.0.0.44 depends on shared library: glut.3 - found ===> Configuring for py-opengl-2.0.0.44 ===> Building for py-opengl-2.0.0.44 /usr/local/lib/python2.3/distutils/dist.py:213: UserWarning: 'licence' distribution option is deprecated; use 'license' warnings.warn(msg) running build running build_w swig -version SWIG Version 1.1 (Patch 5) Copyright (c) 1995-98 University of Utah and the Regents of the University of California Compiled with c++ warning: build_w: Can't find SWIG, will just have to do with the existing wrapper source. running build_py cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c _configtest.c -o _configtest.o cc _configtest.o -L/usr/local/lib/python2.3/site-packages -o _configtest _configtest removing: _configtest.c _configtest.o _configtest creating build creating build/lib.freebsd-5.1-RELEASE-i386-2.3 creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL copying src/shadow/GL.__init__.0101.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/__init__.py cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c _configtest.c -o _configtest.o cc _configtest.o -L/usr/local/lib/python2.3/site-packages -o _configtest _configtest removing: _configtest.c _configtest.o _configtest creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU copying src/shadow/GLU.__init__.0103.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/__init__.py copying OpenGL/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL copying OpenGL/quaternion.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL copying OpenGL/trackball.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Tk copying OpenGL/Tk/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Tk creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX copying OpenGL/GLX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/_3DFX copying OpenGL/GLX/_3DFX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/_3DFX copying OpenGL/GLX/_3DFX/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/_3DFX creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/SGIS copying OpenGL/GLX/SGIS/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/SGIS copying OpenGL/GLX/SGIS/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/SGIS creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/EXT copying OpenGL/GLX/EXT/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/EXT copying OpenGL/GLX/EXT/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/EXT creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/ARB copying OpenGL/GLX/ARB/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/ARB copying OpenGL/GLX/ARB/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/ARB creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/SGI copying OpenGL/GLU/SGI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/SGI creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT copying OpenGL/GLU/EXT/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT copying OpenGL/GLU/EXT/nurbs_tessellator.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT copying OpenGL/GLU/EXT/object_space_tess.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX copying OpenGL/GL/_3DFX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX copying OpenGL/GL/_3DFX/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX copying OpenGL/GL/_3DFX/texture_compression_FXT1.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN copying OpenGL/GL/WIN/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN copying OpenGL/GL/WIN/phong_shading.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN copying OpenGL/GL/WIN/specular_fog.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUNX copying OpenGL/GL/SUNX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUNX creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN copying OpenGL/GL/SUN/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN copying OpenGL/GL/SUN/convolution_border_modes.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/async_histogram.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/async_pixel.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/blend_alpha_minmax.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/clipmap.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/depth_texture.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/fog_offset.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/interlace.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/ir_instrument1.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/pixel_texture_bits.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/resample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/shadow.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/shadow_ambient.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/texture_env_add.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/texture_lod_bias.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/texture_multi_buffer.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/texture_range.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/texture_scale_bias.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/vertex_preclip.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX copying OpenGL/GL/SGIX/ycrcb.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS copying OpenGL/GL/SGIS/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS copying OpenGL/GL/SGIS/generate_mipmap.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS copying OpenGL/GL/SGIS/texture_border_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS copying OpenGL/GL/SGIS/texture_edge_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS copying OpenGL/GL/SGIS/texture_lod.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS copying OpenGL/GL/SGIS/texture_select.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI copying OpenGL/GL/SGI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI copying OpenGL/GL/SGI/color_matrix.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI copying OpenGL/GL/SGI/texture_color_table.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/S3 copying OpenGL/GL/S3/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/S3 copying OpenGL/GL/S3/s3tc.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/S3 creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/REND copying OpenGL/GL/REND/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/REND copying OpenGL/GL/REND/screen_coordinates.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/REND creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI copying OpenGL/GL/PGI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI copying OpenGL/GL/PGI/vertex_hints.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML copying OpenGL/GL/OML/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML copying OpenGL/GL/OML/interlace.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML copying OpenGL/GL/OML/resample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML copying OpenGL/GL/OML/subsample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/blend_square.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/fog_distance.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/light_max_exponent.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/packed_depth_stencil.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texgen_emboss.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texgen_reflection.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texture_compression_vtc.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texture_env_combine4.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texture_rectangle.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texture_shader.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/texture_shader2.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV copying OpenGL/GL/NV/vertex_array_range2.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA copying OpenGL/GL/MESA/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/KTX copying OpenGL/GL/KTX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/KTX creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INTEL copying OpenGL/GL/INTEL/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INTEL creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR copying OpenGL/GL/INGR/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR copying OpenGL/GL/INGR/color_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR copying OpenGL/GL/INGR/interlace_read.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM copying OpenGL/GL/IBM/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM copying OpenGL/GL/IBM/cull_vertex.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM copying OpenGL/GL/IBM/pixel_transform_color_table.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM copying OpenGL/GL/IBM/rasterpos_clip.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM copying OpenGL/GL/IBM/texture_mirrored_repeat.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP copying OpenGL/GL/HP/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP copying OpenGL/GL/HP/convolution_border_modes.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP copying OpenGL/GL/HP/occlusion_test.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP copying OpenGL/GL/HP/texture_lighting.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/_422_pixels.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/abgr.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/bgra.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/blend_logic_op.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/blend_subtract.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/clip_volume_hint.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/cmyka.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/index_array_formats.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/index_texture.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/misc_attribute.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/packed_pixels.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/rescale_normal.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/separate_specular_color.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/shared_texture_palette.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/stencil_wrap.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_compression_s3tc.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_cube_map.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_env_add.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_env_combine.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_env_dot3.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_filter_anisotropic.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_lod.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT copying OpenGL/GL/EXT/texture_lod_bias.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk copying OpenGL/GL/Autodesk/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk copying OpenGL/GL/Autodesk/bgra_colors.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ATI copying OpenGL/GL/ATI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ATI copying OpenGL/GL/ATI/texture_mirror_once.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ATI creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/texture_border_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/texture_cube_map.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/texture_env_add.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/texture_env_combine.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/texture_env_crossbar.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB copying OpenGL/GL/ARB/texture_env_dot3.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE copying OpenGL/GL/APPLE/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE copying OpenGL/GL/APPLE/specular_vector.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE copying OpenGL/GL/APPLE/transform_hint.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE package init file 'OpenGL/Demo/twburton/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/twburton package init file 'OpenGL/Demo/tom/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/tom copying OpenGL/Demo/tom/logo.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/tom package init file 'OpenGL/Demo/simple/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/simple package init file 'OpenGL/Demo/redbook/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/redbook package init file 'OpenGL/Demo/dek/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek copying OpenGL/Demo/dek/PILNumeric.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek package init file 'OpenGL/Demo/dek/OglSurface/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface copying OpenGL/Demo/dek/OglSurface/Geometry.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface copying OpenGL/Demo/dek/OglSurface/NumericPDB.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface copying OpenGL/Demo/dek/OglSurface/OglFrame.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface copying OpenGL/Demo/dek/OglSurface/triangle.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface package init file 'OpenGL/Demo/da/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/da package init file 'OpenGL/Demo/NeHe/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/NeHe package init file 'OpenGL/Demo/GLUT/examples/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/GLUT creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/GLUT/examples package init file 'OpenGL/Demo/GLE/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/GLE package init file 'OpenGL/scripts/__init__.py' not found (or not a regular file) creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/scripts package init file 'OpenGL/Demo/twburton/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/tom/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/simple/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/redbook/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/dek/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/dek/OglSurface/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/da/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/NeHe/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/GLUT/examples/__init__.py' not found (or not a regular file) package init file 'OpenGL/Demo/GLE/__init__.py' not found (or not a regular file) package init file 'OpenGL/scripts/__init__.py' not found (or not a regular file) running build_clib building 'interface_util' library creating build/temp.freebsd-5.1-RELEASE-i386-2.3 creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/interface_util/interface_util.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/interface_util.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/interface_util/platform.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/platform.o src/interface_util/platform.c: In function `GetExtProc': src/interface_util/platform.c:36: warning: assignment makes pointer from integer without a cast ar -cr build/temp.freebsd-5.1-RELEASE-i386-2.3/libinterface_util.a build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/interface_util.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/platform.o building 'GLE' library creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/view.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/view.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/intersect.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/intersect.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/qmesh.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/qmesh.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/rotate.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rotate.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/round_cap.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/round_cap.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/ex_cut_round.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_cut_round.o src/gle/src/ex_cut_round.c: In function `draw_cut_style_cap_callback': src/gle/src/ex_cut_round.c:127: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_cut_round.c:128: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/extrude.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/extrude.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/urotate.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/urotate.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/segment.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/segment.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/rot_prince.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rot_prince.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/ex_raw.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_raw.o src/gle/src/ex_raw.c: In function `draw_raw_style_end_cap': src/gle/src/ex_raw.c:139: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_raw.c:140: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_raw.c: In function `draw_front_contour_cap': src/gle/src/ex_raw.c:199: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_raw.c:200: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_raw.c: In function `draw_back_contour_cap': src/gle/src/ex_raw.c:245: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_raw.c:246: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/texgen.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/texgen.o cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/ex_angle.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_angle.o src/gle/src/ex_angle.c: In function `draw_angle_style_front_cap': src/gle/src/ex_angle.c:110: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_angle.c:111: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_angle.c: In function `draw_angle_style_back_cap': src/gle/src/ex_angle.c:189: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/gle/src/ex_angle.c:190: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type ar -cr build/temp.freebsd-5.1-RELEASE-i386-2.3/libGLE.a build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rot_prince.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_cut_round.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_raw.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/extrude.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/intersect.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/qmesh.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_angle.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rotate.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/round_cap.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/segment.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/texgen.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/urotate.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/view.o running build_ext building 'GL.ARB.matrix_palette' extension creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.matrix_palette.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.matrix_palette.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.matrix_palette.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/matrix_palette.so building 'GL.ARB.multisample' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.multisample.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multisample.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multisample.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/multisample.so building 'GL.ARB.multitexture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.multitexture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multitexture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multitexture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/multitexture.so building 'GL.ARB.point_parameters' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.point_parameters.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.point_parameters.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.point_parameters.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/point_parameters.so building 'GL.ARB.texture_compression' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.texture_compression.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.texture_compression.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.texture_compression.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/texture_compression.so building 'GL.ARB.transpose_matrix' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.transpose_matrix.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.transpose_matrix.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.transpose_matrix.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/transpose_matrix.so building 'GL.ARB.vertex_blend' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.vertex_blend.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.vertex_blend.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.vertex_blend.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/vertex_blend.so building 'GL.Autodesk.facet_normal' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.Autodesk.facet_normal.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.facet_normal.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.facet_normal.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk/facet_normal.so building 'GL.Autodesk.valid_back_buffer_hint' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.Autodesk.valid_back_buffer_hint.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.valid_back_buffer_hint.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.valid_back_buffer_hint.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk/valid_back_buffer_hint.so building 'GL.EXT.blend_color' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.blend_color.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_color.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_color.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/blend_color.so building 'GL.EXT.blend_func_separate' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.blend_func_separate.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_func_separate.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_func_separate.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/blend_func_separate.so building 'GL.EXT.blend_minmax' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.blend_minmax.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_minmax.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_minmax.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/blend_minmax.so building 'GL.EXT.compiled_vertex_array' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.compiled_vertex_array.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.compiled_vertex_array.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.compiled_vertex_array.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/compiled_vertex_array.so building 'GL.EXT.convolution' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.convolution.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.convolution.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.convolution.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/convolution.so building 'GL.EXT.coordinate_frame' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.coordinate_frame.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.coordinate_frame.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.coordinate_frame.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/coordinate_frame.so building 'GL.EXT.copy_texture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.copy_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.copy_texture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.copy_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/copy_texture.so building 'GL.EXT.cull_vertex' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.cull_vertex.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.cull_vertex.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.cull_vertex.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/cull_vertex.so building 'GL.EXT.draw_range_elements' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.draw_range_elements.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.draw_range_elements.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.draw_range_elements.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/draw_range_elements.so building 'GL.EXT.fog_coord' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.fog_coord.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fog_coord.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fog_coord.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/fog_coord.so building 'GL.EXT.fragment_lighting' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.fragment_lighting.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fragment_lighting.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fragment_lighting.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/fragment_lighting.so building 'GL.EXT.index_func' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.index_func.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_func.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_func.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/index_func.so building 'GL.EXT.index_material' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.index_material.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_material.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_material.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/index_material.so building 'GL.EXT.light_texture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.light_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.light_texture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.light_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/light_texture.so building 'GL.EXT.multi_draw_arrays' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.multi_draw_arrays.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.multi_draw_arrays.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.multi_draw_arrays.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/multi_draw_arrays.so building 'GL.EXT.pixel_transform' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.pixel_transform.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.pixel_transform.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.pixel_transform.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/pixel_transform.so building 'GL.EXT.point_parameters' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.point_parameters.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.point_parameters.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.point_parameters.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/point_parameters.so building 'GL.EXT.polygon_offset' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.polygon_offset.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.polygon_offset.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.polygon_offset.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/polygon_offset.so building 'GL.EXT.scene_marker' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.scene_marker.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.scene_marker.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.scene_marker.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/scene_marker.so building 'GL.EXT.secondary_color' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.secondary_color.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.secondary_color.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.secondary_color.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/secondary_color.so building 'GL.EXT.subtexture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.subtexture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.subtexture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.subtexture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/subtexture.so building 'GL.EXT.texture3D' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.texture3D.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture3D.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture3D.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/texture3D.so building 'GL.EXT.texture_object' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.texture_object.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_object.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_object.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/texture_object.so building 'GL.EXT.texture_perturb_normal' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.texture_perturb_normal.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_perturb_normal.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_perturb_normal.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/texture_perturb_normal.so building 'GL.EXT.vertex_array' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.vertex_array.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_array.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_array.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/vertex_array.so building 'GL.EXT.vertex_weighting' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.vertex_weighting.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_weighting.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_weighting.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/vertex_weighting.so building 'GL.HP.image_transform' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.HP.image_transform.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.HP.image_transform.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.HP.image_transform.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP/image_transform.so building 'GL.IBM.multimode_draw_arrays' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.IBM.multimode_draw_arrays.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.multimode_draw_arrays.o In file included from src/interface/GL.IBM.multimode_draw_arrays.c:6: src/interface/GL.IBM.multimode_draw_arrays.0101.inc: In function `_wrap_glMultiModeDrawArraysIBM': src/interface/GL.IBM.multimode_draw_arrays.0101.inc:789: warning: passing arg 1 of `glMultiModeDrawArraysIBM' makes integer from pointer without a cast cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.multimode_draw_arrays.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM/multimode_draw_arrays.so building 'GL.IBM.static_data' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.IBM.static_data.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.static_data.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.static_data.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM/static_data.so building 'GL.INTEL.texture_scissor' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.INTEL.texture_scissor.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.INTEL.texture_scissor.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.INTEL.texture_scissor.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INTEL/texture_scissor.so building 'GL.KTX.buffer_region' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.KTX.buffer_region.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.KTX.buffer_region.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.KTX.buffer_region.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/KTX/buffer_region.so building 'GL.MESA.resize_buffers' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.MESA.resize_buffers.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.resize_buffers.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.resize_buffers.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA/resize_buffers.so building 'GL.MESA.window_pos' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.MESA.window_pos.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.window_pos.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.window_pos.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA/window_pos.so building 'GL.NV.fence' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.NV.fence.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.fence.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.fence.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV/fence.so building 'GL.NV.register_combiners' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.NV.register_combiners.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV/register_combiners.so building 'GL.NV.register_combiners2' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.NV.register_combiners2.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners2.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners2.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV/register_combiners2.so building 'GL.PGI.misc_hints' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.PGI.misc_hints.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.PGI.misc_hints.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.PGI.misc_hints.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI/misc_hints.so building 'GL.SGIS.detail_texture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.detail_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.detail_texture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.detail_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/detail_texture.so building 'GL.SGIS.fog_function' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.fog_function.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.fog_function.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.fog_function.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/fog_function.so building 'GL.SGIS.multisample' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.multisample.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multisample.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multisample.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/multisample.so building 'GL.SGIS.multitexture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.multitexture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multitexture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multitexture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/multitexture.so building 'GL.SGIS.pixel_texture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.pixel_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.pixel_texture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.pixel_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/pixel_texture.so building 'GL.SGIS.sharpen_texture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.sharpen_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.sharpen_texture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.sharpen_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/sharpen_texture.so building 'GL.SGIS.texture4D' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.texture4D.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture4D.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture4D.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/texture4D.so building 'GL.SGIS.texture_color_mask' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.texture_color_mask.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_color_mask.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_color_mask.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/texture_color_mask.so building 'GL.SGIS.texture_filter4' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.texture_filter4.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_filter4.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_filter4.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/texture_filter4.so building 'GL.SGIX.async' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.async.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.async.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.async.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/async.so building 'GL.SGIX.flush_raster' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.flush_raster.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.flush_raster.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.flush_raster.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/flush_raster.so building 'GL.SGIX.frame_zoom' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.frame_zoom.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.frame_zoom.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.frame_zoom.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/frame_zoom.so building 'GL.SGIX.list_priority' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.list_priority.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.list_priority.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.list_priority.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/list_priority.so building 'GL.SGIX.pixel_texture' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.pixel_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.pixel_texture.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.pixel_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/pixel_texture.so building 'GL.SGIX.reference_plane' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.reference_plane.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.reference_plane.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.reference_plane.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/reference_plane.so building 'GL.SGIX.sprite' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.sprite.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.sprite.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.sprite.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/sprite.so building 'GL.SGIX.tag_sample_buffer' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.tag_sample_buffer.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.tag_sample_buffer.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.tag_sample_buffer.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/tag_sample_buffer.so building 'GL.SUN.global_alpha' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SUN.global_alpha.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.global_alpha.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.global_alpha.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN/global_alpha.so building 'GL.SUN.triangle_list' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SUN.triangle_list.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.triangle_list.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.triangle_list.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN/triangle_list.so building 'GL.SUNX.constant_data' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SUNX.constant_data.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUNX.constant_data.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUNX.constant_data.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUNX/constant_data.so building 'GL.WIN.swap_hint' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.WIN.swap_hint.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.WIN.swap_hint.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.WIN.swap_hint.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN/swap_hint.so building 'GL._3DFX.tbuffer' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL._3DFX.tbuffer.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL._3DFX.tbuffer.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL._3DFX.tbuffer.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX/tbuffer.so building 'GL.__init___' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.__init___.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.__init___.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.__init___.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/__init___.so building 'GLE' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLE.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLE.o In file included from src/interface/GLE.c:8: src/interface/GLE.0300.inc: In function `_wrap_glePolyCylinder': src/interface/GLE.0300.inc:842: warning: passing arg 2 of `glePolyCylinder' from incompatible pointer type src/interface/GLE.0300.inc:842: warning: passing arg 3 of `glePolyCylinder' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_glePolyCone': src/interface/GLE.0300.inc:886: warning: passing arg 2 of `glePolyCone' from incompatible pointer type src/interface/GLE.0300.inc:886: warning: passing arg 3 of `glePolyCone' from incompatible pointer type src/interface/GLE.0300.inc:886: warning: passing arg 4 of `glePolyCone' discards qualifiers from pointer target type src/interface/GLE.0300.inc: In function `_wrap_gleExtrusion': src/interface/GLE.0300.inc:952: warning: passing arg 2 of `gleExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:952: warning: passing arg 3 of `gleExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:952: warning: passing arg 4 of `gleExtrusion' discards qualifiers from pointer target type src/interface/GLE.0300.inc:952: warning: passing arg 6 of `gleExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:952: warning: passing arg 7 of `gleExtrusion' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_gleTwistExtrusion': src/interface/GLE.0300.inc:1030: warning: passing arg 2 of `gleTwistExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1030: warning: passing arg 3 of `gleTwistExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1030: warning: passing arg 4 of `gleTwistExtrusion' discards qualifiers from pointer target type src/interface/GLE.0300.inc:1030: warning: passing arg 6 of `gleTwistExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1030: warning: passing arg 7 of `gleTwistExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1030: warning: passing arg 8 of `gleTwistExtrusion' discards qualifiers from pointer target type src/interface/GLE.0300.inc: In function `_wrap_gleSuperExtrusion': src/interface/GLE.0300.inc:1111: warning: passing arg 2 of `gleSuperExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1111: warning: passing arg 3 of `gleSuperExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1111: warning: passing arg 4 of `gleSuperExtrusion' discards qualifiers from pointer target type src/interface/GLE.0300.inc:1111: warning: passing arg 6 of `gleSuperExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1111: warning: passing arg 7 of `gleSuperExtrusion' from incompatible pointer type src/interface/GLE.0300.inc:1111: warning: passing arg 8 of `gleSuperExtrusion' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_gleSpiral': src/interface/GLE.0300.inc:1184: warning: passing arg 2 of `gleSpiral' from incompatible pointer type src/interface/GLE.0300.inc:1184: warning: passing arg 3 of `gleSpiral' from incompatible pointer type src/interface/GLE.0300.inc:1184: warning: passing arg 4 of `gleSpiral' discards qualifiers from pointer target type src/interface/GLE.0300.inc:1184: warning: passing arg 9 of `gleSpiral' from incompatible pointer type src/interface/GLE.0300.inc:1184: warning: passing arg 10 of `gleSpiral' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_gleLathe': src/interface/GLE.0300.inc:1254: warning: passing arg 2 of `gleLathe' from incompatible pointer type src/interface/GLE.0300.inc:1254: warning: passing arg 3 of `gleLathe' from incompatible pointer type src/interface/GLE.0300.inc:1254: warning: passing arg 4 of `gleLathe' discards qualifiers from pointer target type src/interface/GLE.0300.inc:1254: warning: passing arg 9 of `gleLathe' from incompatible pointer type src/interface/GLE.0300.inc:1254: warning: passing arg 10 of `gleLathe' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_gleHelicoid': src/interface/GLE.0300.inc:1301: warning: passing arg 6 of `gleHelicoid' from incompatible pointer type src/interface/GLE.0300.inc:1301: warning: passing arg 7 of `gleHelicoid' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_gleToroid': src/interface/GLE.0300.inc:1339: warning: passing arg 6 of `gleToroid' from incompatible pointer type src/interface/GLE.0300.inc:1339: warning: passing arg 7 of `gleToroid' from incompatible pointer type src/interface/GLE.0300.inc: In function `_wrap_gleScrew': src/interface/GLE.0300.inc:1385: warning: passing arg 2 of `gleScrew' from incompatible pointer type src/interface/GLE.0300.inc:1385: warning: passing arg 3 of `gleScrew' from incompatible pointer type src/interface/GLE.0300.inc:1385: warning: passing arg 4 of `gleScrew' discards qualifiers from pointer target type cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLE.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -lGLE -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLE.so building 'GLU.SGI.filter4_parameters' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLU.SGI.filter4_parameters.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.SGI.filter4_parameters.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.SGI.filter4_parameters.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/SGI/filter4_parameters.so building 'GLU.__init___' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLU.__init___.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.__init___.o In file included from src/interface/GLU.__init___.c:7: src/interface/GLU.__init___.0103.inc: In function `_gluNewQuadric': src/interface/GLU.__init___.0103.inc:1243: warning: passing arg 3 of `gluQuadricCallback' from incompatible pointer type src/interface/GLU.__init___.0103.inc: In function `_gluNewTess': src/interface/GLU.__init___.0103.inc:1486: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type src/interface/GLU.__init___.0103.inc: In function `_gluNewNurbsRenderer': src/interface/GLU.__init___.0103.inc:1658: warning: passing arg 3 of `gluNurbsCallback' from incompatible pointer type cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.__init___.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/__init___.so building 'GLUT' extension cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLUT.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLUT.o cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLUT.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -lglut -lXi -lXmu -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLUT.so creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/Togl-1.5 cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -Isrc/Togl-1.5 -I/usr/local/include/tk8.3 -I/usr/local/include/tcl8.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/Togl-1.5/togl.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/Togl-1.5/togl.o -O -pipe -mcpu=pentiumpro src/Togl-1.5/togl.c:119:16: tk.h: No such file or directory src/Togl-1.5/togl.c:141:2: #error Sorry, you will have to edit togl.c to include the right tkInt.h file In file included from src/Togl-1.5/togl.c:156: src/Togl-1.5/togl.h:89:16: tk.h: No such file or directory In file included from src/Togl-1.5/togl.c:156: src/Togl-1.5/togl.h:209: syntax error before "Togl_TkWin" src/Togl-1.5/togl.h:209: warning: data definition has no type or storage class src/Togl-1.5/togl.c:197: syntax error before "Tk_Window" src/Togl-1.5/togl.c:201: syntax error before "Tk_Cursor" src/Togl-1.5/togl.c:296: syntax error before "configSpecs" src/Togl-1.5/togl.c:297: warning: braces around scalar initializer src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:297: `TK_CONFIG_PIXELS' undeclared here (not in a function) src/Togl-1.5/togl.c:297: initializer element is not constant src/Togl-1.5/togl.c:297: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:297: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:297: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:297: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:298: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:298: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:298: syntax error before "struct" src/Togl-1.5/togl.c:298: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:298: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:298: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:298: warning: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:298: initializer element is not constant src/Togl-1.5/togl.c:298: (near initialization for `configSpecs[0]') src/Togl-1.5/togl.c:300: warning: braces around scalar initializer src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:300: `TK_CONFIG_PIXELS' undeclared here (not in a function) src/Togl-1.5/togl.c:300: initializer element is not constant src/Togl-1.5/togl.c:300: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:300: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:300: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:300: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:301: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:301: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:301: syntax error before "struct" src/Togl-1.5/togl.c:301: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:301: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:301: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:301: warning: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:301: initializer element is not constant src/Togl-1.5/togl.c:301: (near initialization for `configSpecs[1]') src/Togl-1.5/togl.c:303: warning: braces around scalar initializer src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:303: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:303: initializer element is not constant src/Togl-1.5/togl.c:303: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:303: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:303: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:303: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:304: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:304: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:304: syntax error before "struct" src/Togl-1.5/togl.c:304: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:304: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:304: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:304: warning: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:304: initializer element is not constant src/Togl-1.5/togl.c:304: (near initialization for `configSpecs[2]') src/Togl-1.5/togl.c:306: warning: braces around scalar initializer src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:306: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:306: initializer element is not constant src/Togl-1.5/togl.c:306: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:306: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:306: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:306: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:307: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:307: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:307: syntax error before "struct" src/Togl-1.5/togl.c:307: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:307: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:307: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:307: warning: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:307: initializer element is not constant src/Togl-1.5/togl.c:307: (near initialization for `configSpecs[3]') src/Togl-1.5/togl.c:309: warning: braces around scalar initializer src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:309: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:309: initializer element is not constant src/Togl-1.5/togl.c:309: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:309: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:309: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:309: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:310: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:310: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:310: syntax error before "struct" src/Togl-1.5/togl.c:310: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:310: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:310: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:310: warning: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:310: initializer element is not constant src/Togl-1.5/togl.c:310: (near initialization for `configSpecs[4]') src/Togl-1.5/togl.c:312: warning: braces around scalar initializer src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:312: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:312: initializer element is not constant src/Togl-1.5/togl.c:312: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:312: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:312: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:312: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:313: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:313: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:313: syntax error before "struct" src/Togl-1.5/togl.c:313: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:313: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:313: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:313: warning: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:313: initializer element is not constant src/Togl-1.5/togl.c:313: (near initialization for `configSpecs[5]') src/Togl-1.5/togl.c:315: warning: braces around scalar initializer src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:315: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:315: initializer element is not constant src/Togl-1.5/togl.c:315: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:315: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:315: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:315: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:316: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:316: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:316: syntax error before "struct" src/Togl-1.5/togl.c:316: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:316: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:316: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:316: warning: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:316: initializer element is not constant src/Togl-1.5/togl.c:316: (near initialization for `configSpecs[6]') src/Togl-1.5/togl.c:318: warning: braces around scalar initializer src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:318: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:318: initializer element is not constant src/Togl-1.5/togl.c:318: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:318: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:318: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:318: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:319: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:319: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:319: syntax error before "struct" src/Togl-1.5/togl.c:319: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:319: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:319: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:319: warning: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:319: initializer element is not constant src/Togl-1.5/togl.c:319: (near initialization for `configSpecs[7]') src/Togl-1.5/togl.c:321: warning: braces around scalar initializer src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:321: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:321: initializer element is not constant src/Togl-1.5/togl.c:321: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:321: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:321: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:321: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:322: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:322: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:322: syntax error before "struct" src/Togl-1.5/togl.c:322: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:322: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:322: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:322: warning: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:322: initializer element is not constant src/Togl-1.5/togl.c:322: (near initialization for `configSpecs[8]') src/Togl-1.5/togl.c:324: warning: braces around scalar initializer src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:324: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:324: initializer element is not constant src/Togl-1.5/togl.c:324: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:324: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:324: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:324: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:325: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:325: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:325: syntax error before "struct" src/Togl-1.5/togl.c:325: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:325: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:325: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:325: warning: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:325: initializer element is not constant src/Togl-1.5/togl.c:325: (near initialization for `configSpecs[9]') src/Togl-1.5/togl.c:327: warning: braces around scalar initializer src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:327: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:327: initializer element is not constant src/Togl-1.5/togl.c:327: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:327: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:327: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:327: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:328: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:328: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:328: syntax error before "struct" src/Togl-1.5/togl.c:328: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:328: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:328: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:328: warning: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:328: initializer element is not constant src/Togl-1.5/togl.c:328: (near initialization for `configSpecs[10]') src/Togl-1.5/togl.c:330: warning: braces around scalar initializer src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:330: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:330: initializer element is not constant src/Togl-1.5/togl.c:330: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:330: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:330: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:330: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:331: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:331: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:331: syntax error before "struct" src/Togl-1.5/togl.c:331: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:331: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:331: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:331: warning: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:331: initializer element is not constant src/Togl-1.5/togl.c:331: (near initialization for `configSpecs[11]') src/Togl-1.5/togl.c:333: warning: braces around scalar initializer src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:333: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:333: initializer element is not constant src/Togl-1.5/togl.c:333: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:333: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:333: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:333: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:334: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:334: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:334: syntax error before "struct" src/Togl-1.5/togl.c:334: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:334: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:334: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:334: warning: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:334: initializer element is not constant src/Togl-1.5/togl.c:334: (near initialization for `configSpecs[12]') src/Togl-1.5/togl.c:336: warning: braces around scalar initializer src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:336: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:336: initializer element is not constant src/Togl-1.5/togl.c:336: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:336: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:336: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:336: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:337: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:337: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:337: syntax error before "struct" src/Togl-1.5/togl.c:337: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:337: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:337: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:337: warning: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:337: initializer element is not constant src/Togl-1.5/togl.c:337: (near initialization for `configSpecs[13]') src/Togl-1.5/togl.c:339: warning: braces around scalar initializer src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:339: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:339: initializer element is not constant src/Togl-1.5/togl.c:339: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:339: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:339: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:339: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:340: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:340: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:340: syntax error before "struct" src/Togl-1.5/togl.c:340: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:340: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:340: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:340: warning: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:340: initializer element is not constant src/Togl-1.5/togl.c:340: (near initialization for `configSpecs[14]') src/Togl-1.5/togl.c:342: warning: braces around scalar initializer src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:342: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:342: initializer element is not constant src/Togl-1.5/togl.c:342: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:342: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:342: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:342: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:343: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:343: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:343: syntax error before "struct" src/Togl-1.5/togl.c:343: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:343: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:343: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:343: warning: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:343: initializer element is not constant src/Togl-1.5/togl.c:343: (near initialization for `configSpecs[15]') src/Togl-1.5/togl.c:345: warning: braces around scalar initializer src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:345: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:345: initializer element is not constant src/Togl-1.5/togl.c:345: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:345: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:345: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:345: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:346: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:346: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:346: syntax error before "struct" src/Togl-1.5/togl.c:346: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:346: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:346: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:346: warning: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:346: initializer element is not constant src/Togl-1.5/togl.c:346: (near initialization for `configSpecs[16]') src/Togl-1.5/togl.c:348: warning: braces around scalar initializer src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:348: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:348: initializer element is not constant src/Togl-1.5/togl.c:348: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:348: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:348: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:348: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:349: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:349: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:349: syntax error before "struct" src/Togl-1.5/togl.c:349: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:349: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:349: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:349: warning: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:349: initializer element is not constant src/Togl-1.5/togl.c:349: (near initialization for `configSpecs[17]') src/Togl-1.5/togl.c:351: warning: braces around scalar initializer src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:351: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:351: initializer element is not constant src/Togl-1.5/togl.c:351: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:351: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:351: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:351: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:352: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:352: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:352: syntax error before "struct" src/Togl-1.5/togl.c:352: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:352: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:352: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:352: warning: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:352: initializer element is not constant src/Togl-1.5/togl.c:352: (near initialization for `configSpecs[18]') src/Togl-1.5/togl.c:354: warning: braces around scalar initializer src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:354: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:354: initializer element is not constant src/Togl-1.5/togl.c:354: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:354: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:354: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:354: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:355: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:355: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:355: syntax error before "struct" src/Togl-1.5/togl.c:355: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:355: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:355: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:355: warning: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:355: initializer element is not constant src/Togl-1.5/togl.c:355: (near initialization for `configSpecs[19]') src/Togl-1.5/togl.c:357: warning: braces around scalar initializer src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:357: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:357: initializer element is not constant src/Togl-1.5/togl.c:357: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:357: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:357: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:357: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:358: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:358: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:358: syntax error before "struct" src/Togl-1.5/togl.c:358: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:358: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:358: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:358: warning: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:358: initializer element is not constant src/Togl-1.5/togl.c:358: (near initialization for `configSpecs[20]') src/Togl-1.5/togl.c:360: warning: braces around scalar initializer src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:360: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) src/Togl-1.5/togl.c:360: initializer element is not constant src/Togl-1.5/togl.c:360: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:360: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:360: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:360: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:361: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:361: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:361: syntax error before "struct" src/Togl-1.5/togl.c:361: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:361: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:361: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:361: warning: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:361: initializer element is not constant src/Togl-1.5/togl.c:361: (near initialization for `configSpecs[21]') src/Togl-1.5/togl.c:364: warning: braces around scalar initializer src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:364: `TK_CONFIG_ACTIVE_CURSOR' undeclared here (not in a function) src/Togl-1.5/togl.c:364: initializer element is not constant src/Togl-1.5/togl.c:364: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:364: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:364: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:364: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:365: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:365: warning: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:365: syntax error before "struct" src/Togl-1.5/togl.c:365: `TK_CONFIG_NULL_OK' undeclared here (not in a function) src/Togl-1.5/togl.c:365: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:365: warning: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:365: initializer element is not constant src/Togl-1.5/togl.c:365: (near initialization for `configSpecs[22]') src/Togl-1.5/togl.c:368: warning: braces around scalar initializer src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:368: `TK_CONFIG_INT' undeclared here (not in a function) src/Togl-1.5/togl.c:368: initializer element is not constant src/Togl-1.5/togl.c:368: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:368: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:368: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:368: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:369: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:369: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:369: syntax error before "struct" src/Togl-1.5/togl.c:369: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:369: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:369: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:369: warning: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:369: initializer element is not constant src/Togl-1.5/togl.c:369: (near initialization for `configSpecs[23]') src/Togl-1.5/togl.c:371: warning: braces around scalar initializer src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:371: `TK_CONFIG_STRING' undeclared here (not in a function) src/Togl-1.5/togl.c:371: initializer element is not constant src/Togl-1.5/togl.c:371: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:371: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:371: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:371: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:372: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:372: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:372: syntax error before "struct" src/Togl-1.5/togl.c:372: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:372: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:372: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:372: warning: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:372: initializer element is not constant src/Togl-1.5/togl.c:372: (near initialization for `configSpecs[24]') src/Togl-1.5/togl.c:374: warning: braces around scalar initializer src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:374: `TK_CONFIG_STRING' undeclared here (not in a function) src/Togl-1.5/togl.c:374: initializer element is not constant src/Togl-1.5/togl.c:374: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:374: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:374: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:374: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:375: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:375: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:375: syntax error before "struct" src/Togl-1.5/togl.c:375: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:375: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:375: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:375: warning: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:375: initializer element is not constant src/Togl-1.5/togl.c:375: (near initialization for `configSpecs[25]') src/Togl-1.5/togl.c:377: warning: braces around scalar initializer src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:377: `TK_CONFIG_STRING' undeclared here (not in a function) src/Togl-1.5/togl.c:377: initializer element is not constant src/Togl-1.5/togl.c:377: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:377: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:377: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:377: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:378: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:378: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:378: syntax error before "struct" src/Togl-1.5/togl.c:378: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:378: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:378: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:378: warning: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:378: initializer element is not constant src/Togl-1.5/togl.c:378: (near initialization for `configSpecs[26]') src/Togl-1.5/togl.c:380: warning: braces around scalar initializer src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:380: `TK_CONFIG_END' undeclared here (not in a function) src/Togl-1.5/togl.c:380: initializer element is not constant src/Togl-1.5/togl.c:380: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:380: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:380: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:380: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:381: initializer element is not constant src/Togl-1.5/togl.c:381: (near initialization for `configSpecs[27]') src/Togl-1.5/togl.c:382: warning: data definition has no type or storage class src/Togl-1.5/togl.c: In function `Togl_Timer': src/Togl-1.5/togl.c:826: warning: assignment makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_MakeCurrent': src/Togl-1.5/togl.c:859: structure has no member named `TkWin' src/Togl-1.5/togl.c:860: structure has no member named `TkWin' src/Togl-1.5/togl.c:861: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `RenderOverlay': src/Togl-1.5/togl.c:899: structure has no member named `TkWin' src/Togl-1.5/togl.c:901: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_Configure': src/Togl-1.5/togl.c:939: structure has no member named `TkWin' src/Togl-1.5/togl.c:944: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `Togl_Widget': src/Togl-1.5/togl.c:1001: structure has no member named `TkWin' src/Togl-1.5/togl.c:1014: structure has no member named `TkWin' src/Togl-1.5/togl.c:1021: `TK_CONFIG_ARGV_ONLY' undeclared (first use in this function) src/Togl-1.5/togl.c:1021: (Each undeclared identifier is reported only once src/Togl-1.5/togl.c:1021: for each function it appears in.) src/Togl-1.5/togl.c: In function `Togl_Cmd': src/Togl-1.5/togl.c:1079: syntax error before "main" src/Togl-1.5/togl.c:1089: `tkwin' undeclared (first use in this function) src/Togl-1.5/togl.c:1089: `main' undeclared (first use in this function) src/Togl-1.5/togl.c:1110: warning: assignment makes pointer from integer without a cast src/Togl-1.5/togl.c:1111: structure has no member named `TkWin' src/Togl-1.5/togl.c:1114: structure has no member named `Cursor' src/Togl-1.5/togl.c:1158: warning: passing arg 2 of `Tcl_CreateCommand' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `SetupOverlay': src/Togl-1.5/togl.c:1240: `TkWindow' undeclared (first use in this function) src/Togl-1.5/togl.c:1240: `winPtr' undeclared (first use in this function) src/Togl-1.5/togl.c:1240: syntax error before ')' token src/Togl-1.5/togl.c:1246: structure has no member named `TkWin' src/Togl-1.5/togl.c:1246: warning: assignment makes pointer from integer without a cast src/Togl-1.5/togl.c:1284: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `Togl_MakeWindowExist': src/Togl-1.5/togl.c:1361: `TkWindow' undeclared (first use in this function) src/Togl-1.5/togl.c:1361: `winPtr' undeclared (first use in this function) src/Togl-1.5/togl.c:1361: syntax error before ')' token src/Togl-1.5/togl.c:1362: `winPtr2' undeclared (first use in this function) src/Togl-1.5/togl.c:1389: structure has no member named `TkWin' src/Togl-1.5/togl.c:1389: warning: assignment makes pointer from integer without a cast src/Togl-1.5/togl.c:1523: `TK_TOP_LEVEL' undeclared (first use in this function) src/Togl-1.5/togl.c:1528: `Tk_Window' undeclared (first use in this function) src/Togl-1.5/togl.c:1528: syntax error before "winPtr" src/Togl-1.5/togl.c:1671: structure has no member named `TkWin' src/Togl-1.5/togl.c:1753: `TK_NEED_CONFIG_NOTIFY' undeclared (first use in this function) src/Togl-1.5/togl.c:1754: `TK_ALREADY_DEAD' undeclared (first use in this function) src/Togl-1.5/togl.c:1781: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `ToglCmdDeletedProc': src/Togl-1.5/togl.c:1843: syntax error before "tkwin" src/Togl-1.5/togl.c:1853: `tkwin' undeclared (first use in this function) src/Togl-1.5/togl.c:1869: `TkWindow' undeclared (first use in this function) src/Togl-1.5/togl.c:1869: `winPtr' undeclared (first use in this function) src/Togl-1.5/togl.c:1869: syntax error before ')' token src/Togl-1.5/togl.c:1879: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `Togl_Destroy': src/Togl-1.5/togl.c:1901: structure has no member named `Cursor' src/Togl-1.5/togl.c:1902: structure has no member named `Cursor' src/Togl-1.5/togl.c: In function `Togl_EventProc': src/Togl-1.5/togl.c:1928: structure has no member named `TkWin' src/Togl-1.5/togl.c:1941: structure has no member named `TkWin' src/Togl-1.5/togl.c:1942: structure has no member named `TkWin' src/Togl-1.5/togl.c:1943: structure has no member named `TkWin' src/Togl-1.5/togl.c:1944: structure has no member named `TkWin' src/Togl-1.5/togl.c:1945: structure has no member named `TkWin' src/Togl-1.5/togl.c:1945: structure has no member named `TkWin' src/Togl-1.5/togl.c:1946: warning: passing arg 1 of `XResizeWindow' makes pointer from integer without a cast src/Togl-1.5/togl.c:1949: structure has no member named `TkWin' src/Togl-1.5/togl.c:1950: warning: passing arg 1 of `XResizeWindow' makes pointer from integer without a cast src/Togl-1.5/togl.c:1951: structure has no member named `TkWin' src/Togl-1.5/togl.c:1951: warning: passing arg 1 of `XRaiseWindow' makes pointer from integer without a cast src/Togl-1.5/togl.c:1976: structure has no member named `TkWin' src/Togl-1.5/togl.c:1977: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `Togl_SwapBuffers': src/Togl-1.5/togl.c:2031: structure has no member named `TkWin' src/Togl-1.5/togl.c:2031: structure has no member named `TkWin' src/Togl-1.5/togl.c:2031: warning: passing arg 1 of `glXSwapBuffers' makes pointer from integer without a cast src/Togl-1.5/togl.c: At top level: src/Togl-1.5/togl.c:2065: syntax error before "Togl_TkWin" src/Togl-1.5/togl.c: In function `Togl_TkWin': src/Togl-1.5/togl.c:2067: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `Togl_AllocColor': src/Togl-1.5/togl.c:2283: structure has no member named `TkWin' src/Togl-1.5/togl.c:2283: structure has no member named `TkWin' src/Togl-1.5/togl.c:2284: structure has no member named `TkWin' src/Togl-1.5/togl.c:2284: invalid type argument of `->' src/Togl-1.5/togl.c:2284: warning: passing arg 1 of `noFaultXAllocColor' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_FreeColor': src/Togl-1.5/togl.c:2313: structure has no member named `TkWin' src/Togl-1.5/togl.c:2313: structure has no member named `TkWin' src/Togl-1.5/togl.c:2314: warning: passing arg 1 of `XFreeColors' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_SetColor': src/Togl-1.5/togl.c:2343: structure has no member named `TkWin' src/Togl-1.5/togl.c:2343: structure has no member named `TkWin' src/Togl-1.5/togl.c:2343: warning: passing arg 1 of `XStoreColor' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_LoadBitmapFont': src/Togl-1.5/togl.c:2444: structure has no member named `TkWin' src/Togl-1.5/togl.c:2444: warning: passing arg 1 of `XLoadQueryFont' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_UseLayer': src/Togl-1.5/togl.c:2528: structure has no member named `TkWin' src/Togl-1.5/togl.c:2530: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast src/Togl-1.5/togl.c:2543: structure has no member named `TkWin' src/Togl-1.5/togl.c:2544: structure has no member named `TkWin' src/Togl-1.5/togl.c:2545: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_ShowOverlay': src/Togl-1.5/togl.c:2565: structure has no member named `TkWin' src/Togl-1.5/togl.c:2565: warning: passing arg 1 of `XMapWindow' makes pointer from integer without a cast src/Togl-1.5/togl.c:2566: structure has no member named `TkWin' src/Togl-1.5/togl.c:2566: warning: passing arg 1 of `XInstallColormap' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_HideOverlay': src/Togl-1.5/togl.c:2577: structure has no member named `TkWin' src/Togl-1.5/togl.c:2577: warning: passing arg 1 of `XUnmapWindow' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_AllocColorOverlay': src/Togl-1.5/togl.c:2627: structure has no member named `TkWin' src/Togl-1.5/togl.c:2627: warning: passing arg 1 of `XAllocColor' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_FreeColorOverlay': src/Togl-1.5/togl.c:2641: structure has no member named `TkWin' src/Togl-1.5/togl.c:2642: warning: passing arg 1 of `XFreeColors' makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_Display': src/Togl-1.5/togl.c:2679: structure has no member named `TkWin' src/Togl-1.5/togl.c:2679: warning: return makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_Screen': src/Togl-1.5/togl.c:2684: structure has no member named `TkWin' src/Togl-1.5/togl.c:2684: warning: return makes pointer from integer without a cast src/Togl-1.5/togl.c: In function `Togl_ScreenNumber': src/Togl-1.5/togl.c:2689: structure has no member named `TkWin' src/Togl-1.5/togl.c: In function `Togl_Colormap': src/Togl-1.5/togl.c:2694: structure has no member named `TkWin' error: command 'cc' failed with exit status 1 *** Error code 1 Stop in /usr/ports/graphics/py-opengl. ! graphics/py-opengl (missing header) --------------060205030009050203020007-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 16:32:43 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9228E37B401 for ; Sat, 16 Aug 2003 16:32:43 -0700 (PDT) Received: from relay11.melbpc.org.au (finch.melbpc.org.au [203.12.152.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D2243F75 for ; Sat, 16 Aug 2003 16:32:39 -0700 (PDT) (envelope-from kpeter@melbpc.org.au) Received: from melbpc.org.au (a2-80.melbpc.org.au [203.12.157.80]) by relay11.melbpc.org.au (8.12.6/8.12.5) with ESMTP id h7GNWVYn077739 for ; Sun, 17 Aug 2003 09:32:32 +1000 (EST) (envelope-from kpeter@melbpc.org.au) Message-ID: <3F3EBF0C.8000800@melbpc.org.au> Date: Sun, 17 Aug 2003 09:32:28 +1000 From: Peter Kostouros Organization: Melbourne PC User Group User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20030808 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.ORG Content-Type: multipart/mixed; boundary="------------080705060805090401050505" X-RAVMilter-Version: 8.3.4(snapshot 20020706) (relay11) Subject: gnucash/gnucash-docs: difficulty installing on FreeBSD 5.1-CURRENT X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kpeter@melbpc.org.au List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 23:32:43 -0000 This is a multi-part message in MIME format. --------------080705060805090401050505 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi I am having difficulty installing gnu-cash: make install terminates during processing of gnucash-docs. I have attached the make install log produced for gnucash-docs. I am not sure if it is my system's setup, but if anyone can lead me in the right direction ... As a side issue, I noted a problem during the configure stage of gnu-cash: it complained that libtool-devel was not installed. I re-built libtool15 with the line CONFIGURE_ARGS?= --disable-ltdl-install removed to get things moving. -- Regards Peter As always the organisation disavows knowledge of this email --------------080705060805090401050505 Content-Type: text/plain; name="log.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="log.txt" ===> Installing for gnucash-docs-1.8.1 ===> gnucash-docs-1.8.1 depends on executable: scrollkeeper-config - found ===> gnucash-docs-1.8.1 depends on file: /usr/X11R6/share/gnome/.keep_me - found ===> gnucash-docs-1.8.1 depends on shared library: X11.6 - found ===> Generating temporary packing list ===> Checking if finance/gnucash-docs already installed Making install in help gmake[1]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help' Making install in C gmake[2]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/C' gmake[3]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/C' gmake[3]: Nothing to be done for `install-exec-am'. /bin/sh ../../mkinstalldirs gnucash-help; \ for file in gnucash-help.xml; do \ xsltproc -o gnucash-help/ --param use.id.as.filename 1 \ ../../xsl/general-customization.xsl ./$file; \ done mkdir gnucash-help Writing titlepage.html for article(help) Writing intro-to-gnucash.html for sect1(intro-to-gnucash) Writing getting-started.html for sect1(getting-started) Writing usage.html for sect1(usage) Writing custom-gnucash.html for sect1(custom-gnucash) Writing fdl-preamble.html for sect1(fdl-preamble) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-secondary. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Writing fdl-section1.html for sect1(fdl-section1) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section3. Writing fdl-section2.html for sect1(fdl-section2) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-transparent. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-transparent. Error: no ID for constraint linkend: fdl-document. Writing fdl-section3.html for sect1(fdl-section3) Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section2. Error: no ID for constraint linkend: fdl-section3. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-transparent. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-secondary. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Writing fdl-section4.html for sect1(fdl-section4) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section4. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-invariant. Writing fdl-section5.html for sect1(fdl-section5) Error: no ID for constraint linkend: fdl-document. Writing fdl-section6.html for sect1(fdl-section6) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-section3. Writing fdl-section7.html for sect1(fdl-section7) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section4. Error: no ID for constraint linkend: fdl-invariant. Writing fdl-section8.html for sect1(fdl-section8) Error: no ID for constraint linkend: fdl-document. Writing fdl-section9.html for sect1(fdl-section9) Error: no ID for constraint linkend: fdl-document. Writing fdl-section10.html for sect1(fdl-section10) Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Writing fdl-using.html for sect1(fdl-using) Writing fdl.html for appendix(fdl) Writing help.html for article(help) /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/C for file in fdl-appendix.xml legal.xml chartofaccts.xml chtacctseg.xml txf-categories.xml gnucash-help.xml; do \ cp ./$file /usr/X11R6/share/gnome/help/gnucash/C; \ done /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/C/gnucash-help; \ for file in gnucash-help/*.html; do \ basefile=`echo $file | sed -e 's,^.*/,,'`; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/C/gnucash-help/$basefile; \ done if test "figures"; then \ /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/C/figures; \ /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/C/gnucash-help/figures; \ for file in ./figures/*.png; do \ basefile=`echo $file | sed -e 's,^.*/,,'`; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/C/figures/$basefile; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/C/gnucash-help/figures/$basefile; \ done \ fi /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/C/gnucash-help/stylesheet; \ for file in ../../stylesheet/*.png; do \ basefile=`echo $file | sed -e 's,^.*/,,'`; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/C/gnucash-help/stylesheet/$basefile; \ done gmake install-data-hook gmake[4]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/C' /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/omf/gnucash-docs for file in gnucash-help-C.omf; do \ install -o root -g wheel -m 444 $file.out /usr/X11R6/share/gnome/omf/gnucash-docs/$file; \ done scrollkeeper-update -p /var/db/scrollkeeper -o /usr/X11R6/share/gnome/omf/gnucash-docs gmake[4]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/C' gmake[3]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/C' gmake[2]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/C' Making install in de_DE gmake[2]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/de_DE' gmake[3]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/de_DE' gmake[3]: Nothing to be done for `install-exec-am'. /bin/sh ../../mkinstalldirs gnucash-help; \ for file in gnucash-help.xml; do \ xsltproc -o gnucash-help/ --param use.id.as.filename 1 \ ../../xsl/general-customization.xsl ./$file; \ done mkdir gnucash-help No template named "articleinfo" exists in the context named "title" in the "de" localization. No template named "articleinfo" exists in the context named "title" in the "de" localization. No "de" localization of "Author" exists; using "en". No "de" localization of "Affiliation" exists; using "en". No "de" localization of "Email" exists; using "en". No "de" localization of "Affiliation" exists; using "en". No "de" localization of "Email" exists; using "en". No "de" localization of "Affiliation" exists; using "en". No "de" localization of "Email" exists; using "en". No "de" localization of "Publisher" exists; using "en". No "de" localization of "History" exists; using "en". No "de" localization of "Title" exists; using "en". No "de" localization of "Date" exists; using "en". No "de" localization of "Author" exists; using "en". No "de" localization of "Publisher" exists; using "en". Writing titlepage.html for article(help) Error: no ID for constraint linkend: usage. XRef to nonexistent id: usage Writing intro-to-gnucash.html for sect1(intro-to-gnucash) Writing getting-started.html for sect1(getting-started) Writing usage.html for sect1(usage) Writing custom-gnucash.html for sect1(custom-gnucash) Writing fdl-preamble.html for sect1(fdl-preamble) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-secondary. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Writing fdl-section1.html for sect1(fdl-section1) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section3. Writing fdl-section2.html for sect1(fdl-section2) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-transparent. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-transparent. Error: no ID for constraint linkend: fdl-document. Writing fdl-section3.html for sect1(fdl-section3) Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section2. Error: no ID for constraint linkend: fdl-section3. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-title-page. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-transparent. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-secondary. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Writing fdl-section4.html for sect1(fdl-section4) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section4. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-invariant. Writing fdl-section5.html for sect1(fdl-section5) Error: no ID for constraint linkend: fdl-document. Writing fdl-section6.html for sect1(fdl-section6) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-modified. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-section3. Writing fdl-section7.html for sect1(fdl-section7) Error: no ID for constraint linkend: fdl-document. Error: no ID for constraint linkend: fdl-section4. Error: no ID for constraint linkend: fdl-invariant. Writing fdl-section8.html for sect1(fdl-section8) Error: no ID for constraint linkend: fdl-document. Writing fdl-section9.html for sect1(fdl-section9) Error: no ID for constraint linkend: fdl-document. Writing fdl-section10.html for sect1(fdl-section10) Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-invariant. Error: no ID for constraint linkend: fdl-cover-texts. Error: no ID for constraint linkend: fdl-cover-texts. Writing fdl-using.html for sect1(fdl-using) Writing fdl.html for appendix(fdl) No template named "articleinfo" exists in the context named "title" in the "de" localization. Writing help.html for article(help) /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/de_DE for file in fdl-appendix.xml legal.xml chartofaccts.xml chtacctseg.xml txf-categories.xml gnucash-help.xml; do \ cp ./$file /usr/X11R6/share/gnome/help/gnucash/de_DE; \ done /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/de_DE/gnucash-help; \ for file in gnucash-help/*.html; do \ basefile=`echo $file | sed -e 's,^.*/,,'`; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/de_DE/gnucash-help/$basefile; \ done if test "figures"; then \ /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/de_DE/figures; \ /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/de_DE/gnucash-help/figures; \ for file in ./figures/*.png; do \ basefile=`echo $file | sed -e 's,^.*/,,'`; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/de_DE/figures/$basefile; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/de_DE/gnucash-help/figures/$basefile; \ done \ fi /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/help/gnucash/de_DE/gnucash-help/stylesheet; \ for file in ../../stylesheet/*.png; do \ basefile=`echo $file | sed -e 's,^.*/,,'`; \ install -o root -g wheel -m 444 $file /usr/X11R6/share/gnome/help/gnucash/de_DE/gnucash-help/stylesheet/$basefile; \ done gmake install-data-hook gmake[4]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/de_DE' /bin/sh ../../mkinstalldirs /usr/X11R6/share/gnome/omf/gnucash-docs for file in gnucash-help-de_DE.omf; do \ install -o root -g wheel -m 444 $file.out /usr/X11R6/share/gnome/omf/gnucash-docs/$file; \ done scrollkeeper-update -p /var/db/scrollkeeper -o /usr/X11R6/share/gnome/omf/gnucash-docs gmake[4]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/de_DE' gmake[3]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/de_DE' gmake[2]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help/de_DE' gmake[2]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help' gmake[3]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help' gmake[3]: Nothing to be done for `install-exec-am'. gmake[3]: Nothing to be done for `install-data-am'. gmake[3]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help' gmake[2]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help' gmake[1]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/help' Making install in guide gmake[1]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/guide' Making install in C gmake[2]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/guide/C' gmake[3]: Entering directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/guide/C' gmake[3]: Nothing to be done for `install-exec-am'. /bin/sh ../../mkinstalldirs gnucash-guide; \ for file in gnucash-guide.xml; do \ xsltproc -o gnucash-guide/ --param use.id.as.filename 1 \ ../../xsl/general-customization.xsl ./$file; \ done mkdir gnucash-guide chapter4.xml:208: error: Entity 'darr' not defined Enter or to move to the next transactio ^ chapter4.xml:208: error: Entity 'uarr' not defined ycap> or to move to the next transaction, ↑ ^ chapter4.xml:238: error: Entity 'uarr' not defined and navigate through the entries ^ chapter4.xml:238: error: Entity 'darr' not defined and navigate through the entries ^ chapter4.xml:434: error: chunk is not well balanced ^ ./gnucash-guide.xml:160: error: Failure to process entity chapter4 &chapter4; ^ ./gnucash-guide.xml:160: error: Entity 'chapter4' not defined &chapter4; ^ unable to parse ./gnucash-guide.xml gmake[3]: *** [convert-html] Error 6 gmake[3]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/guide/C' gmake[2]: *** [install-am] Error 2 gmake[2]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/guide/C' gmake[1]: *** [install-recursive] Error 1 gmake[1]: Leaving directory `/mnt/cvs2/mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs/work/gnucash-docs-1.8.1/guide' gmake: *** [install-recursive] Error 1 *** Error code 2 Stop in /mnt/cvs/FreeBSD/usr/ports/finance/gnucash-docs. --------------080705060805090401050505-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 16:33:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A90ED37B405 for ; Sat, 16 Aug 2003 16:33:55 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1578143F93 for ; Sat, 16 Aug 2003 16:33:54 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7GNTumY052686 for ; Sat, 16 Aug 2003 19:29:57 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7GNTuhe052685 for ports@FreeBSD.org; Sat, 16 Aug 2003 19:29:56 -0400 (EDT) Date: Sat, 16 Aug 2003 19:29:56 -0400 (EDT) From: Kris Kennaway Message-Id: <200308162329.h7GNTuhe052685@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 23:33:56 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U databases/libgda2/Makefile U devel/portlint/Makefile U devel/portlint/src/portlint.pl ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/xfce4-battery-plugin/Makefile U sysutils/xfce4-showdesktop-plugin/Makefile U sysutils/xfce4-systemload-plugin/Makefile ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 16:51:40 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 930B437B401 for ; Sat, 16 Aug 2003 16:51:40 -0700 (PDT) Received: from paiol.terra.com.br (paiol.terra.com.br [200.176.3.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84EB743FA3 for ; Sat, 16 Aug 2003 16:51:34 -0700 (PDT) (envelope-from pasquall@terra.com.br) Received: from gunga.terra.com.br (gunga.terra.com.br [200.176.3.45]) by paiol.terra.com.br (Postfix) with ESMTP id 347DD848333 for ; Sat, 16 Aug 2003 20:51:33 -0300 (BRT) Received: from terra.com.br (200-207-162-249.dsl.telesp.net.br [200.207.162.249]) (authenticated user pasquall) by gunga.terra.com.br (Postfix) with ESMTP id A9AFA12805B for ; Sat, 16 Aug 2003 20:51:21 -0300 (BRT) Message-ID: <3F3EC376.6010205@terra.com.br> Date: Sat, 16 Aug 2003 20:51:18 -0300 From: "Luiz Fernando Pasqual S. Souza" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030725 X-Accept-Language: pt-br, en, en-us MIME-Version: 1.0 To: ports@freebsd.org References: <3F3EBC36.4050301@terra.com.br> In-Reply-To: <3F3EBC36.4050301@terra.com.br> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD Port: py-opengl-2.0.0.44 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Aug 2003 23:51:41 -0000 I found the problem, I installed the togl package, it's a dependency. Here is a suggestion, you could include togl as dependency in the package. []'s Luiz Fernando Pasqual S. Souza wrote: > Hi, > > I've been trying to install py-opengl-2.0.0.44 via ports, but I get an > error message and I can't understand it. Can you help me? > > I saved the output of make install in the file attached. > > Thank you > > > ------------------------------------------------------------------------ > > ---> Installing 'py-opengl-2.0.0.44' from a port (graphics/py-opengl) > ---> Building '/usr/ports/graphics/py-opengl' > ===> Cleaning for libiconv-1.9.1_1 > ===> Cleaning for gettext-0.11.5_1 > ===> Cleaning for gmake-3.80 > ===> Cleaning for imake-4.3.0_1 > ===> Cleaning for libtool-1.3.5_1 > ===> Cleaning for pkgconfig-0.15.0 > ===> Cleaning for swig-1.1p5_8 > ===> Cleaning for Mesa-3.4.2_2 > ===> Cleaning for jpeg-6b_1 > ===> Cleaning for py23-imaging-1.1.4 > ===> Cleaning for perl-5.6.1_13 > ===> Cleaning for python-2.3 > ===> Cleaning for tcl-8.3.5_2 > ===> Cleaning for tcl-8.4.4,1 > ===> Cleaning for py23-numeric-23.0 > ===> Cleaning for freetype2-2.1.4_1 > ===> Cleaning for expat-1.95.6_1 > ===> Cleaning for fontconfig-2.2.90_3 > ===> Cleaning for py23-tkinter-2.3_1 > ===> Cleaning for tk-8.4.4,1 > ===> Cleaning for XFree86-libraries-4.3.0_5 > ===> Cleaning for py-opengl-2.0.0.44 > ===> Extracting for py-opengl-2.0.0.44 > >>>Checksum OK for PyOpenGL-2.0.0.44.tar.gz. > > ===> Patching for py-opengl-2.0.0.44 > ===> Applying FreeBSD patches for py-opengl-2.0.0.44 > ===> py-opengl-2.0.0.44 depends on file: /usr/local/lib/python2.3/site-packages/Numeric/Numeric.py - found > ===> py-opengl-2.0.0.44 depends on file: /usr/local/lib/python2.3/site-packages/_tkinter.so - found > ===> py-opengl-2.0.0.44 depends on file: /usr/local/lib/python2.3/site-packages/PIL.pth - found > ===> py-opengl-2.0.0.44 depends on executable: swig - found > ===> py-opengl-2.0.0.44 depends on file: /usr/local/bin/python2.3 - found > ===> py-opengl-2.0.0.44 depends on shared library: glut.3 - found > ===> Configuring for py-opengl-2.0.0.44 > ===> Building for py-opengl-2.0.0.44 > /usr/local/lib/python2.3/distutils/dist.py:213: UserWarning: 'licence' distribution option is deprecated; use 'license' > warnings.warn(msg) > running build > running build_w > swig -version > > SWIG Version 1.1 (Patch 5) > Copyright (c) 1995-98 > University of Utah and the Regents of the University of California > > Compiled with c++ > warning: build_w: Can't find SWIG, will just have to do with the existing wrapper source. > running build_py > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c _configtest.c -o _configtest.o > cc _configtest.o -L/usr/local/lib/python2.3/site-packages -o _configtest > _configtest > removing: _configtest.c _configtest.o _configtest > creating build > creating build/lib.freebsd-5.1-RELEASE-i386-2.3 > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL > copying src/shadow/GL.__init__.0101.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/__init__.py > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c _configtest.c -o _configtest.o > cc _configtest.o -L/usr/local/lib/python2.3/site-packages -o _configtest > _configtest > removing: _configtest.c _configtest.o _configtest > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU > copying src/shadow/GLU.__init__.0103.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/__init__.py > copying OpenGL/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL > copying OpenGL/quaternion.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL > copying OpenGL/trackball.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Tk > copying OpenGL/Tk/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Tk > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX > copying OpenGL/GLX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/_3DFX > copying OpenGL/GLX/_3DFX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/_3DFX > copying OpenGL/GLX/_3DFX/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/_3DFX > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/SGIS > copying OpenGL/GLX/SGIS/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/SGIS > copying OpenGL/GLX/SGIS/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/SGIS > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/EXT > copying OpenGL/GLX/EXT/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/EXT > copying OpenGL/GLX/EXT/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/EXT > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/ARB > copying OpenGL/GLX/ARB/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/ARB > copying OpenGL/GLX/ARB/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLX/ARB > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/SGI > copying OpenGL/GLU/SGI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/SGI > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT > copying OpenGL/GLU/EXT/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT > copying OpenGL/GLU/EXT/nurbs_tessellator.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT > copying OpenGL/GLU/EXT/object_space_tess.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/EXT > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX > copying OpenGL/GL/_3DFX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX > copying OpenGL/GL/_3DFX/multisample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX > copying OpenGL/GL/_3DFX/texture_compression_FXT1.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN > copying OpenGL/GL/WIN/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN > copying OpenGL/GL/WIN/phong_shading.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN > copying OpenGL/GL/WIN/specular_fog.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUNX > copying OpenGL/GL/SUNX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUNX > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN > copying OpenGL/GL/SUN/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN > copying OpenGL/GL/SUN/convolution_border_modes.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/async_histogram.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/async_pixel.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/blend_alpha_minmax.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/clipmap.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/depth_texture.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/fog_offset.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/interlace.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/ir_instrument1.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/pixel_texture_bits.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/resample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/shadow.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/shadow_ambient.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/texture_env_add.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/texture_lod_bias.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/texture_multi_buffer.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/texture_range.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/texture_scale_bias.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/vertex_preclip.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > copying OpenGL/GL/SGIX/ycrcb.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > copying OpenGL/GL/SGIS/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > copying OpenGL/GL/SGIS/generate_mipmap.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > copying OpenGL/GL/SGIS/texture_border_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > copying OpenGL/GL/SGIS/texture_edge_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > copying OpenGL/GL/SGIS/texture_lod.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > copying OpenGL/GL/SGIS/texture_select.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI > copying OpenGL/GL/SGI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI > copying OpenGL/GL/SGI/color_matrix.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI > copying OpenGL/GL/SGI/texture_color_table.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGI > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/S3 > copying OpenGL/GL/S3/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/S3 > copying OpenGL/GL/S3/s3tc.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/S3 > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/REND > copying OpenGL/GL/REND/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/REND > copying OpenGL/GL/REND/screen_coordinates.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/REND > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI > copying OpenGL/GL/PGI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI > copying OpenGL/GL/PGI/vertex_hints.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML > copying OpenGL/GL/OML/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML > copying OpenGL/GL/OML/interlace.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML > copying OpenGL/GL/OML/resample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML > copying OpenGL/GL/OML/subsample.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/OML > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/blend_square.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/fog_distance.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/light_max_exponent.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/packed_depth_stencil.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texgen_emboss.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texgen_reflection.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texture_compression_vtc.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texture_env_combine4.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texture_rectangle.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texture_shader.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/texture_shader2.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > copying OpenGL/GL/NV/vertex_array_range2.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA > copying OpenGL/GL/MESA/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/KTX > copying OpenGL/GL/KTX/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/KTX > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INTEL > copying OpenGL/GL/INTEL/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INTEL > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR > copying OpenGL/GL/INGR/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR > copying OpenGL/GL/INGR/color_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR > copying OpenGL/GL/INGR/interlace_read.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INGR > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM > copying OpenGL/GL/IBM/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM > copying OpenGL/GL/IBM/cull_vertex.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM > copying OpenGL/GL/IBM/pixel_transform_color_table.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM > copying OpenGL/GL/IBM/rasterpos_clip.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM > copying OpenGL/GL/IBM/texture_mirrored_repeat.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP > copying OpenGL/GL/HP/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP > copying OpenGL/GL/HP/convolution_border_modes.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP > copying OpenGL/GL/HP/occlusion_test.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP > copying OpenGL/GL/HP/texture_lighting.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/_422_pixels.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/abgr.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/bgra.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/blend_logic_op.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/blend_subtract.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/clip_volume_hint.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/cmyka.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/index_array_formats.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/index_texture.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/misc_attribute.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/packed_pixels.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/rescale_normal.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/separate_specular_color.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/shared_texture_palette.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/stencil_wrap.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_compression_s3tc.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_cube_map.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_env_add.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_env_combine.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_env_dot3.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_filter_anisotropic.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_lod.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > copying OpenGL/GL/EXT/texture_lod_bias.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk > copying OpenGL/GL/Autodesk/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk > copying OpenGL/GL/Autodesk/bgra_colors.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ATI > copying OpenGL/GL/ATI/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ATI > copying OpenGL/GL/ATI/texture_mirror_once.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ATI > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/texture_border_clamp.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/texture_cube_map.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/texture_env_add.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/texture_env_combine.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/texture_env_crossbar.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > copying OpenGL/GL/ARB/texture_env_dot3.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE > copying OpenGL/GL/APPLE/__init__.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE > copying OpenGL/GL/APPLE/specular_vector.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE > copying OpenGL/GL/APPLE/transform_hint.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/APPLE > package init file 'OpenGL/Demo/twburton/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/twburton > package init file 'OpenGL/Demo/tom/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/tom > copying OpenGL/Demo/tom/logo.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/tom > package init file 'OpenGL/Demo/simple/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/simple > package init file 'OpenGL/Demo/redbook/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/redbook > package init file 'OpenGL/Demo/dek/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek > copying OpenGL/Demo/dek/PILNumeric.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek > package init file 'OpenGL/Demo/dek/OglSurface/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface > copying OpenGL/Demo/dek/OglSurface/Geometry.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface > copying OpenGL/Demo/dek/OglSurface/NumericPDB.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface > copying OpenGL/Demo/dek/OglSurface/OglFrame.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface > copying OpenGL/Demo/dek/OglSurface/triangle.py -> build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/dek/OglSurface > package init file 'OpenGL/Demo/da/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/da > package init file 'OpenGL/Demo/NeHe/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/NeHe > package init file 'OpenGL/Demo/GLUT/examples/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/GLUT > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/GLUT/examples > package init file 'OpenGL/Demo/GLE/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/Demo/GLE > package init file 'OpenGL/scripts/__init__.py' not found (or not a regular file) > creating build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/scripts > package init file 'OpenGL/Demo/twburton/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/tom/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/simple/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/redbook/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/dek/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/dek/OglSurface/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/da/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/NeHe/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/GLUT/examples/__init__.py' not found (or not a regular file) > package init file 'OpenGL/Demo/GLE/__init__.py' not found (or not a regular file) > package init file 'OpenGL/scripts/__init__.py' not found (or not a regular file) > running build_clib > building 'interface_util' library > creating build/temp.freebsd-5.1-RELEASE-i386-2.3 > creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src > creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/interface_util/interface_util.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/interface_util.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/interface_util/platform.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/platform.o > src/interface_util/platform.c: In function `GetExtProc': > src/interface_util/platform.c:36: warning: assignment makes pointer from integer without a cast > ar -cr build/temp.freebsd-5.1-RELEASE-i386-2.3/libinterface_util.a build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/interface_util.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface_util/platform.o > building 'GLE' library > creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle > creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/view.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/view.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/intersect.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/intersect.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/qmesh.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/qmesh.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/rotate.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rotate.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/round_cap.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/round_cap.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/ex_cut_round.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_cut_round.o > src/gle/src/ex_cut_round.c: In function `draw_cut_style_cap_callback': > src/gle/src/ex_cut_round.c:127: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_cut_round.c:128: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/extrude.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/extrude.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/urotate.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/urotate.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/segment.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/segment.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/rot_prince.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rot_prince.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/ex_raw.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_raw.o > src/gle/src/ex_raw.c: In function `draw_raw_style_end_cap': > src/gle/src/ex_raw.c:139: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_raw.c:140: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_raw.c: In function `draw_front_contour_cap': > src/gle/src/ex_raw.c:199: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_raw.c:200: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_raw.c: In function `draw_back_contour_cap': > src/gle/src/ex_raw.c:245: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_raw.c:246: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/texgen.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/texgen.o > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/local/include/python2.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -c src/gle/src/ex_angle.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_angle.o > src/gle/src/ex_angle.c: In function `draw_angle_style_front_cap': > src/gle/src/ex_angle.c:110: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_angle.c:111: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_angle.c: In function `draw_angle_style_back_cap': > src/gle/src/ex_angle.c:189: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/gle/src/ex_angle.c:190: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > ar -cr build/temp.freebsd-5.1-RELEASE-i386-2.3/libGLE.a build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rot_prince.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_cut_round.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_raw.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/extrude.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/intersect.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/qmesh.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/ex_angle.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/rotate.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/round_cap.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/segment.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/texgen.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/urotate.o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/gle/src/view.o > running build_ext > building 'GL.ARB.matrix_palette' extension > creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.matrix_palette.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.matrix_palette.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.matrix_palette.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/matrix_palette.so > building 'GL.ARB.multisample' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.multisample.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multisample.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multisample.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/multisample.so > building 'GL.ARB.multitexture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.multitexture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multitexture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.multitexture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/multitexture.so > building 'GL.ARB.point_parameters' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.point_parameters.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.point_parameters.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.point_parameters.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/point_parameters.so > building 'GL.ARB.texture_compression' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.texture_compression.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.texture_compression.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.texture_compression.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/texture_compression.so > building 'GL.ARB.transpose_matrix' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.transpose_matrix.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.transpose_matrix.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.transpose_matrix.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/transpose_matrix.so > building 'GL.ARB.vertex_blend' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.ARB.vertex_blend.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.vertex_blend.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.ARB.vertex_blend.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/ARB/vertex_blend.so > building 'GL.Autodesk.facet_normal' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.Autodesk.facet_normal.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.facet_normal.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.facet_normal.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk/facet_normal.so > building 'GL.Autodesk.valid_back_buffer_hint' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.Autodesk.valid_back_buffer_hint.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.valid_back_buffer_hint.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.Autodesk.valid_back_buffer_hint.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/Autodesk/valid_back_buffer_hint.so > building 'GL.EXT.blend_color' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.blend_color.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_color.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_color.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/blend_color.so > building 'GL.EXT.blend_func_separate' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.blend_func_separate.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_func_separate.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_func_separate.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/blend_func_separate.so > building 'GL.EXT.blend_minmax' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.blend_minmax.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_minmax.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.blend_minmax.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/blend_minmax.so > building 'GL.EXT.compiled_vertex_array' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.compiled_vertex_array.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.compiled_vertex_array.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.compiled_vertex_array.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/compiled_vertex_array.so > building 'GL.EXT.convolution' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.convolution.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.convolution.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.convolution.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/convolution.so > building 'GL.EXT.coordinate_frame' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.coordinate_frame.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.coordinate_frame.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.coordinate_frame.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/coordinate_frame.so > building 'GL.EXT.copy_texture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.copy_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.copy_texture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.copy_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/copy_texture.so > building 'GL.EXT.cull_vertex' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.cull_vertex.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.cull_vertex.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.cull_vertex.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/cull_vertex.so > building 'GL.EXT.draw_range_elements' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.draw_range_elements.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.draw_range_elements.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.draw_range_elements.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/draw_range_elements.so > building 'GL.EXT.fog_coord' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.fog_coord.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fog_coord.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fog_coord.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/fog_coord.so > building 'GL.EXT.fragment_lighting' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.fragment_lighting.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fragment_lighting.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.fragment_lighting.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/fragment_lighting.so > building 'GL.EXT.index_func' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.index_func.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_func.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_func.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/index_func.so > building 'GL.EXT.index_material' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.index_material.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_material.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.index_material.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/index_material.so > building 'GL.EXT.light_texture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.light_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.light_texture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.light_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/light_texture.so > building 'GL.EXT.multi_draw_arrays' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.multi_draw_arrays.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.multi_draw_arrays.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.multi_draw_arrays.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/multi_draw_arrays.so > building 'GL.EXT.pixel_transform' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.pixel_transform.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.pixel_transform.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.pixel_transform.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/pixel_transform.so > building 'GL.EXT.point_parameters' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.point_parameters.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.point_parameters.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.point_parameters.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/point_parameters.so > building 'GL.EXT.polygon_offset' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.polygon_offset.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.polygon_offset.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.polygon_offset.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/polygon_offset.so > building 'GL.EXT.scene_marker' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.scene_marker.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.scene_marker.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.scene_marker.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/scene_marker.so > building 'GL.EXT.secondary_color' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.secondary_color.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.secondary_color.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.secondary_color.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/secondary_color.so > building 'GL.EXT.subtexture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.subtexture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.subtexture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.subtexture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/subtexture.so > building 'GL.EXT.texture3D' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.texture3D.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture3D.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture3D.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/texture3D.so > building 'GL.EXT.texture_object' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.texture_object.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_object.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_object.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/texture_object.so > building 'GL.EXT.texture_perturb_normal' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.texture_perturb_normal.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_perturb_normal.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.texture_perturb_normal.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/texture_perturb_normal.so > building 'GL.EXT.vertex_array' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.vertex_array.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_array.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_array.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/vertex_array.so > building 'GL.EXT.vertex_weighting' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.EXT.vertex_weighting.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_weighting.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.EXT.vertex_weighting.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/EXT/vertex_weighting.so > building 'GL.HP.image_transform' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.HP.image_transform.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.HP.image_transform.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.HP.image_transform.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/HP/image_transform.so > building 'GL.IBM.multimode_draw_arrays' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.IBM.multimode_draw_arrays.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.multimode_draw_arrays.o > In file included from src/interface/GL.IBM.multimode_draw_arrays.c:6: > src/interface/GL.IBM.multimode_draw_arrays.0101.inc: In function `_wrap_glMultiModeDrawArraysIBM': > src/interface/GL.IBM.multimode_draw_arrays.0101.inc:789: warning: passing arg 1 of `glMultiModeDrawArraysIBM' makes integer from pointer without a cast > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.multimode_draw_arrays.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM/multimode_draw_arrays.so > building 'GL.IBM.static_data' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.IBM.static_data.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.static_data.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.IBM.static_data.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/IBM/static_data.so > building 'GL.INTEL.texture_scissor' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.INTEL.texture_scissor.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.INTEL.texture_scissor.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.INTEL.texture_scissor.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/INTEL/texture_scissor.so > building 'GL.KTX.buffer_region' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.KTX.buffer_region.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.KTX.buffer_region.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.KTX.buffer_region.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/KTX/buffer_region.so > building 'GL.MESA.resize_buffers' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.MESA.resize_buffers.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.resize_buffers.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.resize_buffers.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA/resize_buffers.so > building 'GL.MESA.window_pos' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.MESA.window_pos.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.window_pos.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.MESA.window_pos.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/MESA/window_pos.so > building 'GL.NV.fence' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.NV.fence.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.fence.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.fence.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV/fence.so > building 'GL.NV.register_combiners' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.NV.register_combiners.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV/register_combiners.so > building 'GL.NV.register_combiners2' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.NV.register_combiners2.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners2.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.NV.register_combiners2.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/NV/register_combiners2.so > building 'GL.PGI.misc_hints' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.PGI.misc_hints.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.PGI.misc_hints.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.PGI.misc_hints.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/PGI/misc_hints.so > building 'GL.SGIS.detail_texture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.detail_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.detail_texture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.detail_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/detail_texture.so > building 'GL.SGIS.fog_function' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.fog_function.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.fog_function.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.fog_function.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/fog_function.so > building 'GL.SGIS.multisample' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.multisample.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multisample.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multisample.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/multisample.so > building 'GL.SGIS.multitexture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.multitexture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multitexture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.multitexture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/multitexture.so > building 'GL.SGIS.pixel_texture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.pixel_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.pixel_texture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.pixel_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/pixel_texture.so > building 'GL.SGIS.sharpen_texture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.sharpen_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.sharpen_texture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.sharpen_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/sharpen_texture.so > building 'GL.SGIS.texture4D' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.texture4D.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture4D.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture4D.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/texture4D.so > building 'GL.SGIS.texture_color_mask' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.texture_color_mask.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_color_mask.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_color_mask.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/texture_color_mask.so > building 'GL.SGIS.texture_filter4' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIS.texture_filter4.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_filter4.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIS.texture_filter4.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIS/texture_filter4.so > building 'GL.SGIX.async' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.async.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.async.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.async.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/async.so > building 'GL.SGIX.flush_raster' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.flush_raster.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.flush_raster.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.flush_raster.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/flush_raster.so > building 'GL.SGIX.frame_zoom' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.frame_zoom.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.frame_zoom.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.frame_zoom.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/frame_zoom.so > building 'GL.SGIX.list_priority' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.list_priority.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.list_priority.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.list_priority.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/list_priority.so > building 'GL.SGIX.pixel_texture' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.pixel_texture.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.pixel_texture.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.pixel_texture.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/pixel_texture.so > building 'GL.SGIX.reference_plane' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.reference_plane.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.reference_plane.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.reference_plane.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/reference_plane.so > building 'GL.SGIX.sprite' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.sprite.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.sprite.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.sprite.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/sprite.so > building 'GL.SGIX.tag_sample_buffer' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SGIX.tag_sample_buffer.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.tag_sample_buffer.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SGIX.tag_sample_buffer.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SGIX/tag_sample_buffer.so > building 'GL.SUN.global_alpha' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SUN.global_alpha.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.global_alpha.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.global_alpha.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN/global_alpha.so > building 'GL.SUN.triangle_list' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SUN.triangle_list.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.triangle_list.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUN.triangle_list.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUN/triangle_list.so > building 'GL.SUNX.constant_data' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.SUNX.constant_data.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUNX.constant_data.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.SUNX.constant_data.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/SUNX/constant_data.so > building 'GL.WIN.swap_hint' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.WIN.swap_hint.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.WIN.swap_hint.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.WIN.swap_hint.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/WIN/swap_hint.so > building 'GL._3DFX.tbuffer' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL._3DFX.tbuffer.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL._3DFX.tbuffer.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL._3DFX.tbuffer.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/_3DFX/tbuffer.so > building 'GL.__init___' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GL.__init___.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.__init___.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GL.__init___.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GL/__init___.so > building 'GLE' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLE.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLE.o > In file included from src/interface/GLE.c:8: > src/interface/GLE.0300.inc: In function `_wrap_glePolyCylinder': > src/interface/GLE.0300.inc:842: warning: passing arg 2 of `glePolyCylinder' from incompatible pointer type > src/interface/GLE.0300.inc:842: warning: passing arg 3 of `glePolyCylinder' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_glePolyCone': > src/interface/GLE.0300.inc:886: warning: passing arg 2 of `glePolyCone' from incompatible pointer type > src/interface/GLE.0300.inc:886: warning: passing arg 3 of `glePolyCone' from incompatible pointer type > src/interface/GLE.0300.inc:886: warning: passing arg 4 of `glePolyCone' discards qualifiers from pointer target type > src/interface/GLE.0300.inc: In function `_wrap_gleExtrusion': > src/interface/GLE.0300.inc:952: warning: passing arg 2 of `gleExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:952: warning: passing arg 3 of `gleExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:952: warning: passing arg 4 of `gleExtrusion' discards qualifiers from pointer target type > src/interface/GLE.0300.inc:952: warning: passing arg 6 of `gleExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:952: warning: passing arg 7 of `gleExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_gleTwistExtrusion': > src/interface/GLE.0300.inc:1030: warning: passing arg 2 of `gleTwistExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1030: warning: passing arg 3 of `gleTwistExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1030: warning: passing arg 4 of `gleTwistExtrusion' discards qualifiers from pointer target type > src/interface/GLE.0300.inc:1030: warning: passing arg 6 of `gleTwistExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1030: warning: passing arg 7 of `gleTwistExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1030: warning: passing arg 8 of `gleTwistExtrusion' discards qualifiers from pointer target type > src/interface/GLE.0300.inc: In function `_wrap_gleSuperExtrusion': > src/interface/GLE.0300.inc:1111: warning: passing arg 2 of `gleSuperExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1111: warning: passing arg 3 of `gleSuperExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1111: warning: passing arg 4 of `gleSuperExtrusion' discards qualifiers from pointer target type > src/interface/GLE.0300.inc:1111: warning: passing arg 6 of `gleSuperExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1111: warning: passing arg 7 of `gleSuperExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc:1111: warning: passing arg 8 of `gleSuperExtrusion' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_gleSpiral': > src/interface/GLE.0300.inc:1184: warning: passing arg 2 of `gleSpiral' from incompatible pointer type > src/interface/GLE.0300.inc:1184: warning: passing arg 3 of `gleSpiral' from incompatible pointer type > src/interface/GLE.0300.inc:1184: warning: passing arg 4 of `gleSpiral' discards qualifiers from pointer target type > src/interface/GLE.0300.inc:1184: warning: passing arg 9 of `gleSpiral' from incompatible pointer type > src/interface/GLE.0300.inc:1184: warning: passing arg 10 of `gleSpiral' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_gleLathe': > src/interface/GLE.0300.inc:1254: warning: passing arg 2 of `gleLathe' from incompatible pointer type > src/interface/GLE.0300.inc:1254: warning: passing arg 3 of `gleLathe' from incompatible pointer type > src/interface/GLE.0300.inc:1254: warning: passing arg 4 of `gleLathe' discards qualifiers from pointer target type > src/interface/GLE.0300.inc:1254: warning: passing arg 9 of `gleLathe' from incompatible pointer type > src/interface/GLE.0300.inc:1254: warning: passing arg 10 of `gleLathe' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_gleHelicoid': > src/interface/GLE.0300.inc:1301: warning: passing arg 6 of `gleHelicoid' from incompatible pointer type > src/interface/GLE.0300.inc:1301: warning: passing arg 7 of `gleHelicoid' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_gleToroid': > src/interface/GLE.0300.inc:1339: warning: passing arg 6 of `gleToroid' from incompatible pointer type > src/interface/GLE.0300.inc:1339: warning: passing arg 7 of `gleToroid' from incompatible pointer type > src/interface/GLE.0300.inc: In function `_wrap_gleScrew': > src/interface/GLE.0300.inc:1385: warning: passing arg 2 of `gleScrew' from incompatible pointer type > src/interface/GLE.0300.inc:1385: warning: passing arg 3 of `gleScrew' from incompatible pointer type > src/interface/GLE.0300.inc:1385: warning: passing arg 4 of `gleScrew' discards qualifiers from pointer target type > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLE.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -lGLE -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLE.so > building 'GLU.SGI.filter4_parameters' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLU.SGI.filter4_parameters.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.SGI.filter4_parameters.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.SGI.filter4_parameters.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/SGI/filter4_parameters.so > building 'GLU.__init___' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLU.__init___.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.__init___.o > In file included from src/interface/GLU.__init___.c:7: > src/interface/GLU.__init___.0103.inc: In function `_gluNewQuadric': > src/interface/GLU.__init___.0103.inc:1243: warning: passing arg 3 of `gluQuadricCallback' from incompatible pointer type > src/interface/GLU.__init___.0103.inc: In function `_gluNewTess': > src/interface/GLU.__init___.0103.inc:1486: warning: passing arg 3 of `gluTessCallback' from incompatible pointer type > src/interface/GLU.__init___.0103.inc: In function `_gluNewNurbsRenderer': > src/interface/GLU.__init___.0103.inc:1658: warning: passing arg 3 of `gluNurbsCallback' from incompatible pointer type > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLU.__init___.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLU/__init___.so > building 'GLUT' extension > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -DGLX_PLATFORM -DNUMERIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/interface/GLUT.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLUT.o > cc -shared -lc_r -O -pipe -mcpu=pentiumpro build/temp.freebsd-5.1-RELEASE-i386-2.3/src/interface/GLUT.o -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib -Lbuild/temp.freebsd-5.1-RELEASE-i386-2.3 -lGL -lX11 -lXext -lGLU -lglut -lXi -lXmu -linterface_util -lGLE -o build/lib.freebsd-5.1-RELEASE-i386-2.3/OpenGL/GLUT.so > creating build/temp.freebsd-5.1-RELEASE-i386-2.3/src/Togl-1.5 > cc -fno-strict-aliasing -DNDEBUG -O -pipe -mcpu=pentiumpro -D_THREAD_SAFE -DTHREAD_STACK_SIZE=0x20000 -O -pipe -mcpu=pentiumpro -fPIC -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -Isrc/Togl-1.5 -I/usr/local/include/tk8.3 -I/usr/local/include/tcl8.3 -I/usr/include -I/usr/locall/include -I/usr/X11R6/include -I/usr/local/include/python2.3/Numeric -Isrc/gle/src -I/usr/local/include/python2.3 -c src/Togl-1.5/togl.c -o build/temp.freebsd-5.1-RELEASE-i386-2.3/src/Togl-1.5/togl.o -O -pipe -mcpu=pentiumpro > src/Togl-1.5/togl.c:119:16: tk.h: No such file or directory > src/Togl-1.5/togl.c:141:2: #error Sorry, you will have to edit togl.c to include the right tkInt.h file > In file included from src/Togl-1.5/togl.c:156: > src/Togl-1.5/togl.h:89:16: tk.h: No such file or directory > In file included from src/Togl-1.5/togl.c:156: > src/Togl-1.5/togl.h:209: syntax error before "Togl_TkWin" > src/Togl-1.5/togl.h:209: warning: data definition has no type or storage class > src/Togl-1.5/togl.c:197: syntax error before "Tk_Window" > src/Togl-1.5/togl.c:201: syntax error before "Tk_Cursor" > src/Togl-1.5/togl.c:296: syntax error before "configSpecs" > src/Togl-1.5/togl.c:297: warning: braces around scalar initializer > src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:297: `TK_CONFIG_PIXELS' undeclared here (not in a function) > src/Togl-1.5/togl.c:297: initializer element is not constant > src/Togl-1.5/togl.c:297: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:297: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:297: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:297: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:297: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:298: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:298: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:298: syntax error before "struct" > src/Togl-1.5/togl.c:298: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:298: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:298: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:298: warning: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:298: initializer element is not constant > src/Togl-1.5/togl.c:298: (near initialization for `configSpecs[0]') > src/Togl-1.5/togl.c:300: warning: braces around scalar initializer > src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:300: `TK_CONFIG_PIXELS' undeclared here (not in a function) > src/Togl-1.5/togl.c:300: initializer element is not constant > src/Togl-1.5/togl.c:300: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:300: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:300: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:300: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:300: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:301: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:301: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:301: syntax error before "struct" > src/Togl-1.5/togl.c:301: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:301: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:301: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:301: warning: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:301: initializer element is not constant > src/Togl-1.5/togl.c:301: (near initialization for `configSpecs[1]') > src/Togl-1.5/togl.c:303: warning: braces around scalar initializer > src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:303: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:303: initializer element is not constant > src/Togl-1.5/togl.c:303: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:303: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:303: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:303: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:303: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:304: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:304: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:304: syntax error before "struct" > src/Togl-1.5/togl.c:304: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:304: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:304: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:304: warning: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:304: initializer element is not constant > src/Togl-1.5/togl.c:304: (near initialization for `configSpecs[2]') > src/Togl-1.5/togl.c:306: warning: braces around scalar initializer > src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:306: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:306: initializer element is not constant > src/Togl-1.5/togl.c:306: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:306: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:306: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:306: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:306: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:307: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:307: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:307: syntax error before "struct" > src/Togl-1.5/togl.c:307: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:307: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:307: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:307: warning: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:307: initializer element is not constant > src/Togl-1.5/togl.c:307: (near initialization for `configSpecs[3]') > src/Togl-1.5/togl.c:309: warning: braces around scalar initializer > src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:309: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:309: initializer element is not constant > src/Togl-1.5/togl.c:309: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:309: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:309: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:309: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:309: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:310: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:310: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:310: syntax error before "struct" > src/Togl-1.5/togl.c:310: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:310: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:310: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:310: warning: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:310: initializer element is not constant > src/Togl-1.5/togl.c:310: (near initialization for `configSpecs[4]') > src/Togl-1.5/togl.c:312: warning: braces around scalar initializer > src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:312: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:312: initializer element is not constant > src/Togl-1.5/togl.c:312: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:312: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:312: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:312: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:312: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:313: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:313: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:313: syntax error before "struct" > src/Togl-1.5/togl.c:313: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:313: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:313: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:313: warning: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:313: initializer element is not constant > src/Togl-1.5/togl.c:313: (near initialization for `configSpecs[5]') > src/Togl-1.5/togl.c:315: warning: braces around scalar initializer > src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:315: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:315: initializer element is not constant > src/Togl-1.5/togl.c:315: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:315: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:315: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:315: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:315: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:316: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:316: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:316: syntax error before "struct" > src/Togl-1.5/togl.c:316: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:316: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:316: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:316: warning: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:316: initializer element is not constant > src/Togl-1.5/togl.c:316: (near initialization for `configSpecs[6]') > src/Togl-1.5/togl.c:318: warning: braces around scalar initializer > src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:318: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:318: initializer element is not constant > src/Togl-1.5/togl.c:318: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:318: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:318: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:318: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:318: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:319: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:319: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:319: syntax error before "struct" > src/Togl-1.5/togl.c:319: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:319: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:319: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:319: warning: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:319: initializer element is not constant > src/Togl-1.5/togl.c:319: (near initialization for `configSpecs[7]') > src/Togl-1.5/togl.c:321: warning: braces around scalar initializer > src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:321: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:321: initializer element is not constant > src/Togl-1.5/togl.c:321: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:321: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:321: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:321: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:321: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:322: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:322: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:322: syntax error before "struct" > src/Togl-1.5/togl.c:322: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:322: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:322: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:322: warning: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:322: initializer element is not constant > src/Togl-1.5/togl.c:322: (near initialization for `configSpecs[8]') > src/Togl-1.5/togl.c:324: warning: braces around scalar initializer > src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:324: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:324: initializer element is not constant > src/Togl-1.5/togl.c:324: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:324: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:324: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:324: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:324: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:325: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:325: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:325: syntax error before "struct" > src/Togl-1.5/togl.c:325: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:325: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:325: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:325: warning: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:325: initializer element is not constant > src/Togl-1.5/togl.c:325: (near initialization for `configSpecs[9]') > src/Togl-1.5/togl.c:327: warning: braces around scalar initializer > src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:327: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:327: initializer element is not constant > src/Togl-1.5/togl.c:327: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:327: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:327: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:327: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:327: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:328: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:328: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:328: syntax error before "struct" > src/Togl-1.5/togl.c:328: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:328: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:328: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:328: warning: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:328: initializer element is not constant > src/Togl-1.5/togl.c:328: (near initialization for `configSpecs[10]') > src/Togl-1.5/togl.c:330: warning: braces around scalar initializer > src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:330: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:330: initializer element is not constant > src/Togl-1.5/togl.c:330: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:330: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:330: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:330: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:330: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:331: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:331: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:331: syntax error before "struct" > src/Togl-1.5/togl.c:331: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:331: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:331: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:331: warning: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:331: initializer element is not constant > src/Togl-1.5/togl.c:331: (near initialization for `configSpecs[11]') > src/Togl-1.5/togl.c:333: warning: braces around scalar initializer > src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:333: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:333: initializer element is not constant > src/Togl-1.5/togl.c:333: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:333: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:333: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:333: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:333: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:334: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:334: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:334: syntax error before "struct" > src/Togl-1.5/togl.c:334: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:334: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:334: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:334: warning: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:334: initializer element is not constant > src/Togl-1.5/togl.c:334: (near initialization for `configSpecs[12]') > src/Togl-1.5/togl.c:336: warning: braces around scalar initializer > src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:336: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:336: initializer element is not constant > src/Togl-1.5/togl.c:336: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:336: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:336: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:336: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:336: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:337: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:337: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:337: syntax error before "struct" > src/Togl-1.5/togl.c:337: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:337: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:337: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:337: warning: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:337: initializer element is not constant > src/Togl-1.5/togl.c:337: (near initialization for `configSpecs[13]') > src/Togl-1.5/togl.c:339: warning: braces around scalar initializer > src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:339: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:339: initializer element is not constant > src/Togl-1.5/togl.c:339: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:339: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:339: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:339: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:339: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:340: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:340: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:340: syntax error before "struct" > src/Togl-1.5/togl.c:340: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:340: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:340: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:340: warning: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:340: initializer element is not constant > src/Togl-1.5/togl.c:340: (near initialization for `configSpecs[14]') > src/Togl-1.5/togl.c:342: warning: braces around scalar initializer > src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:342: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:342: initializer element is not constant > src/Togl-1.5/togl.c:342: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:342: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:342: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:342: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:342: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:343: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:343: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:343: syntax error before "struct" > src/Togl-1.5/togl.c:343: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:343: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:343: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:343: warning: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:343: initializer element is not constant > src/Togl-1.5/togl.c:343: (near initialization for `configSpecs[15]') > src/Togl-1.5/togl.c:345: warning: braces around scalar initializer > src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:345: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:345: initializer element is not constant > src/Togl-1.5/togl.c:345: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:345: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:345: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:345: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:345: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:346: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:346: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:346: syntax error before "struct" > src/Togl-1.5/togl.c:346: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:346: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:346: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:346: warning: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:346: initializer element is not constant > src/Togl-1.5/togl.c:346: (near initialization for `configSpecs[16]') > src/Togl-1.5/togl.c:348: warning: braces around scalar initializer > src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:348: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:348: initializer element is not constant > src/Togl-1.5/togl.c:348: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:348: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:348: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:348: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:348: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:349: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:349: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:349: syntax error before "struct" > src/Togl-1.5/togl.c:349: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:349: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:349: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:349: warning: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:349: initializer element is not constant > src/Togl-1.5/togl.c:349: (near initialization for `configSpecs[17]') > src/Togl-1.5/togl.c:351: warning: braces around scalar initializer > src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:351: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:351: initializer element is not constant > src/Togl-1.5/togl.c:351: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:351: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:351: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:351: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:351: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:352: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:352: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:352: syntax error before "struct" > src/Togl-1.5/togl.c:352: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:352: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:352: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:352: warning: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:352: initializer element is not constant > src/Togl-1.5/togl.c:352: (near initialization for `configSpecs[18]') > src/Togl-1.5/togl.c:354: warning: braces around scalar initializer > src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:354: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:354: initializer element is not constant > src/Togl-1.5/togl.c:354: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:354: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:354: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:354: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:354: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:355: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:355: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:355: syntax error before "struct" > src/Togl-1.5/togl.c:355: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:355: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:355: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:355: warning: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:355: initializer element is not constant > src/Togl-1.5/togl.c:355: (near initialization for `configSpecs[19]') > src/Togl-1.5/togl.c:357: warning: braces around scalar initializer > src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:357: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:357: initializer element is not constant > src/Togl-1.5/togl.c:357: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:357: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:357: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:357: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:357: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:358: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:358: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:358: syntax error before "struct" > src/Togl-1.5/togl.c:358: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:358: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:358: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:358: warning: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:358: initializer element is not constant > src/Togl-1.5/togl.c:358: (near initialization for `configSpecs[20]') > src/Togl-1.5/togl.c:360: warning: braces around scalar initializer > src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:360: `TK_CONFIG_BOOLEAN' undeclared here (not in a function) > src/Togl-1.5/togl.c:360: initializer element is not constant > src/Togl-1.5/togl.c:360: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:360: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:360: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:360: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:360: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:361: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:361: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:361: syntax error before "struct" > src/Togl-1.5/togl.c:361: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:361: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:361: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:361: warning: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:361: initializer element is not constant > src/Togl-1.5/togl.c:361: (near initialization for `configSpecs[21]') > src/Togl-1.5/togl.c:364: warning: braces around scalar initializer > src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:364: `TK_CONFIG_ACTIVE_CURSOR' undeclared here (not in a function) > src/Togl-1.5/togl.c:364: initializer element is not constant > src/Togl-1.5/togl.c:364: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:364: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:364: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:364: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:364: warning: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:365: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:365: warning: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:365: syntax error before "struct" > src/Togl-1.5/togl.c:365: `TK_CONFIG_NULL_OK' undeclared here (not in a function) > src/Togl-1.5/togl.c:365: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:365: warning: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:365: initializer element is not constant > src/Togl-1.5/togl.c:365: (near initialization for `configSpecs[22]') > src/Togl-1.5/togl.c:368: warning: braces around scalar initializer > src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:368: `TK_CONFIG_INT' undeclared here (not in a function) > src/Togl-1.5/togl.c:368: initializer element is not constant > src/Togl-1.5/togl.c:368: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:368: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:368: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:368: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:368: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:369: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:369: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:369: syntax error before "struct" > src/Togl-1.5/togl.c:369: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:369: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:369: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:369: warning: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:369: initializer element is not constant > src/Togl-1.5/togl.c:369: (near initialization for `configSpecs[23]') > src/Togl-1.5/togl.c:371: warning: braces around scalar initializer > src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:371: `TK_CONFIG_STRING' undeclared here (not in a function) > src/Togl-1.5/togl.c:371: initializer element is not constant > src/Togl-1.5/togl.c:371: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:371: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:371: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:371: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:371: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:372: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:372: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:372: syntax error before "struct" > src/Togl-1.5/togl.c:372: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:372: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:372: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:372: warning: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:372: initializer element is not constant > src/Togl-1.5/togl.c:372: (near initialization for `configSpecs[24]') > src/Togl-1.5/togl.c:374: warning: braces around scalar initializer > src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:374: `TK_CONFIG_STRING' undeclared here (not in a function) > src/Togl-1.5/togl.c:374: initializer element is not constant > src/Togl-1.5/togl.c:374: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:374: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:374: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:374: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:374: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:375: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:375: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:375: syntax error before "struct" > src/Togl-1.5/togl.c:375: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:375: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:375: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:375: warning: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:375: initializer element is not constant > src/Togl-1.5/togl.c:375: (near initialization for `configSpecs[25]') > src/Togl-1.5/togl.c:377: warning: braces around scalar initializer > src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:377: `TK_CONFIG_STRING' undeclared here (not in a function) > src/Togl-1.5/togl.c:377: initializer element is not constant > src/Togl-1.5/togl.c:377: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:377: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:377: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:377: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:377: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:378: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:378: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:378: syntax error before "struct" > src/Togl-1.5/togl.c:378: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:378: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:378: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:378: warning: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:378: initializer element is not constant > src/Togl-1.5/togl.c:378: (near initialization for `configSpecs[26]') > src/Togl-1.5/togl.c:380: warning: braces around scalar initializer > src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:380: `TK_CONFIG_END' undeclared here (not in a function) > src/Togl-1.5/togl.c:380: initializer element is not constant > src/Togl-1.5/togl.c:380: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:380: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:380: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:380: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:380: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:381: warning: excess elements in scalar initializer > src/Togl-1.5/togl.c:381: warning: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:381: initializer element is not constant > src/Togl-1.5/togl.c:381: (near initialization for `configSpecs[27]') > src/Togl-1.5/togl.c:382: warning: data definition has no type or storage class > src/Togl-1.5/togl.c: In function `Togl_Timer': > src/Togl-1.5/togl.c:826: warning: assignment makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_MakeCurrent': > src/Togl-1.5/togl.c:859: structure has no member named `TkWin' > src/Togl-1.5/togl.c:860: structure has no member named `TkWin' > src/Togl-1.5/togl.c:861: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `RenderOverlay': > src/Togl-1.5/togl.c:899: structure has no member named `TkWin' > src/Togl-1.5/togl.c:901: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_Configure': > src/Togl-1.5/togl.c:939: structure has no member named `TkWin' > src/Togl-1.5/togl.c:944: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `Togl_Widget': > src/Togl-1.5/togl.c:1001: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1014: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1021: `TK_CONFIG_ARGV_ONLY' undeclared (first use in this function) > src/Togl-1.5/togl.c:1021: (Each undeclared identifier is reported only once > src/Togl-1.5/togl.c:1021: for each function it appears in.) > src/Togl-1.5/togl.c: In function `Togl_Cmd': > src/Togl-1.5/togl.c:1079: syntax error before "main" > src/Togl-1.5/togl.c:1089: `tkwin' undeclared (first use in this function) > src/Togl-1.5/togl.c:1089: `main' undeclared (first use in this function) > src/Togl-1.5/togl.c:1110: warning: assignment makes pointer from integer without a cast > src/Togl-1.5/togl.c:1111: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1114: structure has no member named `Cursor' > src/Togl-1.5/togl.c:1158: warning: passing arg 2 of `Tcl_CreateCommand' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `SetupOverlay': > src/Togl-1.5/togl.c:1240: `TkWindow' undeclared (first use in this function) > src/Togl-1.5/togl.c:1240: `winPtr' undeclared (first use in this function) > src/Togl-1.5/togl.c:1240: syntax error before ')' token > src/Togl-1.5/togl.c:1246: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1246: warning: assignment makes pointer from integer without a cast > src/Togl-1.5/togl.c:1284: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `Togl_MakeWindowExist': > src/Togl-1.5/togl.c:1361: `TkWindow' undeclared (first use in this function) > src/Togl-1.5/togl.c:1361: `winPtr' undeclared (first use in this function) > src/Togl-1.5/togl.c:1361: syntax error before ')' token > src/Togl-1.5/togl.c:1362: `winPtr2' undeclared (first use in this function) > src/Togl-1.5/togl.c:1389: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1389: warning: assignment makes pointer from integer without a cast > src/Togl-1.5/togl.c:1523: `TK_TOP_LEVEL' undeclared (first use in this function) > src/Togl-1.5/togl.c:1528: `Tk_Window' undeclared (first use in this function) > src/Togl-1.5/togl.c:1528: syntax error before "winPtr" > src/Togl-1.5/togl.c:1671: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1753: `TK_NEED_CONFIG_NOTIFY' undeclared (first use in this function) > src/Togl-1.5/togl.c:1754: `TK_ALREADY_DEAD' undeclared (first use in this function) > src/Togl-1.5/togl.c:1781: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `ToglCmdDeletedProc': > src/Togl-1.5/togl.c:1843: syntax error before "tkwin" > src/Togl-1.5/togl.c:1853: `tkwin' undeclared (first use in this function) > src/Togl-1.5/togl.c:1869: `TkWindow' undeclared (first use in this function) > src/Togl-1.5/togl.c:1869: `winPtr' undeclared (first use in this function) > src/Togl-1.5/togl.c:1869: syntax error before ')' token > src/Togl-1.5/togl.c:1879: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `Togl_Destroy': > src/Togl-1.5/togl.c:1901: structure has no member named `Cursor' > src/Togl-1.5/togl.c:1902: structure has no member named `Cursor' > src/Togl-1.5/togl.c: In function `Togl_EventProc': > src/Togl-1.5/togl.c:1928: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1941: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1942: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1943: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1944: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1945: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1945: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1946: warning: passing arg 1 of `XResizeWindow' makes pointer from integer without a cast > src/Togl-1.5/togl.c:1949: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1950: warning: passing arg 1 of `XResizeWindow' makes pointer from integer without a cast > src/Togl-1.5/togl.c:1951: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1951: warning: passing arg 1 of `XRaiseWindow' makes pointer from integer without a cast > src/Togl-1.5/togl.c:1976: structure has no member named `TkWin' > src/Togl-1.5/togl.c:1977: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `Togl_SwapBuffers': > src/Togl-1.5/togl.c:2031: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2031: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2031: warning: passing arg 1 of `glXSwapBuffers' makes pointer from integer without a cast > src/Togl-1.5/togl.c: At top level: > src/Togl-1.5/togl.c:2065: syntax error before "Togl_TkWin" > src/Togl-1.5/togl.c: In function `Togl_TkWin': > src/Togl-1.5/togl.c:2067: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `Togl_AllocColor': > src/Togl-1.5/togl.c:2283: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2283: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2284: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2284: invalid type argument of `->' > src/Togl-1.5/togl.c:2284: warning: passing arg 1 of `noFaultXAllocColor' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_FreeColor': > src/Togl-1.5/togl.c:2313: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2313: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2314: warning: passing arg 1 of `XFreeColors' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_SetColor': > src/Togl-1.5/togl.c:2343: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2343: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2343: warning: passing arg 1 of `XStoreColor' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_LoadBitmapFont': > src/Togl-1.5/togl.c:2444: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2444: warning: passing arg 1 of `XLoadQueryFont' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_UseLayer': > src/Togl-1.5/togl.c:2528: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2530: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast > src/Togl-1.5/togl.c:2543: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2544: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2545: warning: passing arg 1 of `glXMakeCurrent' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_ShowOverlay': > src/Togl-1.5/togl.c:2565: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2565: warning: passing arg 1 of `XMapWindow' makes pointer from integer without a cast > src/Togl-1.5/togl.c:2566: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2566: warning: passing arg 1 of `XInstallColormap' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_HideOverlay': > src/Togl-1.5/togl.c:2577: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2577: warning: passing arg 1 of `XUnmapWindow' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_AllocColorOverlay': > src/Togl-1.5/togl.c:2627: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2627: warning: passing arg 1 of `XAllocColor' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_FreeColorOverlay': > src/Togl-1.5/togl.c:2641: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2642: warning: passing arg 1 of `XFreeColors' makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_Display': > src/Togl-1.5/togl.c:2679: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2679: warning: return makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_Screen': > src/Togl-1.5/togl.c:2684: structure has no member named `TkWin' > src/Togl-1.5/togl.c:2684: warning: return makes pointer from integer without a cast > src/Togl-1.5/togl.c: In function `Togl_ScreenNumber': > src/Togl-1.5/togl.c:2689: structure has no member named `TkWin' > src/Togl-1.5/togl.c: In function `Togl_Colormap': > src/Togl-1.5/togl.c:2694: structure has no member named `TkWin' > error: command 'cc' failed with exit status 1 > *** Error code 1 > > Stop in /usr/ports/graphics/py-opengl. > ! graphics/py-opengl (missing header) From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 17:04:02 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76E1F37B401 for ; Sat, 16 Aug 2003 17:04:02 -0700 (PDT) Received: from ms-smtp-01.southeast.rr.com (ms-smtp-01.southeast.rr.com [24.93.67.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F1243F93 for ; Sat, 16 Aug 2003 17:04:01 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h7GNvAcs003301; Sat, 16 Aug 2003 19:57:11 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h7H03NUA048157; Sat, 16 Aug 2003 20:03:23 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: kpeter@melbpc.org.au In-Reply-To: <3F3EBF0C.8000800@melbpc.org.au> References: <3F3EBF0C.8000800@melbpc.org.au> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-8VtuOpSXCsd6rSMRzomk" Organization: MarcusCom, Inc. Message-Id: <1061078633.54862.61.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Sat, 16 Aug 2003 20:03:54 -0400 X-Spam-Status: No, hits=-11.6 required=5.0 tests=BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@freebsd.org Subject: Re: gnucash/gnucash-docs: difficulty installing on FreeBSD 5.1-CURRENT X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 00:04:02 -0000 --=-8VtuOpSXCsd6rSMRzomk Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-08-16 at 19:32, Peter Kostouros wrote: > Hi >=20 > I am having difficulty installing gnu-cash: make install terminates=20 > during processing of gnucash-docs. I have attached the make install log=20 > produced for gnucash-docs. I am not sure if it is my system's setup, but=20 > if anyone can lead me in the right direction ... The problem is with the DocBook catalogs. I will update the port to fix this. adamw is said to be working on merging the DocBook 4.1.2 stuff into the system XML catalog file. When that's done, these hacks won't be needed anymore. Thanks for reporting. Joe >=20 > As a side issue, I noted a problem during the configure stage of=20 > gnu-cash: it complained that libtool-devel was not installed. I re-built=20 > libtool15 with the line CONFIGURE_ARGS?=3D --disable-ltdl-install removed= =20 > to get things moving. --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-8VtuOpSXCsd6rSMRzomk Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA/PsZpb2iPiv4Uz4cRApGVAKCbZwaB6n3Pn3mEETm9Y9wLsX2MNQCfTxTY UkC3+xlK9Gz1sA6O/LWbH4I= =Yb4V -----END PGP SIGNATURE----- --=-8VtuOpSXCsd6rSMRzomk-- From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 17:33:51 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E0BC37B401 for ; Sat, 16 Aug 2003 17:33:51 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4BA543F75 for ; Sat, 16 Aug 2003 17:33:50 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7H0TrmY010078 for ; Sat, 16 Aug 2003 20:29:53 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7H0Trv0010077 for ports@FreeBSD.org; Sat, 16 Aug 2003 20:29:53 -0400 (EDT) Date: Sat, 16 Aug 2003 20:29:53 -0400 (EDT) From: Kris Kennaway Message-Id: <200308170029.h7H0Trv0010077@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 00:33:51 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 18:33:56 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E441237B401 for ; Sat, 16 Aug 2003 18:33:56 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AB7143F85 for ; Sat, 16 Aug 2003 18:33:56 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7H1TwmY067353 for ; Sat, 16 Aug 2003 21:29:58 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7H1Tvfb067352 for ports@FreeBSD.org; Sat, 16 Aug 2003 21:29:57 -0400 (EDT) Date: Sat, 16 Aug 2003 21:29:57 -0400 (EDT) From: Kris Kennaway Message-Id: <200308170129.h7H1Tvfb067352@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 01:33:57 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x U astro/tkseti/Makefile U chinese/xsim/files/patch-im.cpp U chinese/xsim/files/patch-pyphraser.cpp U chinese/xsim/files/patch-simpleim.cpp U chinese/xsim/files/patch-wubiim.cpp U chinese/zhcon/files/patch-src::inputclient.h U chinese/zhcon/files/patch-src::mouse.cpp U finance/gnucash-docs/Makefile U french/spip/Makefile U french/spip/distinfo ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U textproc/htmltolatex/files/patch-Attribute.h U textproc/htmltolatex/files/patch-abstractTable.cpp ? x11/gnome2/log U x11/gnomeapplets2/Makefile U x11/gnomeapplets2/files/patch-aa U x11/twin/Makefile U x11/twin/files/patch-Makefile U x11-wm/icewm/Makefile From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 19:33:53 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8191037B401 for ; Sat, 16 Aug 2003 19:33:53 -0700 (PDT) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.org [192.58.184.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC36643F75 for ; Sat, 16 Aug 2003 19:33:52 -0700 (PDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (localhost [127.0.0.1]) by 8ball.rtp.freebsd.org (8.12.9/8.12.9) with ESMTP id h7H2TsmY024745 for ; Sat, 16 Aug 2003 22:29:54 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h7H2TsGS024744 for ports@FreeBSD.org; Sat, 16 Aug 2003 22:29:54 -0400 (EDT) Date: Sat, 16 Aug 2003 22:29:54 -0400 (EDT) From: Kris Kennaway Message-Id: <200308170229.h7H2TsGS024744@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 02:33:53 -0000 INDEX build failed with errors: "Makefile", line 94: warning: duplicate script for target "post-patch" ignored Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? x ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 19:42:48 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61D8337B401 for ; Sat, 16 Aug 2003 19:42:48 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6D3543F93 for ; Sat, 16 Aug 2003 19:42:47 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: from blues.seekingfire.prv (blues.seekingfire.prv [192.168.23.211]) by mail.seekingfire.com (Postfix) with ESMTP id 9702B93 for ; Sat, 16 Aug 2003 20:42:46 -0600 (CST) Received: (from tillman@localhost) by blues.seekingfire.prv (8.11.6/8.11.6) id h7H2gk615858 for freebsd-ports@freebsd.org; Sat, 16 Aug 2003 20:42:46 -0600 Date: Sat, 16 Aug 2003 20:42:46 -0600 From: Tillman To: freebsd-ports@freebsd.org Message-ID: <20030816204246.B15005@seekingfire.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5.1i X-Urban-Legend: There is lots of hidden information in headers Subject: security/krb5 new 1.3.1 release not compiling X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 02:42:48 -0000 This is the new 1.3.1 release: making all in appl/gssftp/ftp... In file included from /usr/include/sys/param.h:98, from ftp_var.h:115, from cmdtab.c:39: /usr/include/sys/signal.h:230: redefinition of `my_sig_t' ftp_var.h:66: `my_sig_t' previously declared here gmake[3]: *** [cmdtab.o] Error 1 gmake[3]: Leaving directory `/usr/ports/security/krb5/work/krb5-1.3.1/src/appl/gssftp/ftp' gmake[2]: *** [all-recurse] Error 1 gmake[2]: Leaving directory `/usr/ports/security/krb5/work/krb5-1.3.1/src/appl/gssftp' gmake[1]: *** [all-recurse] Error 1 gmake[1]: Leaving directory `/usr/ports/security/krb5/work/krb5-1.3.1/src/appl' gmake: *** [all-recurse] Error 1 *** Error code 2 Stop in /usr/ports/security/krb5. I've tried pulling the distfile from MIT as well as from crypto-publish with the same results. -T -- DISCLAIMER - These opoi^H^H "damn", ^H, [esc :q :qq !q "shoot!" :Q! "Whaddya mean, Not an editor command?" :wq! ^C^C^C !STOP ^bye ^quit :quit! !halt ... ^w^q :!w :wq! ^D :qq!! ^STOP [HALT!   HALT!!! "Why's it doing this?" :stopit! :wwqq!! ^Z ^L ^ESC STOP  :bye  bye  bye! "Hey, what's this red button d..." From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 19:44:12 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13EFA37B401 for ; Sat, 16 Aug 2003 19:44:12 -0700 (PDT) Received: from mail.seekingfire.com (coyote.seekingfire.com [24.72.10.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81A9E43FA3 for ; Sat, 16 Aug 2003 19:44:11 -0700 (PDT) (envelope-from tillman@seekingfire.com) Received: from blues.seekingfire.prv (blues.seekingfire.prv [192.168.23.211]) by mail.seekingfire.com (Postfix) with ESMTP id 14D4D93 for ; Sat, 16 Aug 2003 20:44:11 -0600 (CST) Received: (from tillman@localhost) by blues.seekingfire.prv (8.11.6/8.11.6) id h7H2iAE15888 for freebsd-ports@freebsd.org; Sat, 16 Aug 2003 20:44:10 -0600 Date: Sat, 16 Aug 2003 20:44:10 -0600 From: Tillman To: freebsd-ports@freebsd.org Message-ID: <20030816204410.C15005@seekingfire.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Urban-Legend: There is lots of hidden information in headers Subject: net/ntop configure error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 02:44:12 -0000 My ports tree was cvsup'ed this morning: ------------------------------------------------------------------- Now, let's check for problems with what we've found... ------------------------------------------------------------------- **Testing Required libraries and headers** checking for required C headers... ok checking for crypt... configure: WARNING: error ******************************************************************* * * ERROR: 1. Basic c library routines are missing. * (yes means it was found, no means it was not found) * * crypt.h...no (optional) * crypt() in -lc...no -lcrypt...no * *>>> No way to proceed. * *??? 1. Install the necessary c compiler libraries/headers *??? and Rerun ./configure * ******************************************************************* -T -- How refreshing, the whinny of a packhorse unloaded of everything! - Zen saying From owner-freebsd-ports@FreeBSD.ORG Sat Aug 16 23:52:37 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B488B37B401 for ; Sat, 16 Aug 2003 23:52:37 -0700 (PDT) Received: from spork.pantherdragon.org (spork.pantherdragon.org [206.29.168.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B10E43FAF for ; Sat, 16 Aug 2003 23:52:37 -0700 (PDT) (envelope-from dmp@bitfreak.org) Received: from speck.techno.pagans (12-206-23-247.client.attbi.com [12.206.23.247]) by spork.pantherdragon.org (Postfix) with ESMTP id 660AB2A41F for ; Sat, 16 Aug 2003 23:52:36 -0700 (PDT) Received: from speck.techno.pagans (localhost.techno.pagans [127.0.0.1]) by speck.techno.pagans (Postfix) with SMTP id 56D6CC0C5 for ; Sat, 16 Aug 2003 23:52:34 -0700 (PDT) Date: Sat, 16 Aug 2003 23:52:33 -0700 From: Darren Pilgrim To: ports@FreeBSD.org Message-Id: <20030816235233.73f555fd.dmp@bitfreak.org> In-Reply-To: <20030816094619.GA35274@rot13.obsecurity.org> References: <20030816094619.GA35274@rot13.obsecurity.org> X-Mailer: Sylpheed version 0.9.3claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [FreeBSD-Announce] Ports scheduled for removal on Nov 7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Aug 2003 06:52:38 -0000 [From the announcement made 2003-08-16] > The following ports are scheduled for removal on November 7 if they > are still broken at that time and no PRs have been submitted to fix > them. If you are interested in saving these ports, please send your > patches to the maintainer. If the maintainer is unresponsive or the > port has no maintainer, then please submit them via send-pr. > x11-toolkits/geramik geramik-0.24 haesu@TowardEX.com I've talked to the maintainer, and he pointed out PR ports/55347, which includes a patch to the broken pkg-plist. Used the patch on my own port skeleton, installed geramik and appears to work fine. So would someone with a commit bit please pick this one up?