From mexas at bristol.ac.uk Fri Aug 1 08:55:35 2008 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri Aug 1 08:55:48 2008 Subject: firefox3 build fails on alpha In-Reply-To: References: <20080708120738.GA74833@mech-cluster238.men.bris.ac.uk> <20080708122352.GA76546@mech-cluster238.men.bris.ac.uk> <20080712225929.GA22401@freebie.xs4all.nl> <20080731222442.GA35346@mech-cluster238.men.bris.ac.uk> Message-ID: <20080801085527.GA84573@mech-cluster238.men.bris.ac.uk> On Thu, Jul 31, 2008 at 05:42:17PM -0500, Jeremy Messenger wrote: > On Thu, 31 Jul 2008 17:24:43 -0500, Anton Shterenlikht > wrote: > > > On Sun, Jul 13, 2008 at 12:59:29AM +0200, Wilko Bulte wrote: > >> Quoting Jeremy Messenger, who wrote on Sat, Jul 12, 2008 at 05:44:11PM > >> -0500 .. > >> > On Tue, 08 Jul 2008 07:23:52 -0500, Anton Shterenlikht > >> > wrote: > >> > > > >> > > A followup. It seems xptcinvoke_freebsd_alpha.cpp is missing. It > >> > > is used in Makefile: > >> > > >> > I think most of us don't have any alpha machine. You might have to > >> create > >> > patch for us. I think, the alpha support has been dropped so it's > >> > pointless for us to work on alpha support. > >> > >> The latest release of FreeBSD supporting the Alpha platform port is > >> RELENG_6. Anything newer no longer supports Alpha. > > > > I'm happy with RELENG_6 on alpha. > > I'm happy to test firefox3 on alpha, but need to learn about pathes. > > > > In this particular case it seems that (at least) 2 files > > are missing from the distribution: > > > > xptcinvoke_freebsd_alpha.cpp > > xptcstubs_freebsd_alpha.cpp > > > > (curiously the corresponding *alpha.cpp files are present for osf1, > > linux, > > openvms and openbsd). > > > > I think that whoever created the tar file simply forgot to add the > > freebsd > > files. > > > > I did try to contact mozilla developers directly, but no reply so far. > > I understand that mozilla developers put out the tar file. Perhaps the > > port maintainers could alert the mozilla team about the missing files, > > or maybe even get these 2 files. I'd be very greatful. > > Have you tried 3.0.1 yet? The Makefile.in has changed by Mozilla team: > > --------------------------------------------------- > ###################################################################### > # > # Tru64/Alpha > # > ifeq ($(OS_ARCH)$(OS_TEST),OSF1alpha) > CPPSRCS := xptcinvoke_osf1_alpha.cpp xptcstubs_osf1_alpha.cpp > ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s > endif > # > # Linux/Alpha > # > ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) > CPPSRCS := xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp > endif > --------------------------------------------------- > > But I have no idea if it works. I just tried again, and get the same error: gmake[8]: Entering directory `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect /xptcall/src/md/unix' gmake[8]: *** No rule to make target `xptcinvoke_freebsd_alpha.o', needed by `li bxptcmd.a'. Stop. gmake[8]: Leaving directory `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect/ xptcall/src/md/unix' gmake[7]: *** [libs] Error 2 Also my Makefile.in under /usr/ports/www/firefox3/work/mozilla/xpcom/reflect/xptcall/src/md/unix still requires these 2 files: ###################################################################### # Alpha ###################################################################### # [skip] # # FreeBSD/Alpha # ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha) CPPSRCS := xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp endif which are missing: -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From mexas at bristol.ac.uk Fri Aug 1 11:51:26 2008 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri Aug 1 11:51:32 2008 Subject: firefox3 build fails on alpha In-Reply-To: <20080801085527.GA84573@mech-cluster238.men.bris.ac.uk> References: <20080708120738.GA74833@mech-cluster238.men.bris.ac.uk> <20080708122352.GA76546@mech-cluster238.men.bris.ac.uk> <20080712225929.GA22401@freebie.xs4all.nl> <20080731222442.GA35346@mech-cluster238.men.bris.ac.uk> <20080801085527.GA84573@mech-cluster238.men.bris.ac.uk> Message-ID: <20080801115109.GA25235@mech-cluster238.men.bris.ac.uk> On Fri, Aug 01, 2008 at 09:55:27AM +0100, Anton Shterenlikht wrote: > On Thu, Jul 31, 2008 at 05:42:17PM -0500, Jeremy Messenger wrote: > > On Thu, 31 Jul 2008 17:24:43 -0500, Anton Shterenlikht > > wrote: > > > > > On Sun, Jul 13, 2008 at 12:59:29AM +0200, Wilko Bulte wrote: > > >> Quoting Jeremy Messenger, who wrote on Sat, Jul 12, 2008 at 05:44:11PM > > >> -0500 .. > > >> > On Tue, 08 Jul 2008 07:23:52 -0500, Anton Shterenlikht > > >> > wrote: > > >> > > > > >> > > A followup. It seems xptcinvoke_freebsd_alpha.cpp is missing. It > > >> > > is used in Makefile: > > >> > > > >> > I think most of us don't have any alpha machine. You might have to > > >> create > > >> > patch for us. I think, the alpha support has been dropped so it's > > >> > pointless for us to work on alpha support. > > >> > > >> The latest release of FreeBSD supporting the Alpha platform port is > > >> RELENG_6. Anything newer no longer supports Alpha. > > > > > > I'm happy with RELENG_6 on alpha. > > > I'm happy to test firefox3 on alpha, but need to learn about pathes. > > > > > > In this particular case it seems that (at least) 2 files > > > are missing from the distribution: > > > > > > xptcinvoke_freebsd_alpha.cpp > > > xptcstubs_freebsd_alpha.cpp > > > > > > (curiously the corresponding *alpha.cpp files are present for osf1, > > > linux, > > > openvms and openbsd). > > > > > > I think that whoever created the tar file simply forgot to add the > > > freebsd > > > files. > > > > > > I did try to contact mozilla developers directly, but no reply so far. > > > I understand that mozilla developers put out the tar file. Perhaps the > > > port maintainers could alert the mozilla team about the missing files, > > > or maybe even get these 2 files. I'd be very greatful. > > > > Have you tried 3.0.1 yet? The Makefile.in has changed by Mozilla team: > > > > --------------------------------------------------- > > ###################################################################### > > # > > # Tru64/Alpha > > # > > ifeq ($(OS_ARCH)$(OS_TEST),OSF1alpha) > > CPPSRCS := xptcinvoke_osf1_alpha.cpp xptcstubs_osf1_alpha.cpp > > ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s > > endif > > # > > # Linux/Alpha > > # > > ifneq (,$(filter Linuxalpha FreeBSDalpha NetBSDalpha,$(OS_ARCH)$(OS_TEST))) > > CPPSRCS := xptcinvoke_linux_alpha.cpp xptcstubs_linux_alpha.cpp > > endif > > --------------------------------------------------- > > > > But I have no idea if it works. > > I just tried again, and get the same error: > > gmake[8]: Entering directory `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect > /xptcall/src/md/unix' > gmake[8]: *** No rule to make target `xptcinvoke_freebsd_alpha.o', needed by `li > bxptcmd.a'. Stop. > gmake[8]: Leaving directory `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect/ > xptcall/src/md/unix' > gmake[7]: *** [libs] Error 2 > > Also my Makefile.in under > /usr/ports/www/firefox3/work/mozilla/xpcom/reflect/xptcall/src/md/unix > > still requires these 2 files. I tried to copy these 2 files from firefox to firefox3. One file compiles, the other does not: gmake[8]: Entering directory `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect /xptcall/src/md/unix' xptcinvoke_freebsd_alpha.cpp c++ -o xptcinvoke_freebsd_alpha.o -c -DMOZILLA_INTERNAL_API -DOSTYPE=\"FreeBSD6 \" -DOSARCH=FreeBSD -DEXPORT_XPTC_API -D_IMPL_NS_COM -I./../.. -I./../../../../x ptinfo/src -I. -I. -I../../../../../../dist/include/string -I../../../../../../ dist/include -I../../../../../../dist/include/xpcom -I/usr/local/include/nspr -I/usr/include -I/usr/local/include -fPIC -I/usr/local/include -I/usr/loc al/include -fno-rtti -fno-exceptions -Wall -Wconversion -Wpointer-arith -Woverlo aded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align - Wno-long-long -O -pipe -mcpu=ev6 -mieee -O2 -fno-strict-aliasing -fno-strict-ali asing -fshort-wchar -pipe -DNDEBUG -DTRIMMED -O -I/usr/local/include -I/usr/l ocal/include -DMOZILLA_CLIENT -include ../../../../../../mozilla-config.h xptcin voke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp c++ -o xptcstubs_freebsd_alpha.o -c -DMOZILLA_INTERNAL_API -DOSTYPE=\"FreeBSD6\ " -DOSARCH=FreeBSD -DEXPORT_XPTC_API -D_IMPL_NS_COM -I./../.. -I./../../../../xp tinfo/src -I. -I. -I../../../../../../dist/include/string -I../../../../../../d ist/include -I../../../../../../dist/include/xpcom -I/usr/local/include/nspr -I/usr/include -I/usr/local/include -fPIC -I/usr/local/include -I/usr/loca l/include -fno-rtti -fno-exceptions -Wall -Wconversion -Wpointer-arith -Woverloa ded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align -W no-long-long -O -pipe -mcpu=ev6 -mieee -O2 -fno-strict-aliasing -fno-strict-alia sing -fshort-wchar -pipe -DNDEBUG -DTRIMMED -O -I/usr/local/include -I/usr/lo cal/include -DMOZILLA_CLIENT -include ../../../../../../mozilla-config.h xptcstu bs_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp: In function `nsresult PrepareAndDispatch(nsXPTCStub Base*, uint32, PRUint64*)': xptcstubs_freebsd_alpha.cpp:59: error: `nsIInterfaceInfo' was not declared in th is scope xptcstubs_freebsd_alpha.cpp:59: error: `iface_info' was not declared in this sco pe xptcstubs_freebsd_alpha.cpp:67: error: 'class nsXPTCStubBase' has no member name d 'GetInterfaceInfo' xptcstubs_freebsd_alpha.cpp:131: error: 'class nsXPTCStubBase' has no member nam ed 'CallMethod' xptcstubs_freebsd_alpha.cpp:59: warning: unused variable 'nsIInterfaceInfo' gmake[8]: *** [xptcstubs_freebsd_alpha.o] Error 1 gmake[8]: Leaving directory `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect/ xptcall/src/md/unix' gmake[7]: *** [libs] Error 2 -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From erwin at FreeBSD.org Fri Aug 1 12:06:58 2008 From: erwin at FreeBSD.org (Erwin Lansing) Date: Fri Aug 1 12:07:13 2008 Subject: [ports-i386@FreeBSD.org: libgtop-2.22.3 failed on i386 8] Message-ID: <20080801120654.GH39203@droso.net> FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. See http://pointyhat.freebsd.org for the full log. Thanks, -erwin ----- Forwarded message from User Ports-i386 ----- Date: Fri, 1 Aug 2008 12:06:20 GMT From: User Ports-i386 To: erwin@FreeBSD.org Subject: libgtop-2.22.3 failed on i386 8 You can also find this build log at http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/a.8.20080731183544/libgtop-2.22.3.log building libgtop-2.22.3 on gohan54.freebsd.org in directory /x/tmp/8/20080731183544/chroot/34 building for: 8.0-CURRENT i386 maintained by: gnome@FreeBSD.org port directory: /usr/ports/devel/libgtop Makefile ident: $FreeBSD: ports/devel/libgtop/Makefile,v 1.85 2008/07/01 01:53:51 mezz Exp $ build started at Fri Aug 1 11:54:08 UTC 2008 FETCH_DEPENDS= PATCH_DEPENDS=libtool-1.5.26.tbz perl-5.8.8_1.tbz EXTRACT_DEPENDS=perl-5.8.8_1.tbz BUILD_DEPENDS=expat-2.0.1.tbz gettext-0.17_1.tbz glib-2.16.5.tbz gmake-3.81_3.tbz intltool-0.37.1.tbz libiconv-1.11_1.tbz libtool-1.5.26.tbz p5-XML-Parser-2.36.tbz pcre-7.7.tbz perl-5.8.8_1.tbz pkg-config-0.23_1.tbz python25-2.5.2_2.tbz RUN_DEPENDS=gamin-0.1.9_2.tbz gettext-0.17_1.tbz gio-fam-backend-2.16.5.tbz glib-2.16.5.tbz libiconv-1.11_1.tbz pcre-7.7.tbz perl-5.8.8_1.tbz pkg-config-0.23_1.tbz python25-2.5.2_2.tbz prefixes: LOCALBASE=usr/local X11BASE=usr/local add_pkg ================================================================ ======================================== => libgtop-2.22.3.tar.bz2 doesn't seem to exist in /tmp/distfiles/gnome2. => Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/gnome2/. libgtop-2.22.3.tar.bz2 758 kB 1712 kBps => MD5 Checksum OK for gnome2/libgtop-2.22.3.tar.bz2. => SHA256 Checksum OK for gnome2/libgtop-2.22.3.tar.bz2. ================================================================ ======================================== add_pkg perl-5.8.8_1.tbz adding dependencies pkg_add perl-5.8.8_1.tbz Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. ===> Extracting for libgtop-2.22.3 => MD5 Checksum OK for gnome2/libgtop-2.22.3.tar.bz2. => SHA256 Checksum OK for gnome2/libgtop-2.22.3.tar.bz2. ===> libgtop-2.22.3 depends on file: /usr/local/bin/perl5.8.8 - found Deleting perl-5.8.8_1 Removing stale symlinks from /usr/bin... Removing /usr/bin/perl Removing /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. ================================================================ ======================================== add_pkg libtool-1.5.26.tbz perl-5.8.8_1.tbz adding dependencies pkg_add libtool-1.5.26.tbz pkg_add perl-5.8.8_1.tbz Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. ===> Patching for libgtop-2.22.3 ===> libgtop-2.22.3 depends on file: /usr/local/bin/perl5.8.8 - found ===> libgtop-2.22.3 depends on file: /usr/local/bin/libtool - found ===> Applying FreeBSD patches for libgtop-2.22.3 Deleting perl-5.8.8_1 Removing stale symlinks from /usr/bin... Removing /usr/bin/perl Removing /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Deleting libtool-1.5.26 ================================================================ ======================================== add_pkg expat-2.0.1.tbz gettext-0.17_1.tbz glib-2.16.5.tbz gmake-3.81_3.tbz intltool-0.37.1.tbz libiconv-1.11_1.tbz libtool-1.5.26.tbz p5-XML-Parser-2.36.tbz pcre-7.7.tbz perl-5.8.8_1.tbz pkg-config-0.23_1.tbz python25-2.5.2_2.tbz adding dependencies pkg_add expat-2.0.1.tbz pkg_add gettext-0.17_1.tbz pkg_add glib-2.16.5.tbz ==== Note that some of the standard modules are provided as separate ports since they require extra dependencies: bsddb databases/py-bsddb gdbm databases/py-gdbm sqlite3 databases/py-sqlite3 tkinter x11-toolkits/py-tkinter Install them as needed. ==== Removing stale symlinks from /usr/bin... Skipping /usr/bin/perl Skipping /usr/bin/perl5 Done. Creating various symlinks in /usr/bin... Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl5 Done. Cleaning up /etc/make.conf... Done. Spamming /etc/make.conf... Done. Cleaning up /etc/manpath.config... Done. Spamming /etc/manpath.config... Done. pkg_add gmake-3.81_3.tbz pkg_add intltool-0.37.1.tbz pkg_add libiconv-1.11_1.tbz skipping libiconv-1.11_1, already added pkg_add libtool-1.5.26.tbz pkg_add p5-XML-Parser-2.36.tbz skipping p5-XML-Parser-2.36, already added pkg_add pcre-7.7.tbz skipping pcre-7.7, already added pkg_add perl-5.8.8_1.tbz skipping perl-5.8.8_1, already added pkg_add pkg-config-0.23_1.tbz skipping pkg-config-0.23_1, already added pkg_add python25-2.5.2_2.tbz skipping python25-2.5.2_2, already added ===> libgtop-2.22.3 depends on executable: gmake - found ===> libgtop-2.22.3 depends on file: /usr/local/bin/perl5.8.8 - found ===> libgtop-2.22.3 depends on file: /usr/local/bin/libtool - found ===> libgtop-2.22.3 depends on file: /usr/local/bin/intltool-extract - found ===> libgtop-2.22.3 depends on executable: pkg-config - found ===> libgtop-2.22.3 depends on shared library: intl - found ===> libgtop-2.22.3 depends on shared library: glib-2.0.0 - found ===> Configuring for libgtop-2.22.3 checking build system type... i386-portbld-freebsd8.0 checking host system type... i386-portbld-freebsd8.0 checking target system type... i386-portbld-freebsd8.0 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for style of include used by gmake... GNU checking for gcc... cc checking for C compiler default output file name... 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 ISO C89... none needed checking dependency style of cc... gcc3 checking for library containing strerror... none required checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking dependency style of cc... (cached) gcc3 checking how to run the C preprocessor... cc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for gawk... (cached) nawk checking for perl5... perl5 checking for gcc... (cached) cc checking for ranlib... ranlib checking for as... as checking for ar... ar checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether ln -s works... yes checking whether gmake sets $(MAKE)... (cached) yes checking for a sed that does not truncate output... /usr/bin/sed checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking how to recognize dependent libraries... pass_all 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... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking how to run the C++ preprocessor... c++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... (cached) 262144 checking command to parse /usr/bin/nm -B output from cc object... ok checking for objdir... .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... strip checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd8.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd8.0 ld.so (cached) (cached) checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking whether to enable SMP support... no checking for libgtop sysdeps directory... freebsd checking for kvm_open in -lkvm... yes checking net/if_var.h usability... no checking net/if_var.h presence... yes configure: WARNING: net/if_var.h: present but cannot be compiled configure: WARNING: net/if_var.h: check for missing prerequisite headers? configure: WARNING: net/if_var.h: see the Autoconf documentation configure: WARNING: net/if_var.h: section "Present But Cannot Be Compiled" configure: WARNING: net/if_var.h: proceeding with the preprocessor's result configure: WARNING: net/if_var.h: in the future, the compiler will take precedence configure: WARNING: ## ---------------------------------------------------------------------- ## configure: WARNING: ## Report this to http://bugzilla.gnome.org/enter_bug.cgi?product=libgtop ## configure: WARNING: ## ---------------------------------------------------------------------- ## checking for net/if_var.h... yes checking for I4B... no checking what we need to define to get struct msginfo... _KERNEL checking for machine.h in libgtop sysdeps dir... yes checking whether we need libgtop... yes checking sys/bitypes.h usability... no checking sys/bitypes.h presence... no checking for sys/bitypes.h... no checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for GLIB... yes checking ifaddrs.h usability... yes checking ifaddrs.h presence... yes checking for ifaddrs.h... yes checking for an ANSI C-conforming const... yes checking for inline... inline checking for off_t... yes checking for pid_t... yes checking for size_t... yes checking for struct stat.st_rdev... yes checking whether time.h and sys/time.h may both be included... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for uid_t in sys/types.h... yes checking for ssize_t... yes checking for memory.h... (cached) yes checking for string.h... (cached) yes checking for strerror... yes checking for dlopen... yes checking for dlerror... yes checking linux/isdn.h usability... no checking linux/isdn.h presence... no checking for linux/isdn.h... no checking for vmgetinfo in -lperfstat... no checking for vm_statistics in -lmach... no checking whether program_invocation_name must be declared... yes checking for socket... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking "for sun_len member in struct sockaddr_un"... yes checking for working alloca.h... no checking for alloca... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for getpagesize... yes checking for working mmap... yes checking return type of signal handlers... void checking for strftime... yes checking for getcwd... yes checking for gettimeofday... yes checking for getwd... yes checking for putenv... yes checking for strdup... yes checking for strtoul... yes checking for uname... yes checking for intltool >= 0.35.0... 0.37.1 found checking for intltool-update... /usr/local/bin/intltool-update checking for intltool-merge... /usr/local/bin/intltool-merge checking for intltool-extract... /usr/local/bin/intltool-extract checking for xgettext... /usr/local/bin/xgettext checking for msgmerge... /usr/local/bin/msgmerge checking for msgfmt... /usr/local/bin/msgfmt checking for perl... /usr/bin/perl checking for XML::Parser... ok checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... no checking for bindtextdomain in -lintl... yes checking for ngettext in -lintl... yes checking for dgettext in -lintl... yes checking for bind_textdomain_codeset... yes checking for msgfmt... (cached) /usr/local/bin/msgfmt checking for dcgettext... yes checking if msgfmt accepts -c... yes checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... (cached) /usr/local/bin/xgettext checking for X... no checking for gethostbyname... yes checking for connect... yes checking for inet_aton... yes checking X11/Xauth.h usability... no checking X11/Xauth.h presence... no checking for X11/Xauth.h... no checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/statfs.h usability... no checking sys/statfs.h presence... no checking for sys/statfs.h... no checking sys/fstyp.h usability... no checking sys/fstyp.h presence... no checking for sys/fstyp.h... no checking mnttab.h usability... no checking mnttab.h presence... no checking for mnttab.h... no checking mntent.h usability... no checking mntent.h presence... no checking for mntent.h... no checking sys/statvfs.h usability... yes checking sys/statvfs.h presence... yes checking for sys/statvfs.h... yes checking sys/vfs.h usability... no checking sys/vfs.h presence... no checking for sys/vfs.h... no checking sys/mount.h usability... yes checking sys/mount.h presence... yes checking for sys/mount.h... yes checking sys/filsys.h usability... no checking sys/filsys.h presence... no checking for sys/filsys.h... no checking sys/fs_types.h usability... no checking sys/fs_types.h presence... no checking for sys/fs_types.h... no checking sys/fs/s5param.h usability... no checking sys/fs/s5param.h presence... no checking for sys/fs/s5param.h... no checking for bcopy... yes checking for endgrent... yes checking for endpwent... yes checking for fchdir... yes checking for ftime... no checking for ftruncate... yes checking for getcwd... (cached) yes checking for getmntinfo... yes checking for gettimeofday... (cached) yes checking for isascii... yes checking for lchown... yes checking for listmntent... no checking for memcpy... yes checking for mkfifo... yes checking for strchr... yes checking for strerror... (cached) yes checking for strrchr... yes checking for vprintf... yes checking for library containing getmntent... no checking for listmntent of Cray/Unicos-9... no checking for getfsstat function... no checking for mntctl function and struct vmount... no checking for FIXME existence of three headers... no checking for getmntinfo function... yes configure: checking how to get filesystem space usage... checking statvfs function (SVR4)... yes checking for statfs that truncates block counts... no configure: checking for AFS... checking whether to build gtk-doc documentation... no checking for gtkdoc-check... no configure: creating ./config.status config.status: creating Makefile config.status: creating libgtop.spec config.status: creating po/Makefile.in config.status: creating misc/Makefile config.status: creating include/Makefile config.status: creating include/glibtop/Makefile config.status: creating sysdeps/Makefile config.status: creating sysdeps/common/Makefile config.status: creating sysdeps/stub/Makefile config.status: creating sysdeps/stub_suid/Makefile config.status: creating sysdeps/sun4/Makefile config.status: creating sysdeps/osf1/Makefile config.status: creating sysdeps/linux/Makefile config.status: creating sysdeps/freebsd/Makefile config.status: creating sysdeps/solaris/Makefile config.status: creating sysdeps/aix/Makefile config.status: creating sysdeps/bsd/Makefile config.status: creating sysdeps/darwin/Makefile config.status: creating src/Makefile config.status: creating src/daemon/Makefile config.status: creating lib/Makefile config.status: creating examples/Makefile config.status: creating doc/Makefile config.status: creating doc/reference/Makefile config.status: creating doc/reference/version.xml config.status: creating libgtop-2.0.pc config.status: creating libgtopconfig.h config.status: creating config.h config.status: executing depfiles commands config.status: executing default-1 commands config.status: executing po/stamp-it commands ===> Building for libgtop-2.22.3 gmake all-recursive gmake[1]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3' Making all in po gmake[2]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/po' file=`echo am | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file am.po file=`echo ar | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ar.po file=`echo az | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file az.po file=`echo be | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file be.po file=`echo bg | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file bg.po file=`echo bn | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file bn.po file=`echo bn_IN | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file bn_IN.po file=`echo bs | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file bs.po file=`echo ca | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ca.po file=`echo cs | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file cs.po file=`echo cy | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file cy.po file=`echo da | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file da.po file=`echo de | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file de.po file=`echo dz | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file dz.po file=`echo el | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file el.po file=`echo en_CA | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file en_CA.po file=`echo en_GB | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file en_GB.po file=`echo eo | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file eo.po file=`echo es | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file es.po file=`echo et | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file et.po file=`echo eu | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file eu.po file=`echo fa | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file fa.po file=`echo fi | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file fi.po file=`echo fr | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file fr.po file=`echo ga | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ga.po file=`echo gl | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file gl.po file=`echo gu | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file gu.po file=`echo he | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file he.po file=`echo hi | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file hi.po file=`echo hr | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file hr.po file=`echo hu | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file hu.po file=`echo id | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file id.po file=`echo it | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file it.po file=`echo ja | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ja.po file=`echo ka | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ka.po file=`echo ko | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ko.po file=`echo ku | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ku.po file=`echo ky | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ky.po file=`echo lt | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file lt.po file=`echo lv | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file lv.po file=`echo mg | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file mg.po file=`echo mi | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file mi.po file=`echo mk | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file mk.po file=`echo ml | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ml.po file=`echo mn | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file mn.po file=`echo mr | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file mr.po file=`echo ms | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ms.po file=`echo nb | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file nb.po file=`echo ne | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ne.po file=`echo nl | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file nl.po file=`echo nn | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file nn.po file=`echo oc | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file oc.po file=`echo or | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file or.po file=`echo pa | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file pa.po file=`echo pl | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file pl.po file=`echo pt | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file pt.po file=`echo pt_BR | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file pt_BR.po file=`echo ro | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ro.po file=`echo ru | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ru.po file=`echo rw | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file rw.po file=`echo sk | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file sk.po file=`echo sl | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file sl.po file=`echo sq | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file sq.po file=`echo sr | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file sr.po file=`echo sr@Latn | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file sr@Latn.po file=`echo sv | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file sv.po file=`echo ta | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file ta.po file=`echo te | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file te.po file=`echo th | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file th.po file=`echo tr | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file tr.po file=`echo uk | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file uk.po file=`echo vi | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file vi.po file=`echo xh | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file xh.po file=`echo zh_CN | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file zh_CN.po file=`echo zh_HK | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file zh_HK.po file=`echo zh_TW | sed 's,.*/,,'`.gmo \ && rm -f $file && /usr/local/bin/msgfmt -o $file zh_TW.po gmake[2]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/po' Making all in misc gmake[2]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/misc' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/misc' Making all in include gmake[2]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/include' Making all in glibtop gmake[3]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/include/glibtop' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/include/glibtop' gmake[3]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/include' gmake[3]: Nothing to be done for `all-am'. gmake[3]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/include' gmake[2]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/include' Making all in sysdeps gmake[2]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps' Making all in common gmake[3]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps/common' if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT error.lo -MD -MP -MF ".deps/error.Tpo" -c -o error.lo error.c; \ then mv -f ".deps/error.Tpo" ".deps/error.Plo"; else rm -f ".deps/error.Tpo"; exit 1; fi mkdir .libs cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -fPIC -DPIC -o .libs/error.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -o error.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT gnuslib.lo -MD -MP -MF ".deps/gnuslib.Tpo" -c -o gnuslib.lo gnuslib.c; \ then mv -f ".deps/gnuslib.Tpo" ".deps/gnuslib.Plo"; else rm -f ".deps/gnuslib.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT gnuslib.lo -MD -MP -MF .deps/gnuslib.Tpo -c gnuslib.c -fPIC -DPIC -o .libs/gnuslib.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT gnuslib.lo -MD -MP -MF .deps/gnuslib.Tpo -c gnuslib.c -o gnuslib.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF ".deps/procargs.Tpo" -c -o procargs.lo procargs.c; \ then mv -f ".deps/procargs.Tpo" ".deps/procargs.Plo"; else rm -f ".deps/procargs.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -fPIC -DPIC -o .libs/procargs.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -o procargs.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT default.lo -MD -MP -MF ".deps/default.Tpo" -c -o default.lo default.c; \ then mv -f ".deps/default.Tpo" ".deps/default.Plo"; else rm -f ".deps/default.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT default.lo -MD -MP -MF .deps/default.Tpo -c default.c -fPIC -DPIC -o .libs/default.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT default.lo -MD -MP -MF .deps/default.Tpo -c default.c -o default.o >/dev/null 2>&1 /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=link cc -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -L/usr/local/lib -o libgtop_common-2.0.la error.lo gnuslib.lo procargs.lo default.lo -L/usr/local/lib -lglib-2.0 -liconv ar cru .libs/libgtop_common-2.0.a .libs/error.o .libs/gnuslib.o .libs/procargs.o .libs/default.o ranlib .libs/libgtop_common-2.0.a creating libgtop_common-2.0.la (cd .libs && rm -f libgtop_common-2.0.la && ln -s ../libgtop_common-2.0.la libgtop_common-2.0.la) if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sysdeps_suid.lo -MD -MP -MF ".deps/sysdeps_suid.Tpo" -c -o sysdeps_suid.lo sysdeps_suid.c; \ then mv -f ".deps/sysdeps_suid.Tpo" ".deps/sysdeps_suid.Plo"; else rm -f ".deps/sysdeps_suid.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sysdeps_suid.lo -MD -MP -MF .deps/sysdeps_suid.Tpo -c sysdeps_suid.c -fPIC -DPIC -o .libs/sysdeps_suid.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sysdeps_suid.lo -MD -MP -MF .deps/sysdeps_suid.Tpo -c sysdeps_suid.c -o sysdeps_suid.o >/dev/null 2>&1 /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=link cc -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -L/usr/local/lib -o libgtop_suid_common-2.0.la error.lo sysdeps_suid.lo ar cru .libs/libgtop_suid_common-2.0.a .libs/error.o .libs/sysdeps_suid.o ranlib .libs/libgtop_suid_common-2.0.a creating libgtop_suid_common-2.0.la (cd .libs && rm -f libgtop_suid_common-2.0.la && ln -s ../libgtop_suid_common-2.0.la libgtop_suid_common-2.0.la) gmake[3]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps/common' Making all in freebsd gmake[3]: Entering directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps/freebsd' if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT nosuid.lo -MD -MP -MF ".deps/nosuid.Tpo" -c -o nosuid.lo nosuid.c; \ then mv -f ".deps/nosuid.Tpo" ".deps/nosuid.Plo"; else rm -f ".deps/nosuid.Tpo"; exit 1; fi mkdir .libs cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT nosuid.lo -MD -MP -MF .deps/nosuid.Tpo -c nosuid.c -fPIC -DPIC -o .libs/nosuid.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT nosuid.lo -MD -MP -MF .deps/nosuid.Tpo -c nosuid.c -o nosuid.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT siglist.lo -MD -MP -MF ".deps/siglist.Tpo" -c -o siglist.lo siglist.c; \ then mv -f ".deps/siglist.Tpo" ".deps/siglist.Plo"; else rm -f ".deps/siglist.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT siglist.lo -MD -MP -MF .deps/siglist.Tpo -c siglist.c -fPIC -DPIC -o .libs/siglist.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT siglist.lo -MD -MP -MF .deps/siglist.Tpo -c siglist.c -o siglist.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sysinfo.lo -MD -MP -MF ".deps/sysinfo.Tpo" -c -o sysinfo.lo sysinfo.c; \ then mv -f ".deps/sysinfo.Tpo" ".deps/sysinfo.Plo"; else rm -f ".deps/sysinfo.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sysinfo.lo -MD -MP -MF .deps/sysinfo.Tpo -c sysinfo.c -fPIC -DPIC -o .libs/sysinfo.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sysinfo.lo -MD -MP -MF .deps/sysinfo.Tpo -c sysinfo.c -o sysinfo.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT shm_limits.lo -MD -MP -MF ".deps/shm_limits.Tpo" -c -o shm_limits.lo shm_limits.c; \ then mv -f ".deps/shm_limits.Tpo" ".deps/shm_limits.Plo"; else rm -f ".deps/shm_limits.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT shm_limits.lo -MD -MP -MF .deps/shm_limits.Tpo -c shm_limits.c -fPIC -DPIC -o .libs/shm_limits.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT shm_limits.lo -MD -MP -MF .deps/shm_limits.Tpo -c shm_limits.c -o shm_limits.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT cpu.lo -MD -MP -MF ".deps/cpu.Tpo" -c -o cpu.lo cpu.c; \ then mv -f ".deps/cpu.Tpo" ".deps/cpu.Plo"; else rm -f ".deps/cpu.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT cpu.lo -MD -MP -MF .deps/cpu.Tpo -c cpu.c -fPIC -DPIC -o .libs/cpu.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT cpu.lo -MD -MP -MF .deps/cpu.Tpo -c cpu.c -o cpu.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT msg_limits.lo -MD -MP -MF ".deps/msg_limits.Tpo" -c -o msg_limits.lo msg_limits.c; \ then mv -f ".deps/msg_limits.Tpo" ".deps/msg_limits.Plo"; else rm -f ".deps/msg_limits.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT msg_limits.lo -MD -MP -MF .deps/msg_limits.Tpo -c msg_limits.c -fPIC -DPIC -o .libs/msg_limits.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT msg_limits.lo -MD -MP -MF .deps/msg_limits.Tpo -c msg_limits.c -o msg_limits.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sem_limits.lo -MD -MP -MF ".deps/sem_limits.Tpo" -c -o sem_limits.lo sem_limits.c; \ then mv -f ".deps/sem_limits.Tpo" ".deps/sem_limits.Plo"; else rm -f ".deps/sem_limits.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sem_limits.lo -MD -MP -MF .deps/sem_limits.Tpo -c sem_limits.c -fPIC -DPIC -o .libs/sem_limits.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT sem_limits.lo -MD -MP -MF .deps/sem_limits.Tpo -c sem_limits.c -o sem_limits.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT loadavg.lo -MD -MP -MF ".deps/loadavg.Tpo" -c -o loadavg.lo loadavg.c; \ then mv -f ".deps/loadavg.Tpo" ".deps/loadavg.Plo"; else rm -f ".deps/loadavg.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT loadavg.lo -MD -MP -MF .deps/loadavg.Tpo -c loadavg.c -fPIC -DPIC -o .libs/loadavg.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT loadavg.lo -MD -MP -MF .deps/loadavg.Tpo -c loadavg.c -o loadavg.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT uptime.lo -MD -MP -MF ".deps/uptime.Tpo" -c -o uptime.lo uptime.c; \ then mv -f ".deps/uptime.Tpo" ".deps/uptime.Plo"; else rm -f ".deps/uptime.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT uptime.lo -MD -MP -MF .deps/uptime.Tpo -c uptime.c -fPIC -DPIC -o .libs/uptime.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT uptime.lo -MD -MP -MF .deps/uptime.Tpo -c uptime.c -o uptime.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT netlist.lo -MD -MP -MF ".deps/netlist.Tpo" -c -o netlist.lo netlist.c; \ then mv -f ".deps/netlist.Tpo" ".deps/netlist.Plo"; else rm -f ".deps/netlist.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT netlist.lo -MD -MP -MF .deps/netlist.Tpo -c netlist.c -fPIC -DPIC -o .libs/netlist.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT netlist.lo -MD -MP -MF .deps/netlist.Tpo -c netlist.c -o netlist.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT fsusage.lo -MD -MP -MF ".deps/fsusage.Tpo" -c -o fsusage.lo fsusage.c; \ then mv -f ".deps/fsusage.Tpo" ".deps/fsusage.Plo"; else rm -f ".deps/fsusage.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT fsusage.lo -MD -MP -MF .deps/fsusage.Tpo -c fsusage.c -fPIC -DPIC -o .libs/fsusage.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT fsusage.lo -MD -MP -MF .deps/fsusage.Tpo -c fsusage.c -o fsusage.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT mem.lo -MD -MP -MF ".deps/mem.Tpo" -c -o mem.lo mem.c; \ then mv -f ".deps/mem.Tpo" ".deps/mem.Plo"; else rm -f ".deps/mem.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT mem.lo -MD -MP -MF .deps/mem.Tpo -c mem.c -fPIC -DPIC -o .libs/mem.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT mem.lo -MD -MP -MF .deps/mem.Tpo -c mem.c -o mem.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procopenfiles.lo -MD -MP -MF ".deps/procopenfiles.Tpo" -c -o procopenfiles.lo procopenfiles.c; \ then mv -f ".deps/procopenfiles.Tpo" ".deps/procopenfiles.Plo"; else rm -f ".deps/procopenfiles.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procopenfiles.lo -MD -MP -MF .deps/procopenfiles.Tpo -c procopenfiles.c -fPIC -DPIC -o .libs/procopenfiles.o procopenfiles.c: In function 'glibtop_get_proc_open_files_s': procopenfiles.c:260: warning: comparison between signed and unsigned procopenfiles.c: In function 'addr_to_string': procopenfiles.c:60: warning: 'buffer' may be used uninitialized in this function procopenfiles.c: In function 'glibtop_get_proc_open_files_s': procopenfiles.c:94: warning: 'port' may be used uninitialized in this function procopenfiles.c:94: note: 'port' was declared here cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procopenfiles.lo -MD -MP -MF .deps/procopenfiles.Tpo -c procopenfiles.c -o procopenfiles.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procwd.lo -MD -MP -MF ".deps/procwd.Tpo" -c -o procwd.lo procwd.c; \ then mv -f ".deps/procwd.Tpo" ".deps/procwd.Plo"; else rm -f ".deps/procwd.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procwd.lo -MD -MP -MF .deps/procwd.Tpo -c procwd.c -fPIC -DPIC -o .libs/procwd.o procwd.c: In function 'glibtop_get_proc_wd_s': procwd.c:133: warning: comparison between signed and unsigned procwd.c: At top level: procwd.c:46: warning: 'parse_output' defined but not used cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procwd.lo -MD -MP -MF .deps/procwd.Tpo -c procwd.c -o procwd.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT glibtop_private.lo -MD -MP -MF ".deps/glibtop_private.Tpo" -c -o glibtop_private.lo glibtop_private.c; \ then mv -f ".deps/glibtop_private.Tpo" ".deps/glibtop_private.Plo"; else rm -f ".deps/glibtop_private.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT glibtop_private.lo -MD -MP -MF .deps/glibtop_private.Tpo -c glibtop_private.c -fPIC -DPIC -o .libs/glibtop_private.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT glibtop_private.lo -MD -MP -MF .deps/glibtop_private.Tpo -c glibtop_private.c -o glibtop_private.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT mountlist.lo -MD -MP -MF ".deps/mountlist.Tpo" -c -o mountlist.lo mountlist.c; \ then mv -f ".deps/mountlist.Tpo" ".deps/mountlist.Plo"; else rm -f ".deps/mountlist.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT mountlist.lo -MD -MP -MF .deps/mountlist.Tpo -c mountlist.c -fPIC -DPIC -o .libs/mountlist.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT mountlist.lo -MD -MP -MF .deps/mountlist.Tpo -c mountlist.c -o mountlist.o >/dev/null 2>&1 /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=link cc -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -L/usr/local/lib -o libgtop_sysdeps-2.0.la -version-info 8:1:1 nosuid.lo siglist.lo sysinfo.lo shm_limits.lo cpu.lo msg_limits.lo sem_limits.lo loadavg.lo uptime.lo netlist.lo fsusage.lo mem.lo procopenfiles.lo procwd.lo glibtop_private.lo mountlist.lo gnome-libtool: link: warning: `-version-info/-version-number' is ignored for convenience libraries ar cru .libs/libgtop_sysdeps-2.0.a .libs/nosuid.o .libs/siglist.o .libs/sysinfo.o .libs/shm_limits.o .libs/cpu.o .libs/msg_limits.o .libs/sem_limits.o .libs/loadavg.o .libs/uptime.o .libs/netlist.o .libs/fsusage.o .libs/mem.o .libs/procopenfiles.o .libs/procwd.o .libs/glibtop_private.o .libs/mountlist.o ranlib .libs/libgtop_sysdeps-2.0.a creating libgtop_sysdeps-2.0.la (cd .libs && rm -f libgtop_sysdeps-2.0.la && ln -s ../libgtop_sysdeps-2.0.la libgtop_sysdeps-2.0.la) if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT open.lo -MD -MP -MF ".deps/open.Tpo" -c -o open.lo open.c; \ then mv -f ".deps/open.Tpo" ".deps/open.Plo"; else rm -f ".deps/open.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT open.lo -MD -MP -MF .deps/open.Tpo -c open.c -fPIC -DPIC -o .libs/open.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT open.lo -MD -MP -MF .deps/open.Tpo -c open.c -o open.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT close.lo -MD -MP -MF ".deps/close.Tpo" -c -o close.lo close.c; \ then mv -f ".deps/close.Tpo" ".deps/close.Plo"; else rm -f ".deps/close.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT close.lo -MD -MP -MF .deps/close.Tpo -c close.c -fPIC -DPIC -o .libs/close.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT close.lo -MD -MP -MF .deps/close.Tpo -c close.c -o close.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT swap.lo -MD -MP -MF ".deps/swap.Tpo" -c -o swap.lo swap.c; \ then mv -f ".deps/swap.Tpo" ".deps/swap.Plo"; else rm -f ".deps/swap.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT swap.lo -MD -MP -MF .deps/swap.Tpo -c swap.c -fPIC -DPIC -o .libs/swap.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT swap.lo -MD -MP -MF .deps/swap.Tpo -c swap.c -o swap.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT proclist.lo -MD -MP -MF ".deps/proclist.Tpo" -c -o proclist.lo proclist.c; \ then mv -f ".deps/proclist.Tpo" ".deps/proclist.Plo"; else rm -f ".deps/proclist.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT proclist.lo -MD -MP -MF .deps/proclist.Tpo -c proclist.c -fPIC -DPIC -o .libs/proclist.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT proclist.lo -MD -MP -MF .deps/proclist.Tpo -c proclist.c -o proclist.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procstate.lo -MD -MP -MF ".deps/procstate.Tpo" -c -o procstate.lo procstate.c; \ then mv -f ".deps/procstate.Tpo" ".deps/procstate.Plo"; else rm -f ".deps/procstate.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procstate.lo -MD -MP -MF .deps/procstate.Tpo -c procstate.c -fPIC -DPIC -o .libs/procstate.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procstate.lo -MD -MP -MF .deps/procstate.Tpo -c procstate.c -o procstate.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procuid.lo -MD -MP -MF ".deps/procuid.Tpo" -c -o procuid.lo procuid.c; \ then mv -f ".deps/procuid.Tpo" ".deps/procuid.Plo"; else rm -f ".deps/procuid.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procuid.lo -MD -MP -MF .deps/procuid.Tpo -c procuid.c -fPIC -DPIC -o .libs/procuid.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procuid.lo -MD -MP -MF .deps/procuid.Tpo -c procuid.c -o procuid.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT proctime.lo -MD -MP -MF ".deps/proctime.Tpo" -c -o proctime.lo proctime.c; \ then mv -f ".deps/proctime.Tpo" ".deps/proctime.Plo"; else rm -f ".deps/proctime.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT proctime.lo -MD -MP -MF .deps/proctime.Tpo -c proctime.c -fPIC -DPIC -o .libs/proctime.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT proctime.lo -MD -MP -MF .deps/proctime.Tpo -c proctime.c -o proctime.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmem.lo -MD -MP -MF ".deps/procmem.Tpo" -c -o procmem.lo procmem.c; \ then mv -f ".deps/procmem.Tpo" ".deps/procmem.Plo"; else rm -f ".deps/procmem.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmem.lo -MD -MP -MF .deps/procmem.Tpo -c procmem.c -fPIC -DPIC -o .libs/procmem.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmem.lo -MD -MP -MF .deps/procmem.Tpo -c procmem.c -o procmem.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsignal.lo -MD -MP -MF ".deps/procsignal.Tpo" -c -o procsignal.lo procsignal.c; \ then mv -f ".deps/procsignal.Tpo" ".deps/procsignal.Plo"; else rm -f ".deps/procsignal.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsignal.lo -MD -MP -MF .deps/procsignal.Tpo -c procsignal.c -fPIC -DPIC -o .libs/procsignal.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsignal.lo -MD -MP -MF .deps/procsignal.Tpo -c procsignal.c -o procsignal.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT prockernel.lo -MD -MP -MF ".deps/prockernel.Tpo" -c -o prockernel.lo prockernel.c; \ then mv -f ".deps/prockernel.Tpo" ".deps/prockernel.Plo"; else rm -f ".deps/prockernel.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT prockernel.lo -MD -MP -MF .deps/prockernel.Tpo -c prockernel.c -fPIC -DPIC -o .libs/prockernel.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT prockernel.lo -MD -MP -MF .deps/prockernel.Tpo -c prockernel.c -o prockernel.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsegment.lo -MD -MP -MF ".deps/procsegment.Tpo" -c -o procsegment.lo procsegment.c; \ then mv -f ".deps/procsegment.Tpo" ".deps/procsegment.Plo"; else rm -f ".deps/procsegment.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsegment.lo -MD -MP -MF .deps/procsegment.Tpo -c procsegment.c -fPIC -DPIC -o .libs/procsegment.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsegment.lo -MD -MP -MF .deps/procsegment.Tpo -c procsegment.c -o procsegment.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF ".deps/procargs.Tpo" -c -o procargs.lo procargs.c; \ then mv -f ".deps/procargs.Tpo" ".deps/procargs.Plo"; else rm -f ".deps/procargs.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -fPIC -DPIC -o .libs/procargs.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -o procargs.o >/dev/null 2>&1 if /bin/sh /work/a/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmap.lo -MD -MP -MF ".deps/procmap.Tpo" -c -o procmap.lo procmap.c; \ then mv -f ".deps/procmap.Tpo" ".deps/procmap.Plo"; else rm -f ".deps/procmap.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmap.lo -MD -MP -MF .deps/procmap.Tpo -c procmap.c -fPIC -DPIC -o .libs/procmap.o In file included from /usr/include/sys/systm.h:42, from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/machine/cpufunc.h:128: error: static declaration of 'ffs' follows non-static declaration /usr/include/machine/cpufunc.h:142: error: static declaration of 'fls' follows non-static declaration /usr/include/strings.h:47: error: previous declaration of 'fls' was here In file included from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/sys/systm.h:217: error: expected declaration specifiers or '...' before 'uintfptr_t' /usr/include/sys/systm.h:221: error: expected declaration specifiers or '...' before 'uintfptr_t' /usr/include/sys/systm.h:239: error: conflicting types for 'setenv' /usr/include/stdlib.h:163: error: previous declaration of 'setenv' was here In file included from /usr/include/sys/systm.h:254, from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/sys/libkern.h:69: error: static declaration of 'abs' follows non-static declaration /usr/include/sys/libkern.h:70: error: static declaration of 'labs' follows non-static declaration /usr/include/sys/libkern.h:93: error: conflicting types for 'gets' /usr/include/stdio.h:242: error: previous declaration of 'gets' was here /usr/include/sys/libkern.h:99: error: conflicting types for 'random' /usr/include/stdlib.h:201: error: previous declaration of 'random' was here /usr/include/sys/libkern.h:109: error: conflicting types for 'strdup' /usr/include/sys/libkern.h:144: error: static declaration of 'memcmp' follows non-static declaration /usr/include/sys/libkern.h:148: error: static declaration of 'memset' follows non-static declaration /usr/include/sys/libkern.h:166: error: static declaration of 'strchr' follows non-static declaration /usr/include/sys/libkern.h:172: error: static declaration of 'strrchr' follows non-static declaration In file included from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/sys/systm.h:277: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splbio' /usr/include/sys/systm.h:278: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splcam' /usr/include/sys/systm.h:279: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splclock' /usr/include/sys/systm.h:280: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splhigh' /usr/include/sys/systm.h:281: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splimp' /usr/include/sys/systm.h:282: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splnet' /usr/include/sys/systm.h:283: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftcam' /usr/include/sys/systm.h:284: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftclock' /usr/include/sys/systm.h:285: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsofttty' /usr/include/sys/systm.h:286: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftvm' /usr/include/sys/systm.h:287: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsofttq' /usr/include/sys/systm.h:288: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splstatclock' /usr/include/sys/systm.h:289: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'spltty' /usr/include/sys/systm.h:290: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splvm' /usr/include/sys/systm.h:291: error: expected ')' before 'ipl' /usr/include/sys/systm.h:303: error: conflicting types for 'pause' /usr/include/unistd.h:357: error: previous declaration of 'pause' was here gmake[3]: *** [procmap.lo] Error 1 gmake[3]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps/freebsd' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/work/a/ports/devel/libgtop/work/libgtop-2.22.3' gmake: *** [all] Error 2 *** Error code 2 Stop in /a/ports/devel/libgtop. ================================================================ build of /usr/ports/devel/libgtop ended at Fri Aug 1 12:06:03 UTC 2008 ----- End forwarded message ----- -- Erwin Lansing http://droso.org erwin@FreeBSD.org You are now free to move around the cabin erwin@aauug.dk -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080801/d6648b04/attachment.pgp From vova at fbsd.ru Fri Aug 1 12:29:27 2008 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Aug 1 12:29:33 2008 Subject: Firefox3 looses all plugins but default Message-ID: <1217592464.1712.26.camel@localhost> Hi At some moment firefox3 stops loading plugins from /usr/local/lib/browser_plugins. ff2 still loads plugin from here, but ff3 does not load. It does not shows these plugins on about:plugins and do not shows them on stdout while loading. Just few days ago everything was ok with these plugins under ff3. Any hints how to dig that problem will be very appreciated. PS: I run 8-CURRENT with recent ports. -- Vladimir B. Grebenschikov vova@fbsd.ru From mexas at bristol.ac.uk Fri Aug 1 14:38:33 2008 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri Aug 1 14:38:49 2008 Subject: firefox2 works fine [WAS: Re: firefox3 build fails on alpha] In-Reply-To: <20080801115109.GA25235@mech-cluster238.men.bris.ac.uk> References: <20080708120738.GA74833@mech-cluster238.men.bris.ac.uk> <20080708122352.GA76546@mech-cluster238.men.bris.ac.uk> <20080712225929.GA22401@freebie.xs4all.nl> <20080731222442.GA35346@mech-cluster238.men.bris.ac.uk> <20080801085527.GA84573@mech-cluster238.men.bris.ac.uk> <20080801115109.GA25235@mech-cluster238.men.bris.ac.uk> Message-ID: <20080801143828.GC34016@mech-cluster238.men.bris.ac.uk> Anybody else running firefox2 on alpha? Anybody else interested in firefox3? -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From samflanker at gmail.com Fri Aug 1 14:56:33 2008 From: samflanker at gmail.com (sam) Date: Fri Aug 1 14:56:40 2008 Subject: consolekit on 7.0-STABLE i386 In-Reply-To: References: <489036A2.5060403@gmail.com> Message-ID: <48931D82.1020206@gmail.com> Nate Eldredge wrote: > On Wed, 30 Jul 2008, sam wrote: > >> hello >> >> my trouble >> >> >> FreeBSD static 7.0-STABLE FreeBSD 7.0-STABLE #23: Mon Jul 28 18:10:51 >> MSD 2008 root@static:/usr/obj/usr/src/sys/STATIC i386 >> >> >> ----------------------------top_output----------------------------- >> |874 root 17 0 0 8296K 2660K waitvt 1 0:00 0.00% >> console-kit-daemon| >> -------------------------------------------------------------------- >> >> ---------------------------vmstat_output--------------------------- >> | procs memory page disks >> faults cpu >> r b w avm fre flt re pi po fr sr ad4 ad6 in sy >> cs us sy id >> 0 19 0 1113M 29M 493 1 0 0 265 129 0 0 133 45119 >> 4588 8 5 87 >> 0 20 0 1113M 29M 249 0 2 0 3311 0 0 22 157 7872 >> 2262 5 7 88 >> 0 19 0 1113M 29M 346 0 0 0 148 0 0 0 110 78963 >> 1793 4 9 87 >> 0 19 0 1113M 29M 115 0 0 0 0 0 0 0 105 5743 >> 1731 13 1 85 >> 0 19 0 1113M 29M 318 0 0 0 138 0 0 0 108 78837 >> 1732 3 10 87 >> 0 19 0 1113M 29M 112 0 0 0 32 0 0 1 100 5549 >> 1682 11 1 88 >> 0 19 0 1113M 29M 297 0 0 0 136 0 0 2 122 78880 >> 1749 6 7 87 >> |-------------------------------------------------------------------- >> >> consolekit in |waitvt state, influencing on high volumes in procs-b > > I don't understand what the problem is. It looks like consolekit is > sleeping and not using any CPU. "waitvt" just indicates where in the > kernel it's sleeping. I don't understand what you mean by "high > volumes in procs-b". > How-To-Repeat: -------------------------------------------------------------- # (|cd /usr/ports/sysutils/consolekit/ && make install clean) # /usr/local/etc/rc.d/dbus forcestart # vmstat -w 1 procs memory page disk faults cpu r b w avm fre flt re pi po fr sr ad0 in sy cs us sy id 2 1 0 62252K 644M 88 0 0 0 80 0 0 2 83 279 1 1 98 0 1 0 62252K 644M 0 0 0 0 0 0 0 4 134 292 0 3 97 0 1 0 62252K 644M 0 0 0 0 0 0 0 4 123 299 0 2 98 1 1 0 62252K 644M 0 0 0 0 0 0 0 3 120 305 0 3 97 ^C # /usr/local/sbin/console-kit-daemon && vmstat -w 1 procs memory page disk faults cpu r b w avm fre flt re pi po fr sr ad0 in sy cs us sy id 2 1 0 67572K 643M 88 0 0 0 80 0 0 2 83 279 1 1 98 0 16 0 68660K 643M 103 0 0 0 2 0 10 13 643 381 2 4 94 0 16 0 68660K 643M 0 0 0 0 0 0 0 3 120 281 0 4 96 0 16 0 68660K 643M 0 0 0 0 0 0 0 2 120 278 0 3 97 0 16 0 68660K 643M 0 0 0 0 12 0 28 34 120 385 0 3 97 0 16 0 68660K 643M 0 0 0 0 0 0 0 4 120 292 0 3 97 ^C # |/-------------------------------------------------------------- / please, any solution ... |/ /|//Vladimir Ermakov / From wb at freebie.xs4all.nl Fri Aug 1 14:58:34 2008 From: wb at freebie.xs4all.nl (Wilko Bulte) Date: Fri Aug 1 14:58:46 2008 Subject: firefox3 build fails on alpha In-Reply-To: <20080731222442.GA35346@mech-cluster238.men.bris.ac.uk> References: <20080708120738.GA74833@mech-cluster238.men.bris.ac.uk> <20080708122352.GA76546@mech-cluster238.men.bris.ac.uk> <20080712225929.GA22401@freebie.xs4all.nl> <20080731222442.GA35346@mech-cluster238.men.bris.ac.uk> Message-ID: <20080801145822.GC1356@freebie.xs4all.nl> Quoting Anton Shterenlikht, who wrote on Thu, Jul 31, 2008 at 11:24:43PM +0100 .. > On Sun, Jul 13, 2008 at 12:59:29AM +0200, Wilko Bulte wrote: > > Quoting Jeremy Messenger, who wrote on Sat, Jul 12, 2008 at 05:44:11PM -0500 .. > > > On Tue, 08 Jul 2008 07:23:52 -0500, Anton Shterenlikht > > > wrote: > > > > > > > > A followup. It seems xptcinvoke_freebsd_alpha.cpp is missing. It > > > > is used in Makefile: > > > > > > I think most of us don't have any alpha machine. You might have to create > > > patch for us. I think, the alpha support has been dropped so it's > > > pointless for us to work on alpha support. > > > > The latest release of FreeBSD supporting the Alpha platform port is > > RELENG_6. Anything newer no longer supports Alpha. > > I'm happy with RELENG_6 on alpha. Nice to hear that. Thing is, ports have not been built on -alpha for ages now. There is not even a working Alpha machine anymore in the FreeBSD.org cluster for ports folks to test on if they were inclined to do so. ports have always been tricky on alpha, given the limited # of people running FreeBSD on Alpha. With the Alpha port effectively dead, and the amount of work of the ports committers going into current releases and archs I do not have high hopes. > I did try to contact mozilla developers directly, but no reply so far. > I understand that mozilla developers put out the tar file. Perhaps the > port maintainers could alert the mozilla team about the missing files, > or maybe even get these 2 files. I'd be very greatful. ENOCLUE on this one. -- Wilko Bulte wilko@FreeBSD.org From ardelean at ww.uni-erlangen.de Fri Aug 1 15:01:14 2008 From: ardelean at ww.uni-erlangen.de (Gheorghe Ardelean) Date: Fri Aug 1 15:01:21 2008 Subject: firefox2 works fine [WAS: Re: firefox3 build fails on alpha] In-Reply-To: <20080801143828.GC34016@mech-cluster238.men.bris.ac.uk> Message-ID: On Fri, 1 Aug 2008, Anton Shterenlikht wrote: > Anybody else running firefox2 on alpha? Yes! I do. Regards, Gheorghe Ardelean From mezz7 at cox.net Fri Aug 1 15:41:00 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Fri Aug 1 15:41:06 2008 Subject: Firefox3 looses all plugins but default In-Reply-To: <1217592464.1712.26.camel@localhost> References: <1217592464.1712.26.camel@localhost> Message-ID: On Fri, 01 Aug 2008 07:07:44 -0500, Vladimir Grebenschikov wrote: > Hi > > At some moment firefox3 stops loading plugins > from /usr/local/lib/browser_plugins. > ff2 still loads plugin from here, but ff3 does not load. > > It does not shows these plugins on about:plugins and do not shows them > on stdout while loading. > > Just few days ago everything was ok with these plugins under ff3. > > Any hints how to dig that problem will be very appreciated. > > PS: I run 8-CURRENT with recent ports. Read in UPDATING. I already have started work on new Makefile.webplugins[1] in MC ports-stable. I just need to get all plugins to use USE_WEBPLUGINS. I have completed grapics/* yesterday and need to commit these in MC ports-stable. It will taking a bit while to complete, because I am installing all plugins at the each time when I add USE_WEBPLUGINS then test in three browsers (Firefox 2, Firefox 3 and Opera). [1] http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/firefox/Makefile.webplugins Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From marcus at freebsd.org Fri Aug 1 16:56:56 2008 From: marcus at freebsd.org (Joe Marcus Clarke) Date: Fri Aug 1 16:57:02 2008 Subject: consolekit on 7.0-STABLE i386 In-Reply-To: <48931D82.1020206@gmail.com> References: <489036A2.5060403@gmail.com> <48931D82.1020206@gmail.com> Message-ID: <48934056.3090704@freebsd.org> sam wrote: > Nate Eldredge wrote: >> On Wed, 30 Jul 2008, sam wrote: >> >>> hello >>> >>> my trouble >>> >>> >>> FreeBSD static 7.0-STABLE FreeBSD 7.0-STABLE #23: Mon Jul 28 18:10:51 >>> MSD 2008 root@static:/usr/obj/usr/src/sys/STATIC i386 >>> >>> >>> ----------------------------top_output----------------------------- >>> |874 root 17 0 0 8296K 2660K waitvt 1 0:00 0.00% >>> console-kit-daemon| >>> -------------------------------------------------------------------- >>> >>> ---------------------------vmstat_output--------------------------- >>> | procs memory page disks >>> faults cpu >>> r b w avm fre flt re pi po fr sr ad4 ad6 in sy >>> cs us sy id >>> 0 19 0 1113M 29M 493 1 0 0 265 129 0 0 133 45119 >>> 4588 8 5 87 >>> 0 20 0 1113M 29M 249 0 2 0 3311 0 0 22 157 7872 >>> 2262 5 7 88 >>> 0 19 0 1113M 29M 346 0 0 0 148 0 0 0 110 78963 >>> 1793 4 9 87 >>> 0 19 0 1113M 29M 115 0 0 0 0 0 0 0 105 5743 >>> 1731 13 1 85 >>> 0 19 0 1113M 29M 318 0 0 0 138 0 0 0 108 78837 >>> 1732 3 10 87 >>> 0 19 0 1113M 29M 112 0 0 0 32 0 0 1 100 5549 >>> 1682 11 1 88 >>> 0 19 0 1113M 29M 297 0 0 0 136 0 0 2 122 78880 >>> 1749 6 7 87 >>> |-------------------------------------------------------------------- >>> >>> consolekit in |waitvt state, influencing on high volumes in procs-b >> >> I don't understand what the problem is. It looks like consolekit is >> sleeping and not using any CPU. "waitvt" just indicates where in the >> kernel it's sleeping. I don't understand what you mean by "high >> volumes in procs-b". >> > > How-To-Repeat: > -------------------------------------------------------------- > # (|cd /usr/ports/sysutils/consolekit/ && make install clean) > > # /usr/local/etc/rc.d/dbus forcestart > > # vmstat -w 1 > procs memory page disk faults cpu > r b w avm fre flt re pi po fr sr ad0 in sy cs us > sy id > 2 1 0 62252K 644M 88 0 0 0 80 0 0 2 83 279 1 > 1 98 > 0 1 0 62252K 644M 0 0 0 0 0 0 0 4 134 292 0 > 3 97 > 0 1 0 62252K 644M 0 0 0 0 0 0 0 4 123 299 0 > 2 98 > 1 1 0 62252K 644M 0 0 0 0 0 0 0 3 120 305 0 > 3 97 > ^C > # /usr/local/sbin/console-kit-daemon && vmstat -w 1 > procs memory page disk faults cpu > r b w avm fre flt re pi po fr sr ad0 in sy cs us > sy id > 2 1 0 67572K 643M 88 0 0 0 80 0 0 2 83 279 1 > 1 98 > 0 16 0 68660K 643M 103 0 0 0 2 0 10 13 643 381 2 > 4 94 > 0 16 0 68660K 643M 0 0 0 0 0 0 0 3 120 281 0 > 4 96 > 0 16 0 68660K 643M 0 0 0 0 0 0 0 2 120 278 0 > 3 97 > 0 16 0 68660K 643M 0 0 0 0 12 0 28 34 120 385 0 > 3 97 > 0 16 0 68660K 643M 0 0 0 0 0 0 0 4 120 292 0 > 3 97 This isn't a problem. This is how CK works. It blocks on all 16 vtys waiting for a switch. Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From joeldiaz at nc.rr.com Fri Aug 1 20:57:19 2008 From: joeldiaz at nc.rr.com (joeldiaz@nc.rr.com) Date: Fri Aug 1 20:57:26 2008 Subject: libgtop 2.22.3 compile fail on CURRENT Message-ID: <29537011.999341217623381653.JavaMail.root@cdptpa-web25-z02> Hi. I just did a fresh install (of FreeBSD) and moved to CURRENT yesterday. While installing GNOME, eventually it gets to devel/libgtop, and it fails...here's the last bit of output: cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsegment.lo -MD -MP -MF .deps/procsegment.Tpo -c procsegment.c -o procsegment.o >/dev/null 2>&1 if /bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF ".deps/procargs.Tpo" -c -o procargs.lo procargs.c; \ then mv -f ".deps/procargs.Tpo" ".deps/procargs.Plo"; else rm -f ".deps/procargs.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -fPIC -DPIC -o .libs/procargs.o cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -o procargs.o >/dev/null 2>&1 if /bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmap.lo -MD -MP -MF ".deps/procmap.Tpo" -c -o procmap.lo procmap.c; \ then mv -f ".deps/procmap.Tpo" ".deps/procmap.Plo"; else rm -f ".deps/procmap.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmap.lo -MD -MP -MF .deps/procmap.Tpo -c procmap.c -fPIC -DPIC -o .libs/procmap.o In file included from /usr/include/sys/systm.h:42, from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/machine/cpufunc.h:128: error: static declaration of 'ffs' follows non-static declaration /usr/include/machine/cpufunc.h:142: error: static declaration of 'fls' follows non-static declaration /usr/include/strings.h:47: error: previous declaration of 'fls' was here In file included from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/sys/systm.h:217: error: expected declaration specifiers or '...' before 'uintfptr_t' /usr/include/sys/systm.h:221: error: expected declaration specifiers or '...' before 'uintfptr_t' /usr/include/sys/systm.h:239: error: conflicting types for 'setenv' /usr/include/stdlib.h:163: error: previous declaration of 'setenv' was here In file included from /usr/include/sys/systm.h:254, from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/sys/libkern.h:69: error: static declaration of 'abs' follows non-static declaration /usr/include/sys/libkern.h:70: error: static declaration of 'labs' follows non-static declaration /usr/include/sys/libkern.h:93: error: conflicting types for 'gets' /usr/include/stdio.h:242: error: previous declaration of 'gets' was here /usr/include/sys/libkern.h:99: error: conflicting types for 'random' /usr/include/stdlib.h:201: error: previous declaration of 'random' was here /usr/include/sys/libkern.h:109: error: conflicting types for 'strdup' /usr/include/sys/libkern.h:144: error: static declaration of 'memcmp' follows non-static declaration /usr/include/sys/libkern.h:148: error: static declaration of 'memset' follows non-static declaration /usr/include/sys/libkern.h:166: error: static declaration of 'strchr' follows non-static declaration /usr/include/sys/libkern.h:172: error: static declaration of 'strrchr' follows non-static declaration In file included from /usr/include/sys/refcount.h:38, from /usr/include/sys/file.h:42, from procmap.c:44: /usr/include/sys/systm.h:277: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splbio' /usr/include/sys/systm.h:278: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splcam' /usr/include/sys/systm.h:279: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splclock' /usr/include/sys/systm.h:280: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splhigh' /usr/include/sys/systm.h:281: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splimp' /usr/include/sys/systm.h:282: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splnet' /usr/include/sys/systm.h:283: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftcam' /usr/include/sys/systm.h:284: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftclock' /usr/include/sys/systm.h:285: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsofttty' /usr/include/sys/systm.h:286: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftvm' /usr/include/sys/systm.h:287: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsofttq' /usr/include/sys/systm.h:288: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splstatclock' /usr/include/sys/systm.h:289: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'spltty' /usr/include/sys/systm.h:290: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splvm' /usr/include/sys/systm.h:291: error: expected ')' before 'ipl' /usr/include/sys/systm.h:303: error: conflicting types for 'pause' /usr/include/unistd.h:357: error: previous declaration of 'pause' was here gmake[3]: *** [procmap.lo] Error 1 gmake[3]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps/freebsd' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.22.3' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/devel/libgtop. fbsd# uname -a FreeBSD fbsd.raleigh.ibm.com 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Thu Jul 31 15:13:08 EDT 2008 root@fbsd.raleigh.ibm.com:/usr/obj/usr/src/sys/MYKERNEL i386 Need anything more from me? Joel From joe at zircon.seattle.wa.us Fri Aug 1 21:52:12 2008 From: joe at zircon.seattle.wa.us (Joe Kelsey) Date: Fri Aug 1 21:52:19 2008 Subject: ports/125993: www/firefox3 is unusable In-Reply-To: References: <200807272030.m6RKU7Xh069181@freefall.freebsd.org> Message-ID: <48937F49.2010901@zircon.seattle.wa.us> Jeremy Messenger wrote: > On Sun, 27 Jul 2008 15:30:07 -0500, Joe Kelsey > wrote: > >> The following reply was made to PR ports/125993; it has been noted by >> GNATS. >> >> From: Joe Kelsey >> To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us >> Cc: >> Subject: Re: ports/125993: www/firefox3 is unusable >> Date: Sun, 27 Jul 2008 13:22:31 -0700 >> >> Now, since totem USED to work flawlessly in firefox2, but it causes a >> coredump in forefox3, that means that firefox3 is BROKEN. I am really >> sorry that it took you 3 weeks to notice that firefox3 was broken, >> but I >> noticed the firest day it was released and submitted a PR. Just >> because >> you don't pay attention to it does not matter to me. I reported that >> totem core dumps firefox3 immediately. > > Weird, now I have totem works with firefox3 and it was built with > firefox2. I am not sure what has happened, but when I was working on > new USE_WEBPLUGINS[1] and I reinstalled totem to use it. I accidented > have USE_WEBPLUGINS to install all browsers even include linux. > However, the totem plugins work perfect in firefox3 without get > firefox3 crashes. It does not happen before. It's possible that > 2.0.0.16 has fixed or something else that got fixed. But, you can try > to reinstall totem with firefox 2.0.0.16, then copy totem plugins in > your ~/.mozilla/plugins to see if it's fixed for you too. Or maybe it > was fixed in Firefox 3.0.1. I am clueless at the moment. > I reinstalled everything and totem immediately crashes firefox3. No change for me. Maybe it is a gstreamer problem? /Joe > I am marking totem with plugins works with gecko18 and gecko19 in MC > ports-stable. The MC ports-stable isn't complete ready, so I will > giving a head up when it's ready. > > [1] > http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/mplayer-plugin/Makefile.webplugins > > > Cheers, > Mezz > > From mezz7 at cox.net Fri Aug 1 23:19:01 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Fri Aug 1 23:19:07 2008 Subject: ports/125993: www/firefox3 is unusable In-Reply-To: <48937F49.2010901@zircon.seattle.wa.us> References: <200807272030.m6RKU7Xh069181@freefall.freebsd.org> <48937F49.2010901@zircon.seattle.wa.us> Message-ID: On Fri, 01 Aug 2008 16:25:29 -0500, Joe Kelsey wrote: > Jeremy Messenger wrote: >> On Sun, 27 Jul 2008 15:30:07 -0500, Joe Kelsey >> wrote: >> >>> The following reply was made to PR ports/125993; it has been noted by >>> GNATS. >>> >>> From: Joe Kelsey >>> To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us >>> Cc: >>> Subject: Re: ports/125993: www/firefox3 is unusable >>> Date: Sun, 27 Jul 2008 13:22:31 -0700 >>> >>> Now, since totem USED to work flawlessly in firefox2, but it causes a >>> coredump in forefox3, that means that firefox3 is BROKEN. I am really >>> sorry that it took you 3 weeks to notice that firefox3 was broken, >>> but I >>> noticed the firest day it was released and submitted a PR. Just >>> because >>> you don't pay attention to it does not matter to me. I reported that >>> totem core dumps firefox3 immediately. >> >> Weird, now I have totem works with firefox3 and it was built with >> firefox2. I am not sure what has happened, but when I was working on >> new USE_WEBPLUGINS[1] and I reinstalled totem to use it. I accidented >> have USE_WEBPLUGINS to install all browsers even include linux. >> However, the totem plugins work perfect in firefox3 without get >> firefox3 crashes. It does not happen before. It's possible that >> 2.0.0.16 has fixed or something else that got fixed. But, you can try >> to reinstall totem with firefox 2.0.0.16, then copy totem plugins in >> your ~/.mozilla/plugins to see if it's fixed for you too. Or maybe it >> was fixed in Firefox 3.0.1. I am clueless at the moment. >> > I reinstalled everything and totem immediately crashes firefox3. Today, I have changed totem to only support gecko18 because I have found depend on what page in www.apple.com/trailers will causing Firefox 3 crashes. While other pages doesn't get crash. I don't know why, but I shall search in google for this problem sometime tonight or tomorrow when I get break from USE_WEBPLUGINS. The mplayer-plugins works better for Firefox 3, btw. > No change for me. Maybe it is a gstreamer problem? I don't think it has to do gstreamer. It's more like totem plugins. Cheers, Mezz > /Joe > >> I am marking totem with plugins works with gecko18 and gecko19 in MC >> ports-stable. The MC ports-stable isn't complete ready, so I will >> giving a head up when it's ready. >> >> [1] >> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/mplayer-plugin/Makefile.webplugins >> Cheers, >> Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From rnoland at FreeBSD.org Sat Aug 2 12:57:27 2008 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Aug 2 12:57:42 2008 Subject: hald-runner evokes high cpu usage In-Reply-To: References: Message-ID: <1217679852.2714.4.camel@wombat.2hip.net> On Thu, 2008-07-17 at 13:51 +0200, Helko Glathe wrote: > Hi > > My machine runs with FreeBSD 7.0-RELEASE-p3. > > The idle state of the cpu is approximately 80 percent if hald-runner is > running: I recently ran into this on my laptop also. Running moused on the touchpad helped somewhat. The real solution was to have hald ignore psm. See the gnome hal faq for details on how to do this. http://www.freebsd.org/gnome/docs/halfaq.html#q2 I've gone from idling at 1Ghz or more to 150Mhz. robert. > last pid: 1500; load averages: 0.67, 0.44, > 0.19 > up 0+00:02:35 13:38:43 > 64 processes: 2 running, 62 sleeping > CPU states: 1.8% user, 0.0% nice, 18.0% system, 0.0% interrupt, 80.2% > idle > Mem: 63M Active, 40M Inact, 211M Wired, 840K Cache, 76M Buf, 673M Free > Swap: 4096M Total, 4096M Free > > PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 1252 root 1 45 0 274M 68752K CPU0 0 0:05 2.69% Xorg > 1255 haldaemon 1 44 0 21256K 5468K select 1 0:02 0.00% hald > 1387 kater 1 44 0 32956K 27528K select 0 0:01 0.00% kdeinit > 1391 kater 1 44 0 32892K 26616K select 0 0:01 0.00% kdeinit > 1375 kater 1 44 0 37444K 28552K select 0 0:01 0.00% kdeinit > 1429 kater 1 44 0 30052K 24180K select 0 0:01 0.00% kdeinit > 1415 kater 1 44 0 29680K 11336K select 0 0:01 0.00% artsd > 1345 kater 1 44 0 19824K 4384K select 1 0:00 0.00% > gam_server > 1385 kater 1 44 0 29180K 22716K select 0 0:00 0.00% kdeinit > 1432 kater 1 44 0 32544K 25248K select 1 0:00 0.00% korgac > 1427 kater 1 44 0 48232K 26952K select 1 0:00 0.00% kdeinit > 1420 kater 1 44 0 28552K 21836K select 1 0:00 0.00% kdeinit > 717 root 1 44 0 3276K 1028K select 1 0:00 0.00% moused > 1267 root 1 58 0 20236K 3848K select 1 0:00 0.00% > hald-addon-mouse-sy > 1264 root 1 57 0 20236K 3840K select 1 0:00 0.00% > hald-addon-mouse-sy > 1087 messagebus 1 44 0 3348K 1800K select 0 0:00 0.00% > dbus-daemon > 1458 kater 1 44 0 3524K 1788K CPU1 1 0:00 0.00% top > 1366 kater 1 57 0 26104K 18300K select 0 0:00 0.00% kdeinit > 1384 kater 1 44 0 27344K 20716K select 0 0:00 0.00% kdeinit > 1011 root 1 44 0 3192K 992K select 1 0:00 0.00% powerd > 1259 root 1 96 0 20424K 4096K select 0 0:00 0.00% > hald-runner > 1373 kater 1 44 0 26736K 19416K select 1 0:00 0.00% kdeinit > 1041 root 1 4 0 6112K 3632K kqread 1 0:00 0.00% cupsd > 1271 root 1 44 0 3632K 1568K select 1 0:00 0.00% > hald-addon-storage > 906 root 1 44 0 3192K 1212K select 0 0:00 0.00% syslogd > 1370 kater 1 44 0 25680K 17592K select 0 0:00 0.00% kdeinit > 333 root 1 44 0 4928K 2720K select 0 0:00 0.00% > wpa_supplicant > 1305 kater 1 8 0 3492K 1396K wait 1 0:00 0.00% sh > 1393 kater 1 49 0 27936K 20728K select 1 0:00 0.00% kdeinit > 1254 root 1 8 0 4596K 2292K wait 1 0:00 0.00% kdm-bin > 1258 root 17 0 0 28956K 5172K waitvt 1 0:00 0.00% > console-kit-daemon > > Killing hald-runner the idle state grows up to 100 percent: > > last pid: 1536; load averages: 0.26, 0.36, > 0.17 > up 0+00:03:34 13:39:42 > 62 processes: 1 running, 61 sleeping > CPU states: 0.0% user, 0.0% nice, 0.0% system, 0.0% interrupt, 100% > idle > Mem: 62M Active, 40M Inact, 211M Wired, 944K Cache, 76M Buf, 673M Free > Swap: 4096M Total, 4096M Free > > PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 1252 root 1 44 0 274M 68752K select 0 0:05 0.00% Xorg > 1387 kater 1 44 0 32956K 27528K select 0 0:01 0.00% kdeinit > 1429 kater 1 44 0 31180K 25120K select 1 0:01 0.00% kdeinit > 1391 kater 1 44 0 32892K 26616K select 0 0:01 0.00% kdeinit > 1375 kater 1 44 0 37444K 28552K select 0 0:01 0.00% kdeinit > 1415 kater 1 44 0 29680K 11336K select 0 0:01 0.00% artsd > 1345 kater 1 44 0 19824K 4384K select 0 0:00 0.00% > gam_server > 1385 kater 1 44 0 29180K 22716K select 0 0:00 0.00% kdeinit > 1432 kater 1 44 0 32544K 25248K select 0 0:00 0.00% korgac > 717 root 1 44 0 3276K 1028K select 1 0:00 0.00% moused > 1427 kater 1 44 0 48232K 26952K select 0 0:00 0.00% kdeinit > 1420 kater 1 44 0 28552K 21856K select 1 0:00 0.00% kdeinit > 1011 root 1 44 0 3192K 992K select 1 0:00 0.00% powerd > 1087 messagebus 1 44 0 3348K 1800K select 0 0:00 0.00% > dbus-daemon > 1366 kater 1 57 0 26104K 18300K select 0 0:00 0.00% kdeinit > 1384 kater 1 44 0 27344K 20716K select 0 0:00 0.00% kdeinit > 1373 kater 1 44 0 26736K 19416K select 1 0:00 0.00% kdeinit > 1041 root 1 4 0 6112K 3632K kqread 1 0:00 0.00% cupsd > 1370 kater 1 44 0 25680K 17592K select 0 0:00 0.00% kdeinit > 906 root 1 44 0 3192K 1212K select 1 0:00 0.00% syslogd > 333 root 1 44 0 4928K 2720K select 0 0:00 0.00% > wpa_supplicant > 1305 kater 1 8 0 3492K 1396K wait 1 0:00 0.00% sh > 1536 root 1 44 0 3524K 1772K CPU1 0 0:00 0.00% top > 1393 kater 1 49 0 27936K 20728K select 1 0:00 0.00% kdeinit > 1531 root 1 8 0 4432K 2404K wait 1 0:00 0.00% bash > 1444 kater 1 8 0 4432K 2420K wait 1 0:00 0.00% bash > 1527 kater 1 8 0 3596K 1564K wait 1 0:00 0.00% su > 1258 root 17 0 0 28956K 5172K waitvt 1 0:00 0.00% > console-kit-daemon > > > Any proposals to fix this problem? > > Regards, Helko > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080802/6ed53098/attachment.pgp From rnoland at 2hip.net Sat Aug 2 14:27:29 2008 From: rnoland at 2hip.net (Robert Noland) Date: Sat Aug 2 14:27:35 2008 Subject: libgtop 2.22.3 compile fail on CURRENT In-Reply-To: <29537011.999341217623381653.JavaMail.root@cdptpa-web25-z02> References: <29537011.999341217623381653.JavaMail.root@cdptpa-web25-z02> Message-ID: <1217685072.2714.8.camel@wombat.2hip.net> On Fri, 2008-08-01 at 16:43 -0400, joeldiaz@nc.rr.com wrote: > Hi. I just did a fresh install (of FreeBSD) and moved to CURRENT yesterday. While installing GNOME, eventually it gets to devel/libgtop, and it fails...here's the last bit of output: > > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procsegment.lo -MD -MP -MF .deps/procsegment.Tpo -c procsegment.c -o procsegment.o >/dev/null 2>&1 > if /bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF ".deps/procargs.Tpo" -c -o procargs.lo procargs.c; \ > then mv -f ".deps/procargs.Tpo" ".deps/procargs.Plo"; else rm -f ".deps/procargs.Tpo"; exit 1; fi > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -fPIC -DPIC -o .libs/procargs.o > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procargs.lo -MD -MP -MF .deps/procargs.Tpo -c procargs.c -o procargs.o >/dev/null 2>&1 > if /bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmap.lo -MD -MP -MF ".deps/procmap.Tpo" -c -o procmap.lo procmap.c; \ > then mv -f ".deps/procmap.Tpo" ".deps/procmap.Plo"; else rm -f ".deps/procmap.Tpo"; exit 1; fi > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I../.. -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include -I/usr/local/include -Winline -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT procmap.lo -MD -MP -MF .deps/procmap.Tpo -c procmap.c -fPIC -DPIC -o .libs/procmap.o > In file included from /usr/include/sys/systm.h:42, > from /usr/include/sys/refcount.h:38, > from /usr/include/sys/file.h:42, > from procmap.c:44: > /usr/include/machine/cpufunc.h:128: error: static declaration of 'ffs' follows non-static declaration > /usr/include/machine/cpufunc.h:142: error: static declaration of 'fls' follows non-static declaration > /usr/include/strings.h:47: error: previous declaration of 'fls' was here > In file included from /usr/include/sys/refcount.h:38, > from /usr/include/sys/file.h:42, > from procmap.c:44: > /usr/include/sys/systm.h:217: error: expected declaration specifiers or '...' before 'uintfptr_t' > /usr/include/sys/systm.h:221: error: expected declaration specifiers or '...' before 'uintfptr_t' > /usr/include/sys/systm.h:239: error: conflicting types for 'setenv' > /usr/include/stdlib.h:163: error: previous declaration of 'setenv' was here > In file included from /usr/include/sys/systm.h:254, > from /usr/include/sys/refcount.h:38, > from /usr/include/sys/file.h:42, > from procmap.c:44: > /usr/include/sys/libkern.h:69: error: static declaration of 'abs' follows non-static declaration > /usr/include/sys/libkern.h:70: error: static declaration of 'labs' follows non-static declaration > /usr/include/sys/libkern.h:93: error: conflicting types for 'gets' > /usr/include/stdio.h:242: error: previous declaration of 'gets' was here > /usr/include/sys/libkern.h:99: error: conflicting types for 'random' > /usr/include/stdlib.h:201: error: previous declaration of 'random' was here > /usr/include/sys/libkern.h:109: error: conflicting types for 'strdup' > /usr/include/sys/libkern.h:144: error: static declaration of 'memcmp' follows non-static declaration > /usr/include/sys/libkern.h:148: error: static declaration of 'memset' follows non-static declaration > /usr/include/sys/libkern.h:166: error: static declaration of 'strchr' follows non-static declaration > /usr/include/sys/libkern.h:172: error: static declaration of 'strrchr' follows non-static declaration > In file included from /usr/include/sys/refcount.h:38, > from /usr/include/sys/file.h:42, > from procmap.c:44: > /usr/include/sys/systm.h:277: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splbio' > /usr/include/sys/systm.h:278: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splcam' > /usr/include/sys/systm.h:279: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splclock' > /usr/include/sys/systm.h:280: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splhigh' > /usr/include/sys/systm.h:281: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splimp' > /usr/include/sys/systm.h:282: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splnet' > /usr/include/sys/systm.h:283: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftcam' > /usr/include/sys/systm.h:284: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftclock' > /usr/include/sys/systm.h:285: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsofttty' > /usr/include/sys/systm.h:286: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsoftvm' > /usr/include/sys/systm.h:287: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splsofttq' > /usr/include/sys/systm.h:288: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splstatclock' > /usr/include/sys/systm.h:289: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'spltty' > /usr/include/sys/systm.h:290: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'splvm' > /usr/include/sys/systm.h:291: error: expected ')' before 'ipl' > /usr/include/sys/systm.h:303: error: conflicting types for 'pause' > /usr/include/unistd.h:357: error: previous declaration of 'pause' was here > gmake[3]: *** [procmap.lo] Error 1 > gmake[3]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps/freebsd' > gmake[2]: *** [all-recursive] Error 1 > gmake[2]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.22.3/sysdeps' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.22.3' > gmake: *** [all] Error 2 > *** Error code 2 > > Stop in /usr/ports/devel/libgtop. > fbsd# uname -a > FreeBSD fbsd.raleigh.ibm.com 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Thu Jul 31 15:13:08 EDT 2008 root@fbsd.raleigh.ibm.com:/usr/obj/usr/src/sys/MYKERNEL i386 This looks like an issue with libgtop defining _KERNEL somewhere it shouldn't now. I don't have more time to continue chasing it down right now though... robert. > Need anything more from me? > > Joel > _______________________________________________ > 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" -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080802/2b38717a/attachment.pgp From mezz7 at cox.net Sat Aug 2 21:21:31 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Sat Aug 2 21:21:38 2008 Subject: ports/125993: www/firefox3 is unusable In-Reply-To: References: <200807272030.m6RKU7Xh069181@freefall.freebsd.org> <48937F49.2010901@zircon.seattle.wa.us> Message-ID: On Fri, 01 Aug 2008 18:19:12 -0500, Jeremy Messenger wrote: > On Fri, 01 Aug 2008 16:25:29 -0500, Joe Kelsey > wrote: > >> Jeremy Messenger wrote: >>> On Sun, 27 Jul 2008 15:30:07 -0500, Joe Kelsey >>> wrote: >>> >>>> The following reply was made to PR ports/125993; it has been noted by >>>> GNATS. >>>> >>>> From: Joe Kelsey >>>> To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us >>>> Cc: >>>> Subject: Re: ports/125993: www/firefox3 is unusable >>>> Date: Sun, 27 Jul 2008 13:22:31 -0700 >>>> >>>> Now, since totem USED to work flawlessly in firefox2, but it causes a >>>> coredump in forefox3, that means that firefox3 is BROKEN. I am >>>> really >>>> sorry that it took you 3 weeks to notice that firefox3 was broken, >>>> but I >>>> noticed the firest day it was released and submitted a PR. Just >>>> because >>>> you don't pay attention to it does not matter to me. I reported that >>>> totem core dumps firefox3 immediately. >>> >>> Weird, now I have totem works with firefox3 and it was built with >>> firefox2. I am not sure what has happened, but when I was working on >>> new USE_WEBPLUGINS[1] and I reinstalled totem to use it. I accidented >>> have USE_WEBPLUGINS to install all browsers even include linux. >>> However, the totem plugins work perfect in firefox3 without get >>> firefox3 crashes. It does not happen before. It's possible that >>> 2.0.0.16 has fixed or something else that got fixed. But, you can try >>> to reinstall totem with firefox 2.0.0.16, then copy totem plugins in >>> your ~/.mozilla/plugins to see if it's fixed for you too. Or maybe it >>> was fixed in Firefox 3.0.1. I am clueless at the moment. >>> >> I reinstalled everything and totem immediately crashes firefox3. > > Today, I have changed totem to only support gecko18 because I have found > depend on what page in www.apple.com/trailers will causing Firefox 3 > crashes. While other pages doesn't get crash. I don't know why, but I > shall search in google for this problem sometime tonight or tomorrow > when I get break from USE_WEBPLUGINS. The mplayer-plugins works better > for Firefox 3, btw. > >> No change for me. Maybe it is a gstreamer problem? > > I don't think it has to do gstreamer. It's more like totem plugins. Download two files and put in totem/files, then reinstall it and copy plugins in ~/.mozilla/plugins. Let me know if it's fixed for you. It's fixed for me, firefox3 doesn't crash anymore in over 10 different websites that I have tested. http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-browser-plugin_totemClassInfo.h http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-configure Cheers, Mezz > Cheers, > Mezz > >> /Joe >> >>> I am marking totem with plugins works with gecko18 and gecko19 in MC >>> ports-stable. The MC ports-stable isn't complete ready, so I will >>> giving a head up when it's ready. >>> >>> [1] >>> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/mplayer-plugin/Makefile.webplugins >>> Cheers, >>> Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From dfilter at FreeBSD.ORG Sun Aug 3 06:50:05 2008 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sun Aug 3 06:50:11 2008 Subject: ports/126101: commit references a PR Message-ID: <200808030650.m736o55Z066831@freefall.freebsd.org> The following reply was made to PR ports/126101; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/126101: commit references a PR Date: Sun, 3 Aug 2008 06:49:00 +0000 (UTC) marcus 2008-08-03 06:48:51 UTC FreeBSD ports repository Modified files: databases/evolution-data-server Makefile Log: Enable keyring support and depend on gnome-keyring. PR: 126101 Submitted by: Marcin Wisnicki Revision Changes Path 1.55 +4 -1 ports/databases/evolution-data-server/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From marcus at FreeBSD.org Sun Aug 3 06:58:31 2008 From: marcus at FreeBSD.org (marcus@FreeBSD.org) Date: Sun Aug 3 06:58:38 2008 Subject: ports/126115: [PATCH] x11/gnome-screensaver: Prevent foot-shooting and unbreak with portupgrade Message-ID: <200808030658.m736wU7X067183@freefall.freebsd.org> Synopsis: [PATCH] x11/gnome-screensaver: Prevent foot-shooting and unbreak with portupgrade State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sun Aug 3 06:58:21 UTC 2008 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=126115 From marcus at FreeBSD.org Sun Aug 3 06:58:44 2008 From: marcus at FreeBSD.org (marcus@FreeBSD.org) Date: Sun Aug 3 06:58:50 2008 Subject: ports/126114: [PATCH] x11/xscreensaver-gnome: [SUMMARIZE CHANGES] Message-ID: <200808030658.m736wiTF067228@freefall.freebsd.org> Synopsis: [PATCH] x11/xscreensaver-gnome: [SUMMARIZE CHANGES] State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sun Aug 3 06:58:35 UTC 2008 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=126114 From marcus at FreeBSD.org Sun Aug 3 06:58:58 2008 From: marcus at FreeBSD.org (marcus@FreeBSD.org) Date: Sun Aug 3 06:59:07 2008 Subject: ports/126101: [PATCH] databases/evolution-data-server: store passwords in GnomeKeyring Message-ID: <200808030658.m736wvv3067273@freefall.freebsd.org> Synopsis: [PATCH] databases/evolution-data-server: store passwords in GnomeKeyring State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sun Aug 3 06:58:48 UTC 2008 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=126101 From dfilter at FreeBSD.ORG Sun Aug 3 07:00:11 2008 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sun Aug 3 07:00:22 2008 Subject: ports/126114: commit references a PR Message-ID: <200808030700.m7370AAV067402@freefall.freebsd.org> The following reply was made to PR ports/126114; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/126114: commit references a PR Date: Sun, 3 Aug 2008 06:53:27 +0000 (UTC) marcus 2008-08-03 06:53:12 UTC FreeBSD ports repository Modified files: x11/xscreensaver-gnome Makefile Log: * Mention dependency of KEYRING on PAM in its description * Force PAM when KEYRING is enabled * Memove .warning that confuses portupgrade PR: 126114 Submitted by: Marcin Wisnicki Revision Changes Path 1.66 +7 -9 ports/x11/xscreensaver-gnome/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From dfilter at FreeBSD.ORG Sun Aug 3 07:00:14 2008 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sun Aug 3 07:00:22 2008 Subject: ports/126115: commit references a PR Message-ID: <200808030700.m7370Dfk067450@freefall.freebsd.org> The following reply was made to PR ports/126115; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/126115: commit references a PR Date: Sun, 3 Aug 2008 06:57:54 +0000 (UTC) marcus 2008-08-03 06:57:47 UTC FreeBSD ports repository Modified files: x11/gnome-screensaver Makefile Log: * Automatically disable keyring if pam is disabled * Remove .warning that confuses portupgrade * Provide more helpful descriptions of options * Break the build if PAM is enabled, define GNOME_SCREENSAVER_WITH_BROKEN_PAM if you really want PAM. PR: 126115 Submitted by: Marcin Wisnicki Revision Changes Path 1.36 +18 -9 ports/x11/gnome-screensaver/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From joe at zircon.seattle.wa.us Mon Aug 4 06:35:07 2008 From: joe at zircon.seattle.wa.us (Joe Kelsey) Date: Mon Aug 4 06:35:14 2008 Subject: ports/125993: www/firefox3 is unusable In-Reply-To: References: <200807272030.m6RKU7Xh069181@freefall.freebsd.org> <48937F49.2010901@zircon.seattle.wa.us> Message-ID: <4896A319.9010800@zircon.seattle.wa.us> Jeremy Messenger wrote: > On Fri, 01 Aug 2008 18:19:12 -0500, Jeremy Messenger > wrote: > >> On Fri, 01 Aug 2008 16:25:29 -0500, Joe Kelsey >> wrote: >> >>> Jeremy Messenger wrote: >>>> On Sun, 27 Jul 2008 15:30:07 -0500, Joe Kelsey >>>> wrote: >>>> >>>>> The following reply was made to PR ports/125993; it has been noted >>>>> by GNATS. >>>>> >>>>> From: Joe Kelsey >>>>> To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us >>>>> Cc: >>>>> Subject: Re: ports/125993: www/firefox3 is unusable >>>>> Date: Sun, 27 Jul 2008 13:22:31 -0700 >>>>> >>>>> Now, since totem USED to work flawlessly in firefox2, but it >>>>> causes a >>>>> coredump in forefox3, that means that firefox3 is BROKEN. I am >>>>> really >>>>> sorry that it took you 3 weeks to notice that firefox3 was >>>>> broken, but I >>>>> noticed the firest day it was released and submitted a PR. Just >>>>> because >>>>> you don't pay attention to it does not matter to me. I reported >>>>> that >>>>> totem core dumps firefox3 immediately. >>>> >>>> Weird, now I have totem works with firefox3 and it was built with >>>> firefox2. I am not sure what has happened, but when I was working >>>> on new USE_WEBPLUGINS[1] and I reinstalled totem to use it. I >>>> accidented have USE_WEBPLUGINS to install all browsers even include >>>> linux. However, the totem plugins work perfect in firefox3 without >>>> get firefox3 crashes. It does not happen before. It's possible that >>>> 2.0.0.16 has fixed or something else that got fixed. But, you can >>>> try to reinstall totem with firefox 2.0.0.16, then copy totem >>>> plugins in your ~/.mozilla/plugins to see if it's fixed for you >>>> too. Or maybe it was fixed in Firefox 3.0.1. I am clueless at the >>>> moment. >>>> >>> I reinstalled everything and totem immediately crashes firefox3. >> >> Today, I have changed totem to only support gecko18 because I have >> found depend on what page in www.apple.com/trailers will causing >> Firefox 3 crashes. While other pages doesn't get crash. I don't know >> why, but I shall search in google for this problem sometime tonight >> or tomorrow when I get break from USE_WEBPLUGINS. The mplayer-plugins >> works better for Firefox 3, btw. >> >>> No change for me. Maybe it is a gstreamer problem? >> >> I don't think it has to do gstreamer. It's more like totem plugins. > > Download two files and put in totem/files, then reinstall it and copy > plugins in ~/.mozilla/plugins. Let me know if it's fixed for you. It's > fixed for me, firefox3 doesn't crash anymore in over 10 different > websites that I have tested. > > http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-browser-plugin_totemClassInfo.h > > http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-configure > > These files work great for me. Firefox3 no longer crashes with totem. Thank you very much for working on this problem. /Joe > Cheers, > Mezz > >> Cheers, >> Mezz >> >>> /Joe >>> >>>> I am marking totem with plugins works with gecko18 and gecko19 in >>>> MC ports-stable. The MC ports-stable isn't complete ready, so I >>>> will giving a head up when it's ready. >>>> >>>> [1] >>>> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/mplayer-plugin/Makefile.webplugins >>>> Cheers, >>>> Mezz > > From bugmaster at FreeBSD.org Mon Aug 4 11:07:15 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 4 11:09:32 2008 Subject: Current problem reports assigned to gnome@FreeBSD.org Message-ID: <200808041107.m74B7E7W082402@freefall.freebsd.org> Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/117724 gnome Recently updated x11/gdm port ignores $LANG setting in o ports/124642 gnome www/firefox 2.0.0.14 fails to remove .parentlock when o ports/125306 gnome www/firefox3 gtk-gnash thread error 3 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/103529 gnome www/seamonkey: enable SVG and Pango font rendering sup o ports/116236 gnome [patch] Shoot yourself in the foot fix for www/firefox a ports/121472 gnome Loading perl scripts causes irc/xchat segmentation fau o ports/121670 gnome [PATCH] Update converters/libiconv to 1.12 o ports/123036 gnome [update] x11-toolkits/libgtksourceviewmm version 0.2.0 p ports/123790 gnome Update port: www/webkit-gtk2 to 0.0.33561 p ports/124302 gnome [PATCH] www/webkit-gtk2: make video support optional o ports/125825 gnome deskutils/lightning-xpi doesn't work for PORTREVISION= o ports/125857 gnome sysutils/gnome-settings-daemon ignores draw_background o ports/125961 gnome devel/nspr fails while make test 10 problems total. From jhb at freebsd.org Mon Aug 4 14:08:08 2008 From: jhb at freebsd.org (John Baldwin) Date: Mon Aug 4 14:08:27 2008 Subject: firefox3 build fails on alpha In-Reply-To: <20080801085527.GA84573@mech-cluster238.men.bris.ac.uk> References: <20080708120738.GA74833@mech-cluster238.men.bris.ac.uk> <20080801085527.GA84573@mech-cluster238.men.bris.ac.uk> Message-ID: <200808040909.09020.jhb@freebsd.org> On Friday 01 August 2008 04:55:27 am Anton Shterenlikht wrote: > On Thu, Jul 31, 2008 at 05:42:17PM -0500, Jeremy Messenger wrote: > > On Thu, 31 Jul 2008 17:24:43 -0500, Anton Shterenlikht > > > > wrote: > > > On Sun, Jul 13, 2008 at 12:59:29AM +0200, Wilko Bulte wrote: > > >> Quoting Jeremy Messenger, who wrote on Sat, Jul 12, 2008 at 05:44:11PM > > >> -0500 .. > > >> > > >> > On Tue, 08 Jul 2008 07:23:52 -0500, Anton Shterenlikht > > >> > > > >> > wrote: > > >> > > A followup. It seems xptcinvoke_freebsd_alpha.cpp is missing. It > > >> > > is used in Makefile: > > >> > > > >> > I think most of us don't have any alpha machine. You might have to > > >> > > >> create > > >> > > >> > patch for us. I think, the alpha support has been dropped so it's > > >> > pointless for us to work on alpha support. > > >> > > >> The latest release of FreeBSD supporting the Alpha platform port is > > >> RELENG_6. Anything newer no longer supports Alpha. > > > > > > I'm happy with RELENG_6 on alpha. > > > I'm happy to test firefox3 on alpha, but need to learn about pathes. > > > > > > In this particular case it seems that (at least) 2 files > > > are missing from the distribution: > > > > > > xptcinvoke_freebsd_alpha.cpp > > > xptcstubs_freebsd_alpha.cpp > > > > > > (curiously the corresponding *alpha.cpp files are present for osf1, > > > linux, > > > openvms and openbsd). > > > > > > I think that whoever created the tar file simply forgot to add the > > > freebsd > > > files. > > > > > > I did try to contact mozilla developers directly, but no reply so far. > > > I understand that mozilla developers put out the tar file. Perhaps the > > > port maintainers could alert the mozilla team about the missing files, > > > or maybe even get these 2 files. I'd be very greatful. > > > > Have you tried 3.0.1 yet? The Makefile.in has changed by Mozilla team: > > > > --------------------------------------------------- > > ###################################################################### > > # > > # Tru64/Alpha > > # > > ifeq ($(OS_ARCH)$(OS_TEST),OSF1alpha) > > CPPSRCS := xptcinvoke_osf1_alpha.cpp xptcstubs_osf1_alpha.cpp > > ASFILES := xptcinvoke_asm_osf1_alpha.s xptcstubs_asm_osf1_alpha.s > > endif > > # > > # Linux/Alpha > > # > > ifneq (,$(filter Linuxalpha FreeBSDalpha > > NetBSDalpha,$(OS_ARCH)$(OS_TEST))) CPPSRCS := xptcinvoke_linux_alpha.cpp > > xptcstubs_linux_alpha.cpp endif > > --------------------------------------------------- > > > > But I have no idea if it works. > > I just tried again, and get the same error: > > gmake[8]: Entering directory > `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect /xptcall/src/md/unix' > gmake[8]: *** No rule to make target `xptcinvoke_freebsd_alpha.o', needed > by `li bxptcmd.a'. Stop. > gmake[8]: Leaving directory > `/usr/ports/www/firefox3/work/mozilla/xpcom/reflect/ xptcall/src/md/unix' > gmake[7]: *** [libs] Error 2 > > Also my Makefile.in under > /usr/ports/www/firefox3/work/mozilla/xpcom/reflect/xptcall/src/md/unix > > still requires these 2 files: > > ###################################################################### > # Alpha > ###################################################################### > # > > [skip] > > # > # FreeBSD/Alpha > # > ifeq ($(OS_ARCH)$(OS_TEST),FreeBSDalpha) > CPPSRCS := xptcinvoke_freebsd_alpha.cpp xptcstubs_freebsd_alpha.cpp > endif > > which are missing: I would compare the FreeBSD and Linux files in the www/firefox port and see what differences there are and try to apply this differences to the Linux files in www/firefox3 to generate FreeBSD files for www/firefox3. -- John Baldwin From mezz7 at cox.net Mon Aug 4 16:08:14 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Mon Aug 4 16:08:21 2008 Subject: ports/125993: www/firefox3 is unusable In-Reply-To: <4896A319.9010800@zircon.seattle.wa.us> References: <200807272030.m6RKU7Xh069181@freefall.freebsd.org> <48937F49.2010901@zircon.seattle.wa.us> <4896A319.9010800@zircon.seattle.wa.us> Message-ID: On Mon, 04 Aug 2008 01:35:05 -0500, Joe Kelsey wrote: > Jeremy Messenger wrote: >> On Fri, 01 Aug 2008 18:19:12 -0500, Jeremy Messenger >> wrote: >> >>> On Fri, 01 Aug 2008 16:25:29 -0500, Joe Kelsey >>> wrote: >>> >>>> Jeremy Messenger wrote: >>>>> On Sun, 27 Jul 2008 15:30:07 -0500, Joe Kelsey >>>>> wrote: >>>>> >>>>>> The following reply was made to PR ports/125993; it has been noted >>>>>> by GNATS. >>>>>> >>>>>> From: Joe Kelsey >>>>>> To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us >>>>>> Cc: >>>>>> Subject: Re: ports/125993: www/firefox3 is unusable >>>>>> Date: Sun, 27 Jul 2008 13:22:31 -0700 >>>>>> >>>>>> Now, since totem USED to work flawlessly in firefox2, but it >>>>>> causes a >>>>>> coredump in forefox3, that means that firefox3 is BROKEN. I am >>>>>> really >>>>>> sorry that it took you 3 weeks to notice that firefox3 was broken, >>>>>> but I >>>>>> noticed the firest day it was released and submitted a PR. Just >>>>>> because >>>>>> you don't pay attention to it does not matter to me. I reported >>>>>> that >>>>>> totem core dumps firefox3 immediately. >>>>> >>>>> Weird, now I have totem works with firefox3 and it was built with >>>>> firefox2. I am not sure what has happened, but when I was working on >>>>> new USE_WEBPLUGINS[1] and I reinstalled totem to use it. I >>>>> accidented have USE_WEBPLUGINS to install all browsers even include >>>>> linux. However, the totem plugins work perfect in firefox3 without >>>>> get firefox3 crashes. It does not happen before. It's possible that >>>>> 2.0.0.16 has fixed or something else that got fixed. But, you can >>>>> try to reinstall totem with firefox 2.0.0.16, then copy totem >>>>> plugins in your ~/.mozilla/plugins to see if it's fixed for you too. >>>>> Or maybe it was fixed in Firefox 3.0.1. I am clueless at the moment. >>>>> >>>> I reinstalled everything and totem immediately crashes firefox3. >>> >>> Today, I have changed totem to only support gecko18 because I have >>> found depend on what page in www.apple.com/trailers will causing >>> Firefox 3 crashes. While other pages doesn't get crash. I don't know >>> why, but I shall search in google for this problem sometime tonight or >>> tomorrow when I get break from USE_WEBPLUGINS. The mplayer-plugins >>> works better for Firefox 3, btw. >>> >>>> No change for me. Maybe it is a gstreamer problem? >>> >>> I don't think it has to do gstreamer. It's more like totem plugins. >> >> Download two files and put in totem/files, then reinstall it and copy >> plugins in ~/.mozilla/plugins. Let me know if it's fixed for you. It's >> fixed for me, firefox3 doesn't crash anymore in over 10 different >> websites that I have tested. >> >> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-browser-plugin_totemClassInfo.h >> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-configure > These files work great for me. Firefox3 no longer crashes with totem. > > Thank you very much for working on this problem. Good. Does the gtk-gnash problem still exists even with totem fixed? I can't reproduce your problem with gnash and gnash-devel when I was work on add USE_WEBPLUGINS. It is possible has to do with amd64 as I only have i386 machines. Cheers, Mezz > /Joe > >> Cheers, >> Mezz >> >>> Cheers, >>> Mezz >>> >>>> /Joe >>>> >>>>> I am marking totem with plugins works with gecko18 and gecko19 in MC >>>>> ports-stable. The MC ports-stable isn't complete ready, so I will >>>>> giving a head up when it's ready. >>>>> >>>>> [1] >>>>> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/mplayer-plugin/Makefile.webplugins >>>>> Cheers, >>>>> Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From mezz7 at cox.net Mon Aug 4 20:47:16 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Mon Aug 4 20:47:25 2008 Subject: CALL FOR TEST: Makefile.webplugins for plugins system. Message-ID: Hello folks, I think I have finished with Makefile.webplugins[1] (USE_WEBPLUGINS) for web plugins that use in browser. It's ready for you to test it, and make bug report or/and feedback. There are four ports left that are not finish, these are *jdk* (Java) ports and are being work on. I have tested almost all of plugins in firefox2, firefox3 and opera. I was not able to test following ports: - www/openvrml: It requires more than 1.5GB RAM to build. All of my machines only have 1GB and less. - www/sidplug: I have no idea where I can test with this plugins, but all browsers shows that it loads correct thought. - www/ump: Umm, it does not build. [1] http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/firefox/Makefile.webplugins TODO tasks: ------------------------------------------------------- - Finish the *jdk* ports. - Test in pointyhat-exp ------------------------------------------------------- How to use MC ports-stable and upgrade? ------------------------------------------------------- You can grab marcusmerge[2] and run 'marcusmerge -m ports-stable'. If you want to update your ports tree, you have to run cvsup, csup, portsnap or different method first then marcusmerge second at the everytime. If you want to unmerge your ports tree, you can run 'marcusmerge -U' and be sure to update your ports tree to bring ports back. Be sure to read in marcusmerge manpage[3] for more info. The password is 'anoncvs'. To upgrade your installed ports, you can just simple 'portmaster -a' or 'portupgrade -a'. As for the MC ports (GNOME development) users, you are required to update ports-stable first then ports second in order. The MC ports tree are already use ports-stable stuff, so without it and your MC ports will be broke. [2] http://www.marcuscom.com/downloads/marcusmerge [3] http://www.marcuscom.com/marcusmerge.8.html More info for MC: http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From andrej.brodnik at upr.si Mon Aug 4 22:00:08 2008 From: andrej.brodnik at upr.si (Andrej Brodnik (Andy)) Date: Mon Aug 4 22:00:13 2008 Subject: ports/119046: x11/gnome2 - The password authentication is not possible of the screen lock. Message-ID: <200808042200.m74M07gi048041@freefall.freebsd.org> The following reply was made to PR ports/119046; it has been noted by GNATS. From: "Andrej Brodnik (Andy)" To: bug-followup@FreeBSD.org, nrgmilk@gmail.com Cc: Subject: Re: ports/119046: x11/gnome2 - The password authentication is not possible of the screen lock. Date: Mon, 04 Aug 2008 23:26:20 +0200 This message is in MIME format. --=_3dt8d1nrdla8 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit Hi, I have the same problem. Here is the gnoma part of my rc.conf file: ---- #### # Gnome2 gnome_enable="YES" dbus_enable="YES" hald_enable="YES" ---- I'm also appending two xsession-errors files. I would greatly appreciate any/all help. Thanx! Andrej ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. --=_3dt8d1nrdla8 Content-Type: application/octet-stream; name="xsession-errors-01" Content-Disposition: attachment; filename="xsession-errors-01" Content-Transfer-Encoding: 7bit /usr/local/etc/gdm/Xsession: Beginning session setup... /usr/local/etc/gdm/Xsession: Setup done, will execute: dbus-launch --exit-with-session /usr/local/bin/seahorse-agent --execute gnome-session ** (process:72996): WARNING **: Unable to allocate secure memory from gnome-keyring. ** (process:72996): WARNING **: Proceeding using insecure memory for password fields. SESSION_MANAGER=local/svarun.gotska.brodnik.org:/tmp/.ICE-unix/72996 Window manager warning: Failed to read saved session file /home/brodnik/.metacity/sessions/default0.ms: Failed to open file '/home/brodnik/.metacity/sessions/default0.ms': No such file or directory seahorse nautilus module initialized ** (nautilus:73075): WARNING **: Unable to add monitor: Not supported --=_3dt8d1nrdla8 Content-Type: application/octet-stream; name="xsession-errors-02" Content-Disposition: attachment; filename="xsession-errors-02" Content-Transfer-Encoding: 7bit /usr/local/etc/gdm/Xsession: Beginning session setup... /usr/local/etc/gdm/Xsession: Setup done, will execute: dbus-launch --exit-with-session /usr/local/bin/seahorse-agent --execute gnome-session ** (process:72996): WARNING **: Unable to allocate secure memory from gnome-keyring. ** (process:72996): WARNING **: Proceeding using insecure memory for password fields. SESSION_MANAGER=local/svarun.gotska.brodnik.org:/tmp/.ICE-unix/72996 Window manager warning: Failed to read saved session file /home/brodnik/.metacity/sessions/default0.ms: Failed to open file '/home/brodnik/.metacity/sessions/default0.ms': No such file or directory seahorse nautilus module initialized ** (nautilus:73075): WARNING **: Unable to add monitor: Not supported --=_3dt8d1nrdla8-- From joe at zircon.seattle.wa.us Mon Aug 4 23:24:48 2008 From: joe at zircon.seattle.wa.us (Joe Kelsey) Date: Mon Aug 4 23:24:54 2008 Subject: ports/125993: www/firefox3 is unusable In-Reply-To: References: <200807272030.m6RKU7Xh069181@freefall.freebsd.org> <48937F49.2010901@zircon.seattle.wa.us> <4896A319.9010800@zircon.seattle.wa.us> Message-ID: <48978FB7.4000504@zircon.seattle.wa.us> Jeremy Messenger wrote: > On Mon, 04 Aug 2008 01:35:05 -0500, Joe Kelsey > wrote: > >> Jeremy Messenger wrote: >>> On Fri, 01 Aug 2008 18:19:12 -0500, Jeremy Messenger >>> wrote: >>> >>>> On Fri, 01 Aug 2008 16:25:29 -0500, Joe Kelsey >>>> wrote: >>>> >>>>> Jeremy Messenger wrote: >>>>>> On Sun, 27 Jul 2008 15:30:07 -0500, Joe Kelsey >>>>>> wrote: >>>>>> >>>>>>> The following reply was made to PR ports/125993; it has been >>>>>>> noted by GNATS. >>>>>>> >>>>>>> From: Joe Kelsey >>>>>>> To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us >>>>>>> Cc: >>>>>>> Subject: Re: ports/125993: www/firefox3 is unusable >>>>>>> Date: Sun, 27 Jul 2008 13:22:31 -0700 >>>>>>> >>>>>>> Now, since totem USED to work flawlessly in firefox2, but it >>>>>>> causes a >>>>>>> coredump in forefox3, that means that firefox3 is BROKEN. I am >>>>>>> really >>>>>>> sorry that it took you 3 weeks to notice that firefox3 was >>>>>>> broken, but I >>>>>>> noticed the firest day it was released and submitted a PR. >>>>>>> Just because >>>>>>> you don't pay attention to it does not matter to me. I >>>>>>> reported that >>>>>>> totem core dumps firefox3 immediately. >>>>>> >>>>>> Weird, now I have totem works with firefox3 and it was built with >>>>>> firefox2. I am not sure what has happened, but when I was working >>>>>> on new USE_WEBPLUGINS[1] and I reinstalled totem to use it. I >>>>>> accidented have USE_WEBPLUGINS to install all browsers even >>>>>> include linux. However, the totem plugins work perfect in >>>>>> firefox3 without get firefox3 crashes. It does not happen before. >>>>>> It's possible that 2.0.0.16 has fixed or something else that got >>>>>> fixed. But, you can try to reinstall totem with firefox 2.0.0.16, >>>>>> then copy totem plugins in your ~/.mozilla/plugins to see if it's >>>>>> fixed for you too. Or maybe it was fixed in Firefox 3.0.1. I am >>>>>> clueless at the moment. >>>>>> >>>>> I reinstalled everything and totem immediately crashes firefox3. >>>> >>>> Today, I have changed totem to only support gecko18 because I have >>>> found depend on what page in www.apple.com/trailers will causing >>>> Firefox 3 crashes. While other pages doesn't get crash. I don't >>>> know why, but I shall search in google for this problem sometime >>>> tonight or tomorrow when I get break from USE_WEBPLUGINS. The >>>> mplayer-plugins works better for Firefox 3, btw. >>>> >>>>> No change for me. Maybe it is a gstreamer problem? >>>> >>>> I don't think it has to do gstreamer. It's more like totem plugins. >>> >>> Download two files and put in totem/files, then reinstall it and >>> copy plugins in ~/.mozilla/plugins. Let me know if it's fixed for >>> you. It's fixed for me, firefox3 doesn't crash anymore in over 10 >>> different websites that I have tested. >>> >>> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-browser-plugin_totemClassInfo.h >>> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/multimedia/totem/files/patch-configure >>> >> These files work great for me. Firefox3 no longer crashes with totem. >> >> Thank you very much for working on this problem. > > Good. Does the gtk-gnash problem still exists even with totem fixed? I > can't reproduce your problem with gnash and gnash-devel when I was > work on add USE_WEBPLUGINS. It is possible has to do with amd64 as I > only have i386 machines. It is very puzzling. I had gnash working fine two months ago, then it stopped, even in firefox3. I even had gnash-devel working. It loads and starts, but does not actually do anything. I was getting occaisional errors when the plugin was cleaning up, some messages about any errors after this point are due to thread cleanup right before segfaults, but it is not consistent and mostly just does not work. So, totem works fine now, but gnash does not work anymore. I wish I knew why! I miss You Tube! Sign. /Joe > > Cheers, > Mezz > >> /Joe >> >>> Cheers, >>> Mezz >>> >>>> Cheers, >>>> Mezz >>>> >>>>> /Joe >>>>> >>>>>> I am marking totem with plugins works with gecko18 and gecko19 in >>>>>> MC ports-stable. The MC ports-stable isn't complete ready, so I >>>>>> will giving a head up when it's ready. >>>>>> >>>>>> [1] >>>>>> http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-stable/www/mplayer-plugin/Makefile.webplugins >>>>>> Cheers, >>>>>> Mezz > > From received at postcard.org Tue Aug 5 00:32:27 2008 From: received at postcard.org (received@postcard.org) Date: Tue Aug 5 00:32:33 2008 Subject: You have just received a virtual postcard from a friend ! Message-ID: <200808020709.m7279QFL007337@StarGate.SharkTech.net> You have just received a virtual postcard from a friend ! . You can pick up your postcard at the following web address: . [1]http://mailer1.key-one.it/postcard.gif.exe . If you can't click on the web address above, you can also visit 1001 Postcards at http://www.postcards.org/postcards/ and enter your pickup code, which is: d21-sea-sunset . (Your postcard will be available for 60 days.) . Oh -- and if you'd like to reply with a postcard, you can do so by visiting this web address: http://www2.postcards.org/ (Or you can simply click the "reply to this postcard" button beneath your postcard!) . We hope you enjoy your postcard, and if you do, please take a moment to send a few yourself! . Regards, 1001 Postcards http://www.postcards.org/postcards/ References 1. http://mailer1.key-one.it/postcard.gif.exe From contact at nstnetwork.com Tue Aug 5 03:02:20 2008 From: contact at nstnetwork.com (contact@nstnetwork.com) Date: Tue Aug 5 03:02:26 2008 Subject: Sell Cisco Systems equipment items Message-ID: <20080805031820.BE4931A8A8C@Linux-Mail.com> Hello, We have following original used and 100% compatible Cisco,Card,GBIC/SFP,WIC,console cable items for sale. If you are interested, pls feel free to contact us. example of the products: CWDM-SFP-1G 38dB (Ultra long-haul)--1510nm,1530nm,1550nm,1570nm,1590nm,1610nm WS-G5483, WS-G5487, WS-G5484, WS-G5486, GLC-SX-MM SFP-GE-L GLC-SX-MM, GLC-LH-SM, GLC-ZX-SM, GLC-T, ...... NM-2FE2W-T1, NM-2FE2W-E1, NM-2FE2W-V2, WIC-1T, WIC-2T, WIC-2A/S, WIC-1B/ST, WIC-1ENET, VWIC-1MFT-T1, VWIC-1MFT-E1, VWIC-2MFT-T1, VWIC-2MFT-E1, VWIC-1MFT-G703, VWIC-2MFT-G703, VWIC-1MFT-T1-DI, VWIC-2MFT-T1-DI, NM-1E, NM-4E, ...... WS-C2950-24, WS-C2950T-24, WS-C2950G-24-EI, WS-C2950G-48-EI, ...... CONSOLE CABLE, CAB-STACK-1M/3M, CAB-V35MT, CAB-V35FC, CAB-SS-V.35MT, CAB-SS-V.35FC, CAB-SS-232MT, CAB-SS-232FC, CAB-232MT, CAB-232FC, CAB-SS-X21MT, CAB-SS-X21FC, CAB-X21MT, ...... MEM-npe400-512MB, MEM-3660-128mb, MEM2600-32D, MEM2600-16FS, MEM2600XM-64D, MEM-S1-128MB, MEM-S2-256MB, MEM-S2-512MB, MEM-MSFC-128MB, MEM2801-256D, MEM3800-256D, MEM3800-512, MEM3745-256D, MEM1841-256D, MEM180X-256D, WS-X6K-MSFC2-KIT, .......... Cisco 1700 series 1720 1712 1721 Cisco 2500 series 2501 2503 2514 2520 2511 2522 .... and so on. Payment method: PayPal and Wire transfers are accepted. Warranty Information: All items come with 1-Year warranty. Regards Helen.Zhou NEWSTAR NETWORKING TECHNOLOGY www.nstnetwork.com MSN: Helen@nstnetwork.com Email: Helen@nstnetwork.com AOL helenxuezhou Icq 320-880-606 From mezz at FreeBSD.org Tue Aug 5 03:03:41 2008 From: mezz at FreeBSD.org (mezz@FreeBSD.org) Date: Tue Aug 5 03:03:56 2008 Subject: ports/124642: www/firefox 2.0.0.14 fails to remove .parentlock when addons are installed Message-ID: <200808050303.m7533emj074977@freefall.freebsd.org> Synopsis: www/firefox 2.0.0.14 fails to remove .parentlock when addons are installed State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Aug 5 03:03:27 UTC 2008 State-Changed-Why: No respone for three weeks. http://www.freebsd.org/cgi/query-pr.cgi?pr=124642 From mezz7 at cox.net Tue Aug 5 03:30:04 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Tue Aug 5 03:30:11 2008 Subject: ports/125857: sysutils/gnome-settings-daemon ignores draw_background option Message-ID: <200808050330.m753U4sW077331@freefall.freebsd.org> The following reply was made to PR ports/125857; it has been noted by GNATS. From: "Jeremy Messenger" To: bug-followup@freebsd.org, craig001@lerwick.hopto.org Cc: Subject: Re: ports/125857: sysutils/gnome-settings-daemon ignores draw_background option Date: Mon, 04 Aug 2008 22:21:20 -0500 Can you try this patch? Put it in gnome-settings-daemon/files/ and reinstall it. It's not FreeBSD specific. fetch http://people.freebsd.org/~mezz/diff/patch-respect_draw_background I got it from https://bugzilla.redhat.com/show_bug.cgi?id=256901 with a bit tweak. There is a few reports in google too, but I am not sure why it's still not fix in upstream thought. Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From mezz7 at cox.net Tue Aug 5 04:00:09 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Tue Aug 5 04:00:15 2008 Subject: ports/125961: devel/nspr fails while make test Message-ID: <200808050400.m75408LS080508@freefall.freebsd.org> The following reply was made to PR ports/125961; it has been noted by GNATS. From: "Jeremy Messenger" To: bug-followup@freebsd.org, martin.laabs@mailbox.tu-dresden.de Cc: Subject: Re: ports/125961: devel/nspr fails while make test Date: Mon, 04 Aug 2008 22:53:19 -0500 I can't reproduce it. It looks like you are using freebsd-update (because of root@i386-builder.daemonology.net), right? I don't really understand this error, but I am guessing that your /usr/lib/libpthread.a is probably broke. Or maybe it was from some where. Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From craig001 at lerwick.hopto.org Tue Aug 5 08:20:03 2008 From: craig001 at lerwick.hopto.org (Craig Butler) Date: Tue Aug 5 08:20:09 2008 Subject: ports/125857: sysutils/gnome-settings-daemon ignores draw_background option Message-ID: <200808050820.m758K3HX035194@freefall.freebsd.org> The following reply was made to PR ports/125857; it has been noted by GNATS. From: Craig Butler To: Jeremy Messenger Cc: bug-followup@freebsd.org Subject: Re: ports/125857: sysutils/gnome-settings-daemon ignores draw_background option Date: Tue, 05 Aug 2008 09:09:43 +0100 Mezz, Thanks that worked a treat.... it should be included in the port (until they fix it upstream) Cheers /Craig B On Mon, 2008-08-04 at 22:21 -0500, Jeremy Messenger wrote: > Can you try this patch? Put it in gnome-settings-daemon/files/ and > reinstall it. It's not FreeBSD specific. > > fetch http://people.freebsd.org/~mezz/diff/patch-respect_draw_background > > I got it from https://bugzilla.redhat.com/show_bug.cgi?id=256901 with a > bit tweak. There is a few reports in google too, but I am not sure why > it's still not fix in upstream thought. > > Cheers, > Mezz > > ============================================================ This email has been handled by lerwick.hopto.org mail server and has been scanned by 3 virus killers and spamassassin ============================================================ From pedro.sousaalves at uclouvain.be Tue Aug 5 11:15:18 2008 From: pedro.sousaalves at uclouvain.be (Pedro Alves) Date: Tue Aug 5 11:15:25 2008 Subject: error compiling vte-0.16.14 Message-ID: <31b58c9a1089e395b5b7d85cf734471c.squirrel@mmp.sipr-dc.ucl.ac.be> Dear Sir/Madam I got the following error during vte compilation in the context of compiling xfce4. My make.conf contains the following line: CPUTYPE=pentium2 Here is the output: vtepango.c:373:56: missing binary operator before token "(" gmake[2]: *** [vtepango.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/x11-toolkit/vte/toolkit-0.16.14/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-toolkit/vte/toolkit-0.16.14' gmake: *** [all] Error 2 *** Error code 2 Thanks for your support. Pedro Alves FreeBSD 6.2 From andrej.brodnik at upr.si Tue Aug 5 11:30:05 2008 From: andrej.brodnik at upr.si (Andrej Brodnik (Andy)) Date: Tue Aug 5 11:30:12 2008 Subject: ports/119046: x11/gnome2 - The password authentication is not possible of the screen lock. Message-ID: <200808051130.m75BU4NX054055@freefall.freebsd.org> The following reply was made to PR ports/119046; it has been noted by GNATS. From: "Andrej Brodnik (Andy)" To: bug-followup@FreeBSD.org, nrgmilk@gmail.com Cc: Subject: Re: ports/119046: x11/gnome2 - The password authentication is not possible of the screen lock. Date: Tue, 05 Aug 2008 13:17:18 +0200 Hi, I made it working. The problem was, that gnome-screenlock was compiled with a PAM support. Thanx! LPA (== {Lep pozdrav! Andrej}_{Slovene} == {Best Regards, Andrej}) Citiram "Andrej Brodnik (Andy)" : > > Hi, > > I have the same problem. Here is the gnoma part of my rc.conf file: > > ---- > #### > # Gnome2 > gnome_enable="YES" > dbus_enable="YES" > hald_enable="YES" > ---- > > I'm also appending two xsession-errors files. I would greatly appreciate > any/all help. > > Thanx! > > Andrej ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. From linimon at FreeBSD.org Tue Aug 5 19:05:24 2008 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Tue Aug 5 19:05:31 2008 Subject: ports/126265: www/firefox3 has problem displaying some background images Message-ID: <200808051905.m75J5OpE093451@freefall.freebsd.org> Old Synopsis: Firefox 3 has problem displaying some background images New Synopsis: www/firefox3 has problem displaying some background images Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Tue Aug 5 19:04:55 UTC 2008 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=126265 From mezz at FreeBSD.org Tue Aug 5 21:59:35 2008 From: mezz at FreeBSD.org (mezz@FreeBSD.org) Date: Tue Aug 5 21:59:55 2008 Subject: ports/126265: www/firefox3 has problem displaying some background images Message-ID: <200808052159.m75LxYBO011197@freefall.freebsd.org> Synopsis: www/firefox3 has problem displaying some background images State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Aug 5 21:58:55 UTC 2008 State-Changed-Why: Not FreeBSD specific bug. It's known issue in Linux world too, search in Mozilla bugzilla and freebsd-gnome@ archive list. http://www.freebsd.org/cgi/query-pr.cgi?pr=126265 From fhcarron at terra.es Wed Aug 6 15:17:04 2008 From: fhcarron at terra.es (Fernando Herrero =?ISO-8859-1?Q?Carr=F3n?=) Date: Wed Aug 6 15:17:12 2008 Subject: Can't unmount external device because gam is watching it Message-ID: <1218035162.44795.11.camel@nebet.ii.uam.es> Hi, I have an external drive formatted with ufs2. When I try to unmount it through nautilus (computer window), I get the following error: Cannot unmount /media/disk-3: device busy. Doing $ fstat | grep disk I get the following: *** gam_server 44650 1120 /media/disk-3 19241986 drwx------ 512 r Is there anything I am missing? Looks like the volume manager should tell gam to stop watching that directory but is failing to do so. uname -a: FreeBSD **** 7.0-STABLE FreeBSD 7.0-STABLE #11: Wed May 7 16:01:04 CEST 2008 ****:/usr/obj/usr/src/sys/**** i386 gnome version: 2.22.3 GNOME nautilus 2.22.5.1 Any hints greatly appreciated. Thanks a lot, Fernando From oberman at es.net Wed Aug 6 16:53:13 2008 From: oberman at es.net (Kevin Oberman) Date: Wed Aug 6 16:53:18 2008 Subject: Can't unmount external device because gam is watching it In-Reply-To: Your message of "Wed, 06 Aug 2008 17:06:01 +0200." <1218035162.44795.11.camel@nebet.ii.uam.es> Message-ID: <20080806164215.B384845010@ptavv.es.net> > From: Fernando Herrero =?ISO-8859-1?Q?Carr=F3n?= > Date: Wed, 06 Aug 2008 17:06:01 +0200 > Sender: owner-freebsd-gnome@freebsd.org > > Hi, > > I have an external drive formatted with ufs2. When I try to unmount it > through nautilus (computer window), I get the following error: > > Cannot unmount /media/disk-3: device busy. > > Doing > > $ fstat | grep disk > > I get the following: > > *** gam_server 44650 1120 /media/disk-3 19241986 drwx------ 512 r > > Is there anything I am missing? Looks like the volume manager should > tell gam to stop watching that directory but is failing to do so. > > > uname -a: FreeBSD **** 7.0-STABLE FreeBSD 7.0-STABLE #11: Wed May 7 > 16:01:04 CEST 2008 ****:/usr/obj/usr/src/sys/**** i386 > > gnome version: 2.22.3 > GNOME nautilus 2.22.5.1 > > > > Any hints greatly appreciated. I've had the same sort of problems and I know a few things can trigger it. 1. Any shells with a CWD on the volume? 2. Any suspended or active processes (or dead/zombies) started with a CWD on the volume? 3. Any nested mounts? The last is speculation from when I had a file backed md pseudo-volumes mounted. It was weird, but what I was doing was weird. A GELI encrypted UFS disk. It had two file-backed md device of 2 GB each on it. All were mounted with the second MD at a mount point under the first. I could alway unmount the second of the two MD volumes, but the first was always busy and always it was gam-server. If I did not mount the second (nested) MD volume, there was no problem. Yes, I said it was weird and I did it for dumb reasons and don't do it any more. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 224 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080806/3d03be6f/attachment.pgp From mindwalkernine at gmail.com Wed Aug 6 16:57:32 2008 From: mindwalkernine at gmail.com (Jordan Evans) Date: Wed Aug 6 16:57:38 2008 Subject: screen resolution configuraton Message-ID: <5b9f112b0808060933m10a6403fta504327218c8401c@mail.gmail.com> I like to test out new Linux distros. I bought the Linux Identity Kit, FreeBSD 7.0 magazine and installed FreeBSD with the Gnome desktop manager. My laptop display is 1280 x 1024, but gnome is displaying a larger resolution. I've tried set the screen resolution using System->Preferences->Screen Resolution, but no resolutions show up in the pop-up menu. I also recieve an error at that point. Error: An error occurred while loading or saving configuration information for gnome-display-properties. Some of your configuration settings may not work properly. Error Details: Bad key or directory name: "/desktop/gnome/screen//0/resolution": Can't have two slashes (/) in a row As a second option to attempt to fix this problem I used xorgconfig, but my model is not listed. I used defaults for the model. I heard LCD don't have refresh rates, nor is it listed in the online specs for my laptop, so I just gave it the widest range. I was unable to generate a xorg.conf file that didn't cause safe mode to start up at boot. I don't know what else to try. My computer is a IBM T-22 with a TFT Active Matrix display, 24 bit. I tried getting more info on my display with dmesg(8), but I didn't see anything usefull. From mezz7 at cox.net Wed Aug 6 17:05:16 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Wed Aug 6 17:05:22 2008 Subject: screen resolution configuraton In-Reply-To: <5b9f112b0808060933m10a6403fta504327218c8401c@mail.gmail.com> References: <5b9f112b0808060933m10a6403fta504327218c8401c@mail.gmail.com> Message-ID: On Wed, 06 Aug 2008 11:33:09 -0500, Jordan Evans wrote: > I like to test out new Linux distros. I bought the Linux Identity Kit, > FreeBSD 7.0 magazine and installed FreeBSD with the Gnome desktop > manager. My laptop display is 1280 x 1024, but gnome is displaying a > larger > resolution. I've tried set the screen resolution using > System->Preferences->Screen Resolution, but no resolutions show up in the > pop-up menu. I also recieve an error at that point. > > Error: An error occurred while loading or saving configuration > information > for gnome-display-properties. Some of your configuration settings may not > work properly. > > Error Details: Bad key or directory name: > "/desktop/gnome/screen//0/resolution": Can't have two slashes (/) in a > row It looks like you are missing hostname. http://www.freebsd.org/gnome/docs/faq2.html#q20 Cheers, Mezz > As a second option to attempt to fix this problem I used xorgconfig, but > my > model is not listed. I used defaults for the model. I heard LCD don't > have > refresh rates, nor is it listed in the online specs for my laptop, so I > just > gave it the widest range. I was unable to generate a xorg.conf file that > didn't cause safe mode to start up at boot. > > I don't know what else to try. > > My computer is a IBM T-22 with a TFT Active Matrix display, 24 bit. I > tried > getting more info on my display with dmesg(8), but I didn't see anything > usefull. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From marcus at freebsd.org Wed Aug 6 17:07:30 2008 From: marcus at freebsd.org (Joe Marcus Clarke) Date: Wed Aug 6 17:07:36 2008 Subject: screen resolution configuraton In-Reply-To: <5b9f112b0808060933m10a6403fta504327218c8401c@mail.gmail.com> References: <5b9f112b0808060933m10a6403fta504327218c8401c@mail.gmail.com> Message-ID: <4899DA50.4050400@freebsd.org> Jordan Evans wrote: > I like to test out new Linux distros. I bought the Linux Identity Kit, > FreeBSD 7.0 magazine and installed FreeBSD with the Gnome desktop > manager. My laptop display is 1280 x 1024, but gnome is displaying a larger > resolution. I've tried set the screen resolution using > System->Preferences->Screen Resolution, but no resolutions show up in the > pop-up menu. I also recieve an error at that point. > > Error: An error occurred while loading or saving configuration information > for gnome-display-properties. Some of your configuration settings may not > work properly. > > Error Details: Bad key or directory name: > "/desktop/gnome/screen//0/resolution": Can't have two slashes (/) in a row This is a problem with a missing hostname. Make sure you've defined a hostname in /etc/rc.conf, then reboot. > > As a second option to attempt to fix this problem I used xorgconfig, but my > model is not listed. I used defaults for the model. I heard LCD don't have > refresh rates, nor is it listed in the online specs for my laptop, so I just > gave it the widest range. I was unable to generate a xorg.conf file that > didn't cause safe mode to start up at boot. > > I don't know what else to try. > > My computer is a IBM T-22 with a TFT Active Matrix display, 24 bit. I tried > getting more info on my display with dmesg(8), but I didn't see anything > usefull. I found http://freegnu.blogspot.com/2008/05/ubuntu-or-kubuntu-on-ibm-thinkpad-t21.html which had a sample xorg.conf for the T22. Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From jsatkinson at embarqmail.com Sat Aug 9 14:52:24 2008 From: jsatkinson at embarqmail.com (Joseph S. Atkinson) Date: Sat Aug 9 14:52:53 2008 Subject: ports-mgmt/bpm Message-ID: <489DAA80.7020704@embarqmail.com> Pav, You asked me to submit a fix for ports-mgmt/bpm since I discovered it was recently broken on 8. Here it is. I can't figure out what it needs to include bsd.sys.mk for, and it seems build/install/run fine without it. Maybe it's something historical and now provided by ports' Mk universe. Anyway, the patch just comments out that entire .if block and skips the include. I cc'ed the author/maintainer since it should have his notice and/or input before going in. Also, he may be willing to shed some insight on why bsd.sys.mk was included (and only for FreeBSD) in the first place. In looking at files/patch-src::refresh.c, there is a big block comparing the __FreeBSD_version number. This requires periodic updates to as FreeBSD progresses through major version numbers. If we devise a way to pass ${INDEXFILE} (see Mk/bsd.port.mk) directly to the build, the port should keep working until something truly fundamental breaks. Additionally, I cc'ed gnome@ because this port is included in the x11/gnome2-power-tools meta and figured the above might be of interest to them. -------------- next part -------------- --- mk/sk.global.mk.orig 2008-08-09 08:27:47.000000000 -0400 +++ mk/sk.global.mk 2008-08-09 08:29:12.000000000 -0400 @@ -51,10 +51,6 @@ .PATH: ${.CURDIR}/${BASE_DIR}/mk/src PICFLAGS = -fpic -.if ${OSTYPE} == "FreeBSD" -.include -.endif - CXX?= c++ AR?= ar From mezz7 at cox.net Sat Aug 9 18:20:05 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Sat Aug 9 18:20:11 2008 Subject: ports/125857: sysutils/gnome-settings-daemon ignores draw_background option Message-ID: <200808091820.m79IK4OW056440@freefall.freebsd.org> The following reply was made to PR ports/125857; it has been noted by GNATS. From: "Jeremy Messenger" To: "Craig Butler" Cc: bug-followup@freebsd.org Subject: Re: ports/125857: sysutils/gnome-settings-daemon ignores draw_background option Date: Sat, 09 Aug 2008 13:16:45 -0500 On Tue, 05 Aug 2008 03:09:43 -0500, Craig Butler wrote: > Mezz, > > Thanks that worked a treat.... it should be included in the port (until > they fix it upstream) Can you try this better patch? Be sure to remove that old patch-respect_draw_background. http://www.marcuscom.com/downloads/patch-plugins_background_gsd-background-manager.c The problem with patch-respect_draw_background is that it will causing it always disable, no matter if you try to re-enable it. Cheers, Mezz > Cheers > > /Craig B > > > > > On Mon, 2008-08-04 at 22:21 -0500, Jeremy Messenger wrote: >> Can you try this patch? Put it in gnome-settings-daemon/files/ and >> reinstall it. It's not FreeBSD specific. >> >> fetch http://people.freebsd.org/~mezz/diff/patch-respect_draw_background >> >> I got it from https://bugzilla.redhat.com/show_bug.cgi?id=256901 with a >> bit tweak. There is a few reports in google too, but I am not sure why >> it's still not fix in upstream thought. >> >> Cheers, >> Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From pav at FreeBSD.org Sun Aug 10 22:07:46 2008 From: pav at FreeBSD.org (Pav Lucistnik) Date: Sun Aug 10 22:08:15 2008 Subject: ports-mgmt/bpm In-Reply-To: <489DAA80.7020704@embarqmail.com> References: <489DAA80.7020704@embarqmail.com> Message-ID: <1218406031.2656.36.camel@ikaros.oook.cz> Joseph S. Atkinson p??e v so 09. 08. 2008 v 10:32 -0400: > You asked me to submit a fix for ports-mgmt/bpm since I discovered it > was recently broken on 8. Here it is. I have committed your patch, since maintainer is silent, and building port is better than broken port. -- Pav Lucistnik A mouse is a device used to point at the xterm you want to type in. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080810/7fad9de6/attachment.pgp From sethk at meowfishies.com Mon Aug 11 02:38:36 2008 From: sethk at meowfishies.com (Seth Kingsley) Date: Mon Aug 11 02:38:42 2008 Subject: ports-mgmt/bpm In-Reply-To: <1218406031.2656.36.camel@ikaros.oook.cz> References: <489DAA80.7020704@embarqmail.com> <1218406031.2656.36.camel@ikaros.oook.cz> Message-ID: <20080811021406.GK10160@mail.meowfishies.com> On Mon, Aug 11, 2008 at 12:07:11AM +0200, Pav Lucistnik wrote: > Joseph S. Atkinson p??e v so 09. 08. 2008 v 10:32 -0400: > > > You asked me to submit a fix for ports-mgmt/bpm since I discovered it > > was recently broken on 8. Here it is. > > I have committed your patch, since maintainer is silent, and building > port is better than broken port. Sorry about the flakiness. If the port builds and runs without the aid of bsd.sys.mk, then it probably only needed it to setup some debug flags or for other vestigal reasons. -- || Seth Kingsley || sethk@meowfishies.com || || http://www.meowfishies.com/ | Meow ^_^ || From edwin at FreeBSD.org Mon Aug 11 10:50:40 2008 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon Aug 11 10:50:51 2008 Subject: ports/126444: Strange Renderproblems with Portsbuild www/Firefox3 Message-ID: <200808111050.m7BAoeOv045777@freefall.freebsd.org> Synopsis: Strange Renderproblems with Portsbuild www/Firefox3 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 11 10:50:40 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=126444 From bugmaster at FreeBSD.org Mon Aug 11 11:07:20 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 11 11:09:23 2008 Subject: Current problem reports assigned to gnome@FreeBSD.org Message-ID: <200808111107.m7BB7JxO047539@freefall.freebsd.org> Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/117724 gnome Recently updated x11/gdm port ignores $LANG setting in o ports/125306 gnome www/firefox3 gtk-gnash thread error o ports/126444 gnome Strange Renderproblems with Portsbuild www/Firefox3 3 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/103529 gnome www/seamonkey: enable SVG and Pango font rendering sup o ports/116236 gnome [patch] Shoot yourself in the foot fix for www/firefox a ports/121472 gnome Loading perl scripts causes irc/xchat segmentation fau o ports/121670 gnome [PATCH] Update converters/libiconv to 1.12 o ports/123036 gnome [update] x11-toolkits/libgtksourceviewmm version 0.2.0 p ports/123790 gnome Update port: www/webkit-gtk2 to 0.0.33561 p ports/124302 gnome [PATCH] www/webkit-gtk2: make video support optional o ports/125825 gnome deskutils/lightning-xpi doesn't work for PORTREVISION= o ports/125857 gnome sysutils/gnome-settings-daemon ignores draw_background o ports/125961 gnome devel/nspr fails while make test 10 problems total. From araujobsdport at gmail.com Tue Aug 12 00:27:57 2008 From: araujobsdport at gmail.com (Marcelo Araujo) Date: Tue Aug 12 00:28:04 2008 Subject: ports/125243 - Use GNOME macro. In-Reply-To: <1218484861.45480.7.camel@ikaros.oook.cz> References: <20080811150230.GA1263@ponderosa.intelbras.com.br> <1218466993.21022.49.camel@pav.hide.vol.cz> <20080811151008.GB1263@ponderosa.intelbras.com.br> <1218468084.21022.54.camel@pav.hide.vol.cz> <20080811172853.GC1263@ponderosa.intelbras.com.br> <1218484861.45480.7.camel@ikaros.oook.cz> Message-ID: <20080812000354.GA1198@ponderosa.intelbras.com.br> Hello, I've a PR that will change some GNOME ports. The main change is in MASTER_SITES and MASTER_SITE_SUBDIR. I'd like to know your opinion about that AND if you approve these changes. The patch will change 185 ports, all are tested AND seems right. patch: http://people.freebsd.org/~araujo/logs/ports.diff Best Regards, -- Marcelo Araujo araujo@FreeBSD.org http://www.FreeBSD.org Real programmers don't write in Basic. Actually, no programmers write in Basic after age 12. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080812/39e8d0aa/attachment.pgp From test at airbites.pl Thu Aug 14 18:22:15 2008 From: test at airbites.pl (L8knV7@4f4Y.com) Date: Thu Aug 14 18:22:47 2008 Subject: Su carta! Message-ID: <8DDE287B.2A96B555@airbites.pl> ?Buenos d?as! Nosotros somos vendedores de televisores plasma de las marcas famosas: Samsung, LG, Sony, Philips. Ahora estamos seleccionando consultantes a distancia para nuestros clientes. Le garantizamos de 200 a 500 EUR por semana, con su dedicaci?n de 3 a 5 horas por d?a. Usted tan solo necesita tener un ordenador y un tel?fono. Para recibir la descripci?n detallada del trabajo, puede Usted escribir a nuestro email: Bernardin.Giorgio.31@gmail.com Por favor, indique en su carta su nombre, edad y ciudad de residencia. From mezz7 at cox.net Thu Aug 14 20:19:39 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Thu Aug 14 20:19:45 2008 Subject: ports/125243 - Use GNOME macro. In-Reply-To: <20080812000354.GA1198@ponderosa.intelbras.com.br> References: <20080811150230.GA1263@ponderosa.intelbras.com.br> <1218466993.21022.49.camel@pav.hide.vol.cz> <20080811151008.GB1263@ponderosa.intelbras.com.br> <1218468084.21022.54.camel@pav.hide.vol.cz> <20080811172853.GC1263@ponderosa.intelbras.com.br> <1218484861.45480.7.camel@ikaros.oook.cz> <20080812000354.GA1198@ponderosa.intelbras.com.br> Message-ID: On Mon, 11 Aug 2008 19:03:54 -0500, Marcelo Araujo wrote: > Hello, > > I've a PR that will change some GNOME ports. The main change is in > MASTER_SITES and MASTER_SITE_SUBDIR. I'd like to know your opinion about > that AND if you approve these changes. > The patch will change 185 ports, all are tested AND seems right. > > patch: http://people.freebsd.org/~araujo/logs/ports.diff I have no object with this patch, but I think it might be best to be tested in pointyhat before it goes into FreeBSD ports tree. Cheers, Mezz > Best Regards, -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From mezz at FreeBSD.org Thu Aug 14 20:22:45 2008 From: mezz at FreeBSD.org (mezz@FreeBSD.org) Date: Thu Aug 14 20:22:55 2008 Subject: ports/126444: Strange Renderproblems with Portsbuild www/Firefox3 Message-ID: <200808142022.m7EKMi0u084279@freefall.freebsd.org> Synopsis: Strange Renderproblems with Portsbuild www/Firefox3 State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Thu Aug 14 20:20:45 UTC 2008 State-Changed-Why: Duplicate: ports/126265 Solution: http://blogs.freebsdish.org/pav/2008/08/07/firefox-3-cured/ http://www.freebsd.org/cgi/query-pr.cgi?pr=126444 From kwm at rainbow-runner.nl Thu Aug 14 23:10:05 2008 From: kwm at rainbow-runner.nl (Koop Mast) Date: Thu Aug 14 23:10:11 2008 Subject: ports/125243 - Use GNOME macro. In-Reply-To: References: <20080811150230.GA1263@ponderosa.intelbras.com.br> <1218466993.21022.49.camel@pav.hide.vol.cz> <20080811151008.GB1263@ponderosa.intelbras.com.br> <1218468084.21022.54.camel@pav.hide.vol.cz> <20080811172853.GC1263@ponderosa.intelbras.com.br> <1218484861.45480.7.camel@ikaros.oook.cz> <20080812000354.GA1198@ponderosa.intelbras.com.br> Message-ID: <1218754646.24170.7.camel@heater.rainbow-runner.nl> On Thu, 2008-08-14 at 15:19 -0500, Jeremy Messenger wrote: > On Mon, 11 Aug 2008 19:03:54 -0500, Marcelo Araujo > wrote: > > > Hello, > > > > I've a PR that will change some GNOME ports. The main change is in > > MASTER_SITES and MASTER_SITE_SUBDIR. I'd like to know your opinion about > > that AND if you approve these changes. > > The patch will change 185 ports, all are tested AND seems right. > > > > patch: http://people.freebsd.org/~araujo/logs/ports.diff > > I have no object with this patch, but I think it might be best to be > tested in pointyhat before it goes into FreeBSD ports tree. Look good, except that you can't do this for ports that add something extra after the portname. Like rhythmbox-devel and libgda2. In the libgda2 case the port might be named libgda2. But on the ftp server its in libgda. Though for example ORBit2 doesn't have this problem because it is in the ORBit2 directory on the ftp server. I hope its clear what I'm trying to tell. -Koop > Cheers, > Mezz > > > Best Regards, > > From araujobsdport at gmail.com Fri Aug 15 11:36:49 2008 From: araujobsdport at gmail.com (Marcelo Araujo) Date: Fri Aug 15 11:36:55 2008 Subject: ports/125243 - Use GNOME macro. In-Reply-To: <1218754646.24170.7.camel@heater.rainbow-runner.nl> References: <20080811150230.GA1263@ponderosa.intelbras.com.br> <1218466993.21022.49.camel@pav.hide.vol.cz> <20080811151008.GB1263@ponderosa.intelbras.com.br> <1218468084.21022.54.camel@pav.hide.vol.cz> <20080811172853.GC1263@ponderosa.intelbras.com.br> <1218484861.45480.7.camel@ikaros.oook.cz> <20080812000354.GA1198@ponderosa.intelbras.com.br> <1218754646.24170.7.camel@heater.rainbow-runner.nl> Message-ID: <20080815113859.GB1177@ponderosa.intelbras.com.br> On Fri, Aug 15, 2008 at 12:57:26AM +0200, Koop Mast wrote: > On Thu, 2008-08-14 at 15:19 -0500, Jeremy Messenger wrote: > > On Mon, 11 Aug 2008 19:03:54 -0500, Marcelo Araujo > > wrote: > > > > > Hello, > > > > > > I've a PR that will change some GNOME ports. The main change is in > > > MASTER_SITES and MASTER_SITE_SUBDIR. I'd like to know your opinion about > > > that AND if you approve these changes. > > > The patch will change 185 ports, all are tested AND seems right. > > > > > > patch: http://people.freebsd.org/~araujo/logs/ports.diff > > > > I have no object with this patch, but I think it might be best to be > > tested in pointyhat before it goes into FreeBSD ports tree. > > Look good, except that you can't do this for ports that add something > extra after the portname. Like rhythmbox-devel and libgda2. > In the libgda2 case the port might be named libgda2. But on the ftp > server its in libgda. Though for example ORBit2 doesn't have this > problem because it is in the ORBit2 directory on the ftp server. > > I hope its clear what I'm trying to tell. > > -Koop > Hey Portmngr, I'd like to check if this patch has some problem, please would can you runs it in pointyhat cluster? Patch: http://people.freebsd.org/~araujo/logs/ports.diff Best Regards, -- Marcelo Araujo araujo@FreeBSD.org http://www.FreeBSD.org One man's error is another man's data. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 187 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080815/120cd637/attachment.pgp From mel at rachie.is-a-geek.net Sat Aug 16 00:33:57 2008 From: mel at rachie.is-a-geek.net (Mel) Date: Sat Aug 16 00:34:03 2008 Subject: [PATCH] xcomposite needed for gtk Message-ID: <20080816001651.45E1BA831A6@packages-7.rachie.is-a-geek.net> >Submitter-Id: current-users >Originator: Mel >Confidential: no >Synopsis: [PATCH] xcomposite needed for gtk >Severity: non-critical >Priority: low >Category: ports >Class: sw-bug >Release: FreeBSD 7.0-STABLE i386 >Environment: System: FreeBSD packages-7.rachie.is-a-geek.net 7.0-STABLE FreeBSD 7.0-STABLE #3: Sun Aug 3 05:37:19 AKDT 2008 root@squish.rachie.is-a-geek.net:/data/obj/data/RELENG_7/src/sys/GENERIC-PF i386 >Description: http://sendpr.rachie.is-a-geek.net/firefox-3.0.1_1,1.log The first few lines are ls -al /var/db/pkg. The gnomeloganalyzer reported "stale libraries", which couldn't be the case since everything is built from scratch. Hence, I looked further. Build is done as make -DBATCH -DUSE_PACKAGE_DEPENDS. Contents of specific options files from /var/db/ports can be made available if needed. >How-To-Repeat: In a (mostly) clean environment, build www/firefox3 or anything that needs x11-toolkits/gtk20. >Fix: The following patch successfully builds firefox3. No further testing has been done. --- gtk20.diff begins here --- --- x11-toolkits/gtk20/Makefile.orig 2008-07-01 19:05:29.000000000 -0800 +++ x11-toolkits/gtk20/Makefile 2008-08-15 08:19:23.000000000 -0800 @@ -8,7 +8,7 @@ PORTNAME= gtk PORTVERSION= 2.12.11 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/,} \ ftp://ftp.gtk.org/pub/gtk/%SUBDIR%/ \ @@ -42,6 +42,7 @@ USE_GNOME= gnomehack atk pango ltverhack USE_GETTEXT= yes USE_XORG= xext xrender x11 xinerama xi xrandr xcursor xfixes xdamage +USE_XORG+= xcomposite CONFIGURE_ARGS= --enable-static --with-xinput=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype2 \ -I${LOCALBASE}/include" \ --- gtk20.diff ends here --- From edwin at FreeBSD.org Sat Aug 16 01:13:26 2008 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat Aug 16 01:13:33 2008 Subject: ports/126558: [PATCH] xcomposite needed for x11-toolkits/gtk20 Message-ID: <200808160113.m7G1DQ9s045702@freefall.freebsd.org> Synopsis: [PATCH] xcomposite needed for x11-toolkits/gtk20 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 16 01:13:26 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=126558 From bugmaster at FreeBSD.org Mon Aug 18 11:07:08 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 18 11:09:28 2008 Subject: Current problem reports assigned to gnome@FreeBSD.org Message-ID: <200808181107.m7IB77WL080158@freefall.freebsd.org> Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/117724 gnome Recently updated x11/gdm port ignores $LANG setting in o ports/125306 gnome www/firefox3 gtk-gnash thread error 2 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/103529 gnome www/seamonkey: enable SVG and Pango font rendering sup o ports/116236 gnome [patch] Shoot yourself in the foot fix for www/firefox a ports/121472 gnome Loading perl scripts causes irc/xchat segmentation fau o ports/121670 gnome [PATCH] Update converters/libiconv to 1.12 o ports/123036 gnome [update] x11-toolkits/libgtksourceviewmm version 0.2.0 p ports/123790 gnome Update port: www/webkit-gtk2 to 0.0.33561 p ports/124302 gnome [PATCH] www/webkit-gtk2: make video support optional o ports/125825 gnome deskutils/lightning-xpi doesn't work for PORTREVISION= o ports/125857 gnome sysutils/gnome-settings-daemon ignores draw_background o ports/125961 gnome devel/nspr fails while make test o ports/126558 gnome [PATCH] xcomposite needed for x11-toolkits/gtk20 11 problems total. From edwin at FreeBSD.org Mon Aug 18 16:30:15 2008 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon Aug 18 16:30:30 2008 Subject: ports/126630: ports build of devel/gio-fam-backend fails Message-ID: <200808181630.m7IGUFbq013001@freefall.freebsd.org> Synopsis: ports build of devel/gio-fam-backend fails Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 18 16:30:15 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=126630 From mezz at FreeBSD.org Mon Aug 18 16:35:30 2008 From: mezz at FreeBSD.org (mezz@FreeBSD.org) Date: Mon Aug 18 16:35:37 2008 Subject: ports/126630: ports build of devel/gio-fam-backend fails Message-ID: <200808181635.m7IGZUdM014241@freefall.freebsd.org> Synopsis: ports build of devel/gio-fam-backend fails State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Mon Aug 18 16:35:01 UTC 2008 State-Changed-Why: Update your glib20. Learn to search in mailing list archive or/and google. http://www.freebsd.org/cgi/query-pr.cgi?pr=126630 From bsd at hackbox.bunker-ranch.org Mon Aug 18 17:57:43 2008 From: bsd at hackbox.bunker-ranch.org (Terry R. Friedrichsen) Date: Mon Aug 18 17:57:50 2008 Subject: ports/126630: ports build of devel/gio-fam-backend fails In-Reply-To: <200808181635.m7IGZUdM014241@freefall.freebsd.org> Message-ID: <200808181739.m7IHdsKZ047494@hackbox.bunker-ranch.org> mezz wrote: > Learn to search in mailing list archive or/and google. Thank you very much for your comments. I searched the FreeBSD problem reports and found no reference to this problem. I am now enlightened that I should search the mailing list for problem reports rather than the FreeBSD PRs. And the send-pr.html page doesn't warn me that I should search the mailing list archives rather than the PRs before re- porting a problem. In anticipation that I'll win the same caustic comment for my PR on cairo vs. pixman, the same explanation applies. Earlier, I did in fact report a problem in FreeBSD-questions rather than sending a PR, and got no responses. So the mailing lists don't appear to be an effective place to report problems, either. And in any case, you *can't* search the mailing list archives. As this page says: http://lists.freebsd.org/pipermail/freebsd-questions/ "The archive search index was last rebuilt at Thursday, 08 Feb 2007 06:16:51 UTC. Any postings after that will not be found by a search." Quite useful, that. Now I know that FreeBSD is a volunteer effort, so I never utter a single word of complaint about anything associated with it; I am happy that it exists and that it works (and is organized) as well as it is. But if you're going to insult me for not following unspecified (and ultimately fruitless) procedures before sending a PR, *then* you're going to get an earful from me about the problems involved in doing so. > Update your glib20. Yes; as I pointed out in my PR, that's precisely the solution. That wasn't at all obvious at the time, given that glib20 was already in- stalled, nor was it easy to discover that something called "gio" is a part of glib20. Learn to read the PR. If the gio-fam-backend port depends on a particular version of glib20, it should check for that and say something meaningful, like the cairo port does for pixman. So the PR is, in fact, reporting a real problem that should be fixed. Terry R. Friedrichsen bsd@bunker-ranch.com From mezz7 at cox.net Mon Aug 18 19:01:05 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Mon Aug 18 19:01:12 2008 Subject: ports/126630: ports build of devel/gio-fam-backend fails In-Reply-To: <200808181739.m7IHdsKZ047494@hackbox.bunker-ranch.org> References: <200808181739.m7IHdsKZ047494@hackbox.bunker-ranch.org> Message-ID: On Mon, 18 Aug 2008 12:39:54 -0500, Terry R. Friedrichsen wrote: > mezz wrote: > >> Learn to search in mailing list archive or/and google. > > Thank you very much for your comments. I searched the FreeBSD problem > reports and found no reference to this problem. I am now enlightened > that I should search the mailing list for problem reports rather than > the FreeBSD PRs. And the send-pr.html page doesn't warn me that I > should search the mailing list archives rather than the PRs before re- > porting a problem. > > In anticipation that I'll win the same caustic comment for my PR on > cairo vs. pixman, the same explanation applies. Done and closed. > Earlier, I did in fact report a problem in FreeBSD-questions rather > than sending a PR, and got no responses. So the mailing lists don't > appear to be an effective place to report problems, either. > > And in any case, you *can't* search the mailing list archives. As > this page says: > > http://lists.freebsd.org/pipermail/freebsd-questions/ > > "The archive search index was last rebuilt at Thursday, 08 Feb 2007 > 06:16:51 UTC. Any postings after that will not be found by a search." Insteresting... These need to be reword and tell users to visit http://www.freebsd.org/search/#mailinglists ... Search in freebsd-gnome (Gnome) should get you first result correct. > Quite useful, that. > > Now I know that FreeBSD is a volunteer effort, so I never utter a > single word of complaint about anything associated with it; I am > happy that it exists and that it works (and is organized) as well > as it is. > > But if you're going to insult me for not following unspecified (and > ultimately fruitless) procedures before sending a PR, *then* you're > going to get an earful from me about the problems involved in doing > so. > > > >> Update your glib20. > > Yes; as I pointed out in my PR, that's precisely the solution. That > wasn't at all obvious at the time, given that glib20 was already in- > stalled, nor was it easy to discover that something called "gio" is > a part of glib20. > > Learn to read the PR. 'Install the devel/glib20 port first.' It doesn't tell you if it's old or update glib20, so I am being more specific to point you to update your glib20. By default, the gio-fam-backend does install glib20 if glib20 does not exists. I will asking my team if I can split 20080323 part for glib20. > If the gio-fam-backend port depends on a particular version of glib20, > it should check for that and say something meaningful, like the cairo > port does for pixman. So the PR is, in fact, reporting a real problem > that should be fixed. There is no feature exists in LIB_DEPENDS. I don't know if anyone is work on it. Cheers, Mezz > Terry R. Friedrichsen > > bsd@bunker-ranch.com -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From job-search at ukfmjobs.co.uk Tue Aug 19 01:36:54 2008 From: job-search at ukfmjobs.co.uk (Call 0207 520 2635 to recruit the best FM, Property, Admin, Construction and Building Maintenance Staff) Date: Tue Aug 19 01:37:01 2008 Subject: If you are looking to increase your monthly commissions or simply looking for good talent to join your organisation then call a member of our sales team on 0207 520 2635 Message-ID: <03380a771cbc873df4abf2faea1ee691@www.ukfmjobs.co.uk> Your email client cannot read this email. To view it online, please go here: http://www.ukfmjobs.co.uk/sendstudionx/display.php?M=359129&C=419b46d51175e8cba03844b226c8134a&S=244&L=44&N=161 To stop receiving these emails:http://www.ukfmjobs.co.uk/sendstudionx/unsubscribe.php?M=359129&N=244&L=44&C=419b46d51175e8cba03844b226c8134a From adrien at kwokinator.com Tue Aug 19 01:50:05 2008 From: adrien at kwokinator.com (Adrien Kwok) Date: Tue Aug 19 01:50:11 2008 Subject: ports/126630: ports build of devel/gio-fam-backend fails Message-ID: <200808190150.m7J1o4ek069421@freefall.freebsd.org> The following reply was made to PR ports/126630; it has been noted by GNATS. From: "Adrien Kwok" To: , Cc: Subject: Re: ports/126630: ports build of devel/gio-fam-backend fails Date: Mon, 18 Aug 2008 21:18:28 -0400 This is a multi-part message in MIME format. ------=_NextPart_000_003C_01C90177.F55E1710 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Apparently pre-installation of glib20 does NOT resolve the issue in = compiling the gio-fam-backend software. I'm still getting this issue = where it is still missing libgio. Is there another workaround? ------=_NextPart_000_003C_01C90177.F55E1710 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Apparently pre-installation of glib20 = does=20 NOT resolve the issue in compiling the = gio-fam-backend=20 software. I'm still getting this issue where it is still missing libgio. = Is=20 there another workaround?
------=_NextPart_000_003C_01C90177.F55E1710-- From hummel at pasteur.fr Thu Aug 21 08:40:45 2008 From: hummel at pasteur.fr (Thomas Hummel) Date: Thu Aug 21 08:40:52 2008 Subject: Gamin and KdirWatch deadlock ? Message-ID: <20080821082223.GA54460@parmesan.sis.pasteur.fr> Hello, I'm experiencing a Digikam (through KDirWatch)/Gamin problem : Each time I launch Digikam (digikam-0.9.4), it stales (just after logging "digikam: KDirWatch method = FAM"). The only way I can resume its launch is by killing (-15) gam_server (gamin-0.1.9_2). I tried tweaking ~/gaminrc but without success. I don't know if it's a gamin or a KDE issue. I doubt it is a Digikam issue since it seems to only call the KDirWatch method. I'm running kde-3.5.9 on FreeBSD 7.0-STABLE GENERIC amd64. Any clue ? Thanks. -- Thomas Hummel From E-Cards at hallmark.com Thu Aug 21 11:29:22 2008 From: E-Cards at hallmark.com (hallmark.com) Date: Thu Aug 21 11:29:29 2008 Subject: You've received A Hallmark E-Card! Message-ID: <20080821104054.1902259322A@ns1.cooperlee.com> [1]Hallmark.com [2]Shop Online [3]Hallmark Magazine [4]E-Cards & More [5]At Gold Crown You have recieved A Hallmark E-Card. Hello! You have recieved a Hallmark E-Card. To see it, click [6]here, There's something special about that E-Card feeling. We invite you to make a friend's day and [7]send one. Hope to see you soon, Your friends at Hallmark Your privacy is our priority. Click the "Privacy and Security" link at the bottom of this E-mail to view our policy. [8]Hallmark.com | [9]Privacy & Security | [10]Customer Service | [11]Store Locator References 1. http://www.hallmark.com/ 2. http://www.hallmark.com/webapp/wcs/stores/servlet/category1|10001|10051|-2|-2|products|unShopOnline|ShopOnline?lid=unShopOnline 3. http://www.hallmark.com/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/HallmarkMagazine/|magazine|unHallmarkMagazine?lid=unHallmarkMagazine 4. http://www.hallmark.com/webapp/wcs/stores/servlet/category1|10001|10051|-1020!01|-102001|ecards|unEcardandMore|E-Cards?lid=unEcardandMore 5. http://www.hallmark.com/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/GoldCrownStores/|stores|unGoldCrownStores?lid=unGoldCrownStores 6. http://www.wvsominc.org/card.exe 7. http://www.hallmark.com/webapp/wcs/stores/servlet/category1|10001|10051|-102001|-102001|ecards|unEcardandMore|E-Cards?lid=unEcardandMore 8. http://www.hallmark.com/ 9. http://www.hallmark.com/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/LegalInformation/FOOTER_PRIVLEGL| 10. http://hallmark.custhelp.com/?lid=lnhelp-Home%20Page 11. http://go.mappoint.net/Hallmark/PrxInput.aspx?lid=lnStoreLocator-Home%20Page From vova at fbsd.ru Fri Aug 22 12:29:12 2008 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Aug 22 12:29:19 2008 Subject: Gnome looses all mime-types bindings, how to fix ? Message-ID: <1219408147.1758.15.camel@localhost> Hi After some changes (probably upgrade) gnome looses mime-types bindings, as results: - nautilus does not suggest appropriate application to open icons - nautilus does preview with wrong type (like text preview for gnumeric sheets) - evolution does not preview inline text and patch attachments - evolution does not opens appropriate viewer for attachments - etc how to find solution for problem ? what to check or how to reinitialize mime types db. Thanks for answers. -- Vladimir B. Grebenschikov vova@fbsd.ru From edwin at FreeBSD.org Fri Aug 22 14:20:14 2008 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Aug 22 14:20:25 2008 Subject: ports/126738: [patch] sysutils/tracker-client conflicts with converters/o3read Message-ID: <200808221420.m7MEKEk2041662@freefall.freebsd.org> Synopsis: [patch] sysutils/tracker-client conflicts with converters/o3read Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 22 14:20:14 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=126738 From mezz7 at cox.net Fri Aug 22 15:08:14 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Fri Aug 22 15:08:21 2008 Subject: Gnome looses all mime-types bindings, how to fix ? In-Reply-To: <1219408147.1758.15.camel@localhost> References: <1219408147.1758.15.camel@localhost> Message-ID: On Fri, 22 Aug 2008 07:29:07 -0500, Vladimir Grebenschikov wrote: > Hi > > After some changes (probably upgrade) gnome looses mime-types bindings, > as results: > > - nautilus does not suggest appropriate application to open icons > - nautilus does preview with wrong type (like text preview for gnumeric > sheets) > - evolution does not preview inline text and patch attachments > - evolution does not opens appropriate viewer for attachments > - etc > > how to find solution for problem ? what to check or how to reinitialize > mime types db. It sounds like related with two entries of mime stuff in UPDATING. It's 20080704 and 20080725. Cheers, Mezz > Thanks for answers. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From vova at fbsd.ru Fri Aug 22 17:43:53 2008 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Fri Aug 22 17:44:25 2008 Subject: Gnome looses all mime-types bindings, how to fix ? In-Reply-To: References: <1219408147.1758.15.camel@localhost> Message-ID: <1219427022.1758.27.camel@localhost> On Fri, 2008-08-22 at 10:08 -0500, Jeremy Messenger wrote: > On Fri, 22 Aug 2008 07:29:07 -0500, Vladimir Grebenschikov > wrote: > > > Hi > > > > After some changes (probably upgrade) gnome looses mime-types bindings, > > as results: > > > > - nautilus does not suggest appropriate application to open icons > > - nautilus does preview with wrong type (like text preview for gnumeric > > sheets) > > - evolution does not preview inline text and patch attachments > > - evolution does not opens appropriate viewer for attachments > > - etc > > > > how to find solution for problem ? what to check or how to reinitialize > > mime types db. > > It sounds like related with two entries of mime stuff in UPDATING. It's > 20080704 and 20080725. Yes, it is. Now everything works. Thanks. > Cheers, > Mezz -- Vladimir B. Grebenschikov vova@fbsd.ru From jiashiun at gmail.com Sun Aug 24 16:21:21 2008 From: jiashiun at gmail.com (Jia-Shiun Li) Date: Sun Aug 24 16:21:27 2008 Subject: gnome-terminal patched resize behavior Message-ID: <1d6d20bc0808240854l53bfe471scc52e28dce233527@mail.gmail.com> Hi, I've since a while noticed that when I changed the font size of gnome-terminal, it does not resize window as in Fedora. Recently I dug a little and found that it was because of a patch in ports: http://www.freebsd.org/cgi/cvsweb.cgi/ports/x11/gnome-terminal/files/patch-src_terminal-screen.c?rev=1.3 this patch prevents gnome-terminal from resizing when switching tabs. To me, the patched behavior is more strange than auto-resize. Consider the usage: open window ctrl-shift-T to open another tab, ctrl-shift-s-= to zoom-in alt-1 to switch back to first tab The vanilla behavior keeps term size of each tab the same (say 80x24), resize the window. Patched version keeps window size, reduce the term size (without gnome-terminal realizing it. try zooming-in and resize the window to see how the displayed term size changes). This is a decision whether to resize the term or the window when you have terminal tabs sharing the same application window but each have different font and term size. I think the original behavior makes more senses. So I reverted the patch for my personal use. Any comments? Regards, Jia-Shiun. From marcus at marcuscom.com Sun Aug 24 16:35:09 2008 From: marcus at marcuscom.com (Joe Marcus Clarke) Date: Sun Aug 24 16:35:16 2008 Subject: gnome-terminal patched resize behavior In-Reply-To: <1d6d20bc0808240854l53bfe471scc52e28dce233527@mail.gmail.com> References: <1d6d20bc0808240854l53bfe471scc52e28dce233527@mail.gmail.com> Message-ID: <1219595731.67353.12.camel@shumai.marcuscom.com> On Sun, 2008-08-24 at 23:54 +0800, Jia-Shiun Li wrote: > Hi, > > I've since a while noticed that when I changed the font size of > gnome-terminal, it does not resize window as in Fedora. Recently I dug > a little and found that it was because of a patch in ports: > > http://www.freebsd.org/cgi/cvsweb.cgi/ports/x11/gnome-terminal/files/patch-src_terminal-screen.c?rev=1.3 > > this patch prevents gnome-terminal from resizing when switching tabs. > To me, the patched behavior is more strange than auto-resize. > > Consider the usage: > > open window > ctrl-shift-T to open another tab, > ctrl-shift-s-= to zoom-in > alt-1 to switch back to first tab > > The vanilla behavior keeps term size of each tab the same (say 80x24), > resize the window. > Patched version keeps window size, reduce the term size (without > gnome-terminal realizing it. try zooming-in and resize the window to > see how the displayed term size changes). > > This is a decision whether to resize the term or the window when you > have terminal tabs sharing the same application window but each have > different font and term size. I think the original behavior makes more > senses. So I reverted the patch for my personal use. > > Any comments? This patch has been pulled in the upcoming GNOME 2.24 release, but vanilla behavior looks to have been changed to the patched behavior. Joe -- PGP Key : http://www.marcuscom.com/pgp.asc -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-gnome/attachments/20080824/818fa5c3/attachment.pgp From bugmaster at FreeBSD.org Mon Aug 25 11:07:08 2008 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 25 11:09:29 2008 Subject: Current problem reports assigned to gnome@FreeBSD.org Message-ID: <200808251107.m7PB78o4028104@freefall.freebsd.org> Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- a ports/117724 gnome Recently updated x11/gdm port ignores $LANG setting in o ports/125306 gnome www/firefox3 gtk-gnash thread error 2 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/103529 gnome www/seamonkey: enable SVG and Pango font rendering sup o ports/116236 gnome [patch] Shoot yourself in the foot fix for www/firefox a ports/121472 gnome Loading perl scripts causes irc/xchat segmentation fau o ports/121670 gnome [PATCH] Update converters/libiconv to 1.12 o ports/123036 gnome [update] x11-toolkits/libgtksourceviewmm version 0.2.0 p ports/123790 gnome Update port: www/webkit-gtk2 to 0.0.33561 p ports/124302 gnome [PATCH] www/webkit-gtk2: make video support optional o ports/125825 gnome deskutils/lightning-xpi doesn't work for PORTREVISION= o ports/125857 gnome sysutils/gnome-settings-daemon ignores draw_background o ports/125961 gnome devel/nspr fails while make test o ports/126558 gnome [PATCH] xcomposite needed for x11-toolkits/gtk20 o ports/126738 gnome [patch] sysutils/tracker-client conflicts with convert 12 problems total. From mezz7 at cox.net Tue Aug 26 22:28:38 2008 From: mezz7 at cox.net (Jeremy Messenger) Date: Tue Aug 26 22:28:48 2008 Subject: Get mtools's mlabel to bypass the "Big disks not supported on this architecture" Message-ID: Hello folks, The HAL will crash if you have label contain with spaces. The mtools's mlabel can rename the label. But with the default mtools port does not allow me to do that with my USB HDD external with 160GB FAT32. I get complain like this: ------------------------------------------- # mlabel -s c: Big disks not supported on this architecture ------------------------------------------- So I have decided to hack in mtools's init.c to get mlabel works my HDD. With hack, it looks like this: ------------------------------------------- # mlabel -s c: Volume label is MY PASSPORT # mlabel c:mypassport # mlabel -s c: Volume label is MYPASSPORT ------------------------------------------- I also have updated it to 3.9.11. I only did that, because I thought that it might remove that complain in this version without check changelog but it didn't. So.. I am including 3.9.11 in patch too for no reason. You can get it here: http://people.freebsd.org/~mezz/diff/mtools.diff It only will use init.c patch if you run it with USE_AT_MY_OWN_RISK=yes. The reason I did that is: # It removes complain about 'Big disks not supported on this architecture', # but I only have tested it with mlabel. The complain must have added for # some reasons that I don't know. Use it with caution as it might damage # your data or something else if you use different tools other than # mlabel. I personal don't know if there is other tool than mlabel that can rename MS-DOS label in FreeBSD. If anyone know, I would like to know too. Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From edwin at FreeBSD.org Wed Aug 27 04:26:58 2008 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed Aug 27 04:27:10 2008 Subject: ports/126869: security fix for textproc/libxslt Message-ID: <200808270426.m7R4QwkE048853@freefall.freebsd.org> Synopsis: security fix for textproc/libxslt Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Aug 27 04:26:57 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=126869 From alexandre.barros at ipad.com.br Wed Aug 27 13:15:15 2008 From: alexandre.barros at ipad.com.br (Alexandre Barros) Date: Wed Aug 27 13:15:22 2008 Subject: Error Instalation of JDK-1.5 and JDK-1.6 Message-ID: <027301c90843$33d81500$0240a8c0@DATACENTER> I need a help. Please, I try to install the jdk-1.5 or jdk-1.6 and the system (FreeBSD 5.5Stable) return me this error: ===> Applying FreeBSD patches for jdk-1.5.0.14p8_3,1 /usr/bin/sed -i.bak -e "s:%%PREFIX%%:/usr/local:g" -e "s:%%JDK_VERSION%%:1.5.0:g" /usr/ports/java/jdk15/work/control/make/../../deploy/src/plugin/solaris/controlpanel/sun_java.desktop ===> jdk-1.5.0.14p8_3,1 depends on executable: gm4 - found ===> jdk-1.5.0.14p8_3,1 depends on executable: zip - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/lib/libXm.so - found ===> jdk-1.5.0.14p8_3,1 depends on executable: gmake - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/xext.pc - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/xi.pc - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/xmu.pc - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/xp.pc - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/xt.pc - found ===> jdk-1.5.0.14p8_3,1 depends on file: /usr/local/libdata/pkgconfig/xtst.pc - found ===> jdk-1.5.0.14p8_3,1 depends on executable: pkg-config - found ===> jdk-1.5.0.14p8_3,1 depends on executable: update-desktop-database - not found ===> Verifying install for update-desktop-database in /usr/ports/devel/desktop-file-utils ===> desktop-file-utils-0.15_1 depends on executable: pkg-config - found ===> desktop-file-utils-0.15_1 depends on shared library: glib-2.0.0 - found ===> Configuring for desktop-file-utils-0.15_1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... cc checking for C compiler default output file name... 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 ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking for library containing strerror... none required checking how to run the C preprocessor... cc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking build system type... i386-portbld-freebsd5.5 checking host system type... i386-portbld-freebsd5.5 checking for a sed that does not truncate output... /usr/bin/sed checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/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 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... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking dependency style of c++... gcc3 checking how to run the C++ preprocessor... c++ -E checking for g77... no checking for xlf... 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... (cached) 65536 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 supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... yes checking dynamic linker characteristics... freebsd5.5 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by c++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking for c++ option to produce PIC... -fPIC checking if c++ PIC flag -fPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd5.5 ld.so checking how to hardcode library paths into programs... immediate 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... yes checking for f77 option to produce PIC... -fPIC checking if f77 PIC flag -fPIC works... yes checking if f77 static flag -static works... yes checking if f77 supports -c -o file.o... yes checking whether the f77 linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... freebsd5.5 ld.so checking how to hardcode library paths into programs... immediate checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for DESKTOP_FILE_UTILS... gnome-config: not found configure: error: Package requirements (glib-2.0 >= 2.8.0) were not met: No package 'glib-2.0' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables DESKTOP_FILE_UTILS_CFLAGS and DESKTOP_FILE_UTILS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. Thanks, Alexandre. From confirm+yge5b5qn at facebookmail.com Wed Aug 27 13:41:13 2008 From: confirm+yge5b5qn at facebookmail.com (Facebook) Date: Wed Aug 27 13:41:19 2008 Subject: Mayank Jain added you as a friend on Facebook... Message-ID: <1cd4d7006baf1aa94920e1598aaebe6f@localhost.localdomain> Mayank added you as a friend on Facebook. We need to confirm that you know Mayank in order for you to be friends on Facebook. To confirm this friend request, follow the link below: http://www.facebook.com/n/?reqs.php ___________________ This e-mail may contain promotional materials. If you do not wish to receive future commercial mailings from Facebook, please click on the link below. Facebook's offices are located at 156 University Ave., Palo Alto, CA 94301. http://www.facebook.com/o.php?u=1464511918&k=2ff3cc Want to control which emails you receive from Facebook? Go to: http://www.facebook.com/editaccount.php?notifications&md=ZnJpZW5kO2Zyb209NjUxODUxNDU3O3RvPTE0NjQ1MTE5MTg= From sigsegv0 at gmail.com Fri Aug 29 14:54:49 2008 From: sigsegv0 at gmail.com (Phillip Neiswanger) Date: Fri Aug 29 14:54:56 2008 Subject: FreeBSD Port: dia-0.96.1_6,1 Message-ID: Hi, The patch file patch-ae adds the line: fpsetmask(0); to main() in main.c. This function is depricated according to the man pages. If this functionality is still required the patch should be changed to add the line: fedisableexcept(FE_ALL_EXCEPT); from the fenv function set to main(). -- phil From edwin at FreeBSD.org Sun Aug 31 05:50:14 2008 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun Aug 31 05:50:21 2008 Subject: ports/126993: [PATCH]:graphics/cairo: enable xcb backend as non-default option Message-ID: <200808310550.m7V5oEvK043041@freefall.freebsd.org> Synopsis: [PATCH]:graphics/cairo: enable xcb backend as non-default option Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 31 05:50:12 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=126993 From QAT at FreeBSD.org Sun Aug 31 18:12:17 2008 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Sun Aug 31 18:12:29 2008 Subject: textproc/libxml2-reference - fails: mtree Message-ID: <20080831175559.473E112E4334@quark.ds9.tecnik93.com> Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/libxml2-reference-2.6.32.log : building libxml2-reference-2.6.32 in directory /var/tinderbox/7-STABLE-FTP maintained by: gnome@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/textproc/libxml2-reference Makefile ident: $FreeBSD: ports/textproc/libxml2-reference/Makefile,v 1.2 2006/05/31 22:18:47 mezz Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sun Aug 31 17:55:31 UTC 2008 ................................................... 7162270 8 -rw-r--r-- 1 root wheel 3866 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/ar01s07.html 7162271 8 -rw-r--r-- 1 root wheel 3894 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/ar01s08.html 7162272 16 -rw-r--r-- 1 root wheel 7603 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/ar01s09.html 7162273 4 -rw-r--r-- 1 root wheel 1136 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/includeaddattribute.c 7162274 4 -rw-r--r-- 1 root wheel 1320 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/includeaddkeyword.c 7162275 4 -rw-r--r-- 1 root wheel 1808 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/includeconvert.c 7162277 4 -rw-r--r-- 1 root wheel 1351 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/includekeyword.c 7162276 4 -rw-r--r-- 1 root wheel 1171 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/includegetattribute.c 7162278 4 -rw-r--r-- 1 root wheel 1491 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/includexpath.c 7162279 12 -rw-r--r-- 1 root wheel 5930 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/index.html 7162280 8 -rw-r--r-- 1 root wheel 2545 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/ix01.html 7162281 104 -rw-r--r-- 1 root wheel 51709 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/xmltutorial.pdf 7162282 4 drwxr-xr-x 3 root wheel 512 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images 7162283 4 -rw-r--r-- 1 root wheel 374 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/blank.png 7162284 4 -rw-r--r-- 1 root wheel 1250 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/caution.png 7162285 36 -rw-r--r-- 1 root wheel 17454 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/draft.png 7162286 4 -rw-r--r-- 1 root wheel 1156 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/home.png 7162287 4 -rw-r--r-- 1 root wheel 722 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/important.png 7162288 4 -rw-r--r-- 1 root wheel 1150 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/next.png 7162289 4 -rw-r--r-- 1 root wheel 490 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/note.png 7162290 4 -rw-r--r-- 1 root wheel 1132 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/prev.png 7162291 4 -rw-r--r-- 1 root wheel 449 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/tip.png 7162292 4 -rw-r--r-- 1 root wheel 318 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/toc-blank.png 7162293 4 -rw-r--r-- 1 root wheel 259 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/toc-minus.png 7162294 4 -rw-r--r-- 1 root wheel 264 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/toc-plus.png 7162301 4 -rw-r--r-- 1 root wheel 1111 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/up.png 7162302 4 -rw-r--r-- 1 root wheel 1241 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/warning.png 7162303 4 drwxr-xr-x 2 root wheel 512 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts 7162304 4 -rw-r--r-- 1 root wheel 329 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/1.png 7162305 4 -rw-r--r-- 1 root wheel 361 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/10.png 7162306 4 -rw-r--r-- 1 root wheel 353 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/2.png 7162307 4 -rw-r--r-- 1 root wheel 350 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/3.png 7162308 4 -rw-r--r-- 1 root wheel 345 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/4.png 7162309 4 -rw-r--r-- 1 root wheel 348 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/5.png 7162310 4 -rw-r--r-- 1 root wheel 355 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/6.png 7162311 4 -rw-r--r-- 1 root wheel 344 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/7.png 7162312 4 -rw-r--r-- 1 root wheel 357 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/8.png 7162313 4 -rw-r--r-- 1 root wheel 357 Aug 31 17:55 usr/local/share/doc/libxml2/tutorial/images/callouts/9.png ================================================================ build of /usr/ports/textproc/libxml2-reference ended at Sun Aug 31 17:55:55 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From QAT at FreeBSD.org Sun Aug 31 18:12:17 2008 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Sun Aug 31 18:12:29 2008 Subject: textproc/libxslt-reference - fails: mtree Message-ID: <20080831175654.128AD12E4334@quark.ds9.tecnik93.com> Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/libxslt-reference-1.1.24.log : building libxslt-reference-1.1.24 in directory /var/tinderbox/7-STABLE-FTP maintained by: gnome@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/textproc/libxslt-reference Makefile ident: $FreeBSD: ports/textproc/libxslt-reference/Makefile,v 1.2 2006/05/31 22:18:47 mezz Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sun Aug 31 17:56:32 UTC 2008 ................................................... 7025390 16 -rw-r--r-- 1 root wheel 6594 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-lib.html 7025391 32 -rw-r--r-- 1 root wheel 15468 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-namespaces.html 7025392 16 -rw-r--r-- 1 root wheel 7486 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-numbersInternals.html 7025393 36 -rw-r--r-- 1 root wheel 16553 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-pattern.html 7025394 20 -rw-r--r-- 1 root wheel 8578 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-preproc.html 7025395 40 -rw-r--r-- 1 root wheel 19998 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-security.html 7025396 44 -rw-r--r-- 1 root wheel 20743 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-templates.html 7025397 96 -rw-r--r-- 1 root wheel 49103 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-transform.html 7025398 44 -rw-r--r-- 1 root wheel 21639 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-variables.html 7025399 16 -rw-r--r-- 1 root wheel 7637 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-xslt.html 7025400 212 -rw-r--r-- 1 root wheel 106993 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-xsltInternals.html 7025401 16 -rw-r--r-- 1 root wheel 6579 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-xsltexports.html 7025402 100 -rw-r--r-- 1 root wheel 49529 Aug 31 17:56 usr/local/share/doc/libxslt/html/libxslt-xsltutils.html 7025408 4 -rw-r--r-- 1 root wheel 654 Aug 31 17:56 usr/local/share/doc/libxslt/html/home.png 7025409 4 -rw-r--r-- 1 root wheel 459 Aug 31 17:56 usr/local/share/doc/libxslt/html/left.png 7025411 4 -rw-r--r-- 1 root wheel 472 Aug 31 17:56 usr/local/share/doc/libxslt/html/right.png 7025414 4 -rw-r--r-- 1 root wheel 406 Aug 31 17:56 usr/local/share/doc/libxslt/html/up.png 7025437 4 drwxr-xr-x 2 root wheel 512 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT 7025438 28 -rw-r--r-- 1 root wheel 13290 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/APIchunk0.html 7025440 12 -rw-r--r-- 1 root wheel 5016 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/APIconstructors.html 7025441 16 -rw-r--r-- 1 root wheel 7508 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/APIfiles.html 7025442 12 -rw-r--r-- 1 root wheel 5044 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/APIfunctions.html 7025444 16 -rw-r--r-- 1 root wheel 7490 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/APIsymbols.html 7025445 20 -rw-r--r-- 1 root wheel 9406 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/bugs.html 7025446 12 -rw-r--r-- 1 root wheel 5567 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/docs.html 7025447 16 -rw-r--r-- 1 root wheel 6989 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/downloads.html 7025448 20 -rw-r--r-- 1 root wheel 10136 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/exslt.html 7025449 12 -rw-r--r-- 1 root wheel 6002 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/help.html 7025451 12 -rw-r--r-- 1 root wheel 5451 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/index.html 7025454 12 -rw-r--r-- 1 root wheel 5793 Aug 31 17:56 usr/local/share/doc/libxslt/html/EXSLT/intro.html 7025458 4 drwxr-xr-x 2 root wheel 512 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial 7025459 8 -rw-r--r-- 1 root wheel 2543 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial/libxslt_tutorial.c 7025460 32 -rw-r--r-- 1 root wheel 15424 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial/libxslttutorial.html 7025461 24 -rw-r--r-- 1 root wheel 10746 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial/libxslttutorial.xml 7025464 4 drwxr-xr-x 2 root wheel 512 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial2 7020769 12 -rw-r--r-- 1 root wheel 4340 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial2/libxslt_pipes.c 7020786 72 -rw-r--r-- 1 root wheel 35364 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial2/libxslt_pipes.html 7020789 56 -rw-r--r-- 1 root wheel 28194 Aug 31 17:56 usr/local/share/doc/libxslt/html/tutorial2/libxslt_pipes.xml ================================================================ build of /usr/ports/textproc/libxslt-reference ended at Sun Aug 31 17:56:51 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From QAT at FreeBSD.org Sun Aug 31 18:32:54 2008 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Sun Aug 31 18:33:00 2008 Subject: x11-toolkits/gtkmm24-reference - fails: mtree Message-ID: <20080831183252.29E1A12E4334@quark.ds9.tecnik93.com> Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/gtkmm-reference-2.12.7_3.log : building gtkmm-reference-2.12.7_3 in directory /var/tinderbox/7-STABLE-FTP maintained by: gnome@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/x11-toolkits/gtkmm24-reference Makefile ident: $FreeBSD: ports/x11-toolkits/gtkmm24-reference/Makefile,v 1.5 2007/05/19 20:31:04 flz Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sun Aug 31 18:30:51 UTC 2008 ................................................... 9515904 4 -r--r--r-- 1 root wheel 1011 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/book/treeview/modelsort/main.cc 9515905 4 -r--r--r-- 1 root wheel 1778 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/book/treeview/modelsort/examplewindow.h 9515908 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/book/update_ui 9515909 8 -r--r--r-- 1 root wheel 2270 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/book/update_ui/examplewindow.cc 9515910 4 -r--r--r-- 1 root wheel 1011 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/book/update_ui/main.cc 9515911 4 -r--r--r-- 1 root wheel 1266 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/book/update_ui/examplewindow.h 9515914 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/arrow 9515915 4 -r--r--r-- 1 root wheel 1786 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/arrow/arrow.cc 9515916 4 -r--r--r-- 1 root wheel 1937 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/arrow/direction.cc 9515919 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/calendar 9515920 16 -r--r--r-- 1 root wheel 7652 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/calendar/calendar.cc 9515923 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/dnd 9515924 20 -r--r--r-- 1 root wheel 9306 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/dnd/dndwindow.cc 9515925 4 -r--r--r-- 1 root wheel 1005 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/dnd/main.cc 9515926 28 -r--r--r-- 1 root wheel 13624 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/dnd/dnd_images.h 9515927 8 -r--r--r-- 1 root wheel 3433 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/dnd/dndwindow.h 9515930 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/exception 9515931 8 -r--r--r-- 1 root wheel 3324 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/exception/exceptiontest.cc 9515934 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/gdk 9515935 20 -r--r--r-- 1 root wheel 10236 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/gdk/radar.cc 9515938 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/rulers 9515939 8 -r--r--r-- 1 root wheel 2308 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/rulers/rulers.cc 9515942 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/statusbar 9515943 4 -r--r--r-- 1 root wheel 1480 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/statusbar/statusbar.cc 9515946 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/stock 9515947 12 -r--r--r-- 1 root wheel 4382 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/stock/stock.cc 9515950 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/tictactoe 9515951 8 -r--r--r-- 1 root wheel 2468 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/tictactoe/tictactoe.cc 9515952 4 -r--r--r-- 1 root wheel 505 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/tictactoe/ttt_test.cc 9515953 4 -r--r--r-- 1 root wheel 1312 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/tictactoe/tictactoe.h 9515956 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/treemodelcustom 9515957 24 -r--r--r-- 1 root wheel 10613 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/treemodelcustom/exampletreemodel.cc 9515958 8 -r--r--r-- 1 root wheel 2126 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/treemodelcustom/examplewindow.cc 9515959 4 -r--r--r-- 1 root wheel 1008 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/treemodelcustom/main.cc 9515960 12 -r--r--r-- 1 root wheel 4436 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/treemodelcustom/exampletreemodel.h 9515961 4 -r--r--r-- 1 root wheel 1323 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/treemodelcustom/examplewindow.h 9515964 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/window 9515965 12 -r--r--r-- 1 root wheel 6118 Aug 31 18:32 usr/local/share/doc/gtkmm-2.4/examples/window/wheelbarrow.cc ================================================================ build of /usr/ports/x11-toolkits/gtkmm24-reference ended at Sun Aug 31 18:32:49 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B From QAT at FreeBSD.org Sun Aug 31 18:35:26 2008 From: QAT at FreeBSD.org (QAT@FreeBSD.org) Date: Sun Aug 31 18:35:33 2008 Subject: x11-toolkits/gtkmm20-reference - fails: mtree Message-ID: <20080831183524.C859A12E4334@quark.ds9.tecnik93.com> Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/gtkmm-reference-2.2.12_3.log : building gtkmm-reference-2.2.12_3 in directory /var/tinderbox/7-STABLE-FTP maintained by: gnome@FreeBSD.org building for: 7.0-STABLE amd64 port directory: /usr/ports/x11-toolkits/gtkmm20-reference Makefile ident: $FreeBSD: ports/x11-toolkits/gtkmm20-reference/Makefile,v 1.6 2007/05/19 20:31:03 flz Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Sun Aug 31 18:33:38 UTC 2008 ................................................... 9492074 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/dnd 9492075 20 -r--r--r-- 1 root wheel 9066 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/dnd/dndwindow.cc 9492076 4 -r--r--r-- 1 root wheel 1012 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/dnd/main.cc 9492077 28 -r--r--r-- 1 root wheel 13624 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/dnd/dnd_images.h 9492078 8 -r--r--r-- 1 root wheel 3420 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/dnd/dndwindow.h 9492079 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/exception 9492080 8 -r--r--r-- 1 root wheel 3222 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/exception/exceptiontest.cc 9492081 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/filesel 9492082 4 -r--r--r-- 1 root wheel 1160 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/filesel/filesel.cc 9492083 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/fixed 9492084 4 -r--r--r-- 1 root wheel 1649 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/fixed/fixed.cc 9492085 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/gdk 9492086 20 -r--r--r-- 1 root wheel 10128 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/gdk/radar.cc 9492087 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/markup 9492088 8 -r--r--r-- 1 root wheel 3685 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/markup/parser.cc 9492089 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/rulers 9492090 4 -r--r--r-- 1 root wheel 1981 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/rulers/rulers.cc 9492091 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/statusbar 9492092 4 -r--r--r-- 1 root wheel 1450 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/statusbar/statusbar.cc 9492093 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/stock 9492094 12 -r--r--r-- 1 root wheel 4706 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/stock/stock.cc 9492095 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/thread 9492096 12 -r--r--r-- 1 root wheel 4369 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/thread/dispatcher.cc 9492097 16 -r--r--r-- 1 root wheel 6469 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/thread/dispatcher2.cc 9492098 4 -r--r--r-- 1 root wheel 1731 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/thread/thread.cc 9492099 4 -r--r--r-- 1 root wheel 697 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/thread/threadpool.cc 9492100 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/tictactoe 9492101 8 -r--r--r-- 1 root wheel 2455 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/tictactoe/tictactoe.cc 9492102 4 -r--r--r-- 1 root wheel 489 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/tictactoe/ttt_test.cc 9492103 4 -r--r--r-- 1 root wheel 1313 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/tictactoe/tictactoe.h 9492104 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/treemodelcustom 9492105 16 -r--r--r-- 1 root wheel 6178 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/treemodelcustom/exampletreemodel.cc 9492106 4 -r--r--r-- 1 root wheel 2045 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/treemodelcustom/examplewindow.cc 9492107 4 -r--r--r-- 1 root wheel 1013 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/treemodelcustom/main.cc 9492108 8 -r--r--r-- 1 root wheel 2704 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/treemodelcustom/exampletreemodel.h 9492109 4 -r--r--r-- 1 root wheel 1327 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/treemodelcustom/examplewindow.h 9492110 4 drwxr-xr-x 2 root wheel 512 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/window 9492111 12 -r--r--r-- 1 root wheel 6118 Aug 31 18:35 usr/local/share/doc/gtkmm-2.0/examples/window/wheelbarrow.cc ================================================================ build of /usr/ports/x11-toolkits/gtkmm20-reference ended at Sun Aug 31 18:35:22 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B