From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 09:10:08 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 465271065674 for ; Sun, 21 Nov 2010 09:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 040F38FC13 for ; Sun, 21 Nov 2010 09:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oAL9A7a1023801 for ; Sun, 21 Nov 2010 09:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oAL9A76x023800; Sun, 21 Nov 2010 09:10:07 GMT (envelope-from gnats) Resent-Date: Sun, 21 Nov 2010 09:10:07 GMT Resent-Message-Id: <201011210910.oAL9A76x023800@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Yuichiro Goto Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2059106566C for ; Sun, 21 Nov 2010 09:08:19 +0000 (UTC) (envelope-from nobody@yellow.freebsd.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id C52518FC12 for ; Sun, 21 Nov 2010 09:08:19 +0000 (UTC) Received: from yellow.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id oAL98IJE050801 for ; Sun, 21 Nov 2010 09:08:18 GMT (envelope-from nobody@yellow.freebsd.org) Received: (from nobody@localhost) by yellow.freebsd.org (8.14.3/8.14.3/Submit) id oAL98ITB050800; Sun, 21 Nov 2010 09:08:18 GMT (envelope-from nobody) Message-Id: <201011210908.oAL98ITB050800@yellow.freebsd.org> Date: Sun, 21 Nov 2010 09:08:18 GMT From: Yuichiro Goto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/152438: patch to acpi_asus(4) to add extra sysctls for ASUS EeePCs X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 09:10:08 -0000 >Number: 152438 >Category: i386 >Synopsis: patch to acpi_asus(4) to add extra sysctls for ASUS EeePCs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 21 09:10:07 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Yuichiro Goto >Release: 8.1-RELEASE >Organization: FreeBSD user >Environment: FreeBSD cobalt2.my.domain 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Sun Nov 21 01:11:08 JST 2010 y7goto@cobalt2.my.domain:/usr/home/y7goto/GENERIC i386 >Description: Hello, I added sysctls for turing on/off the LCD backlight and touchpad to acpi_asus(4) for ASUS EeePCs. The attached patch has been only tested on the ASUS EeePC 1015PD, so tests on other models are needed. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: acpi_asus.c =================================================================== --- acpi_asus.c (revision 215401) +++ acpi_asus.c (working copy) @@ -60,6 +60,7 @@ #define ACPI_ASUS_METHOD_CAMERA 4 #define ACPI_ASUS_METHOD_CARDRD 5 #define ACPI_ASUS_METHOD_WLAN 6 +#define ACPI_ASUS_METHOD_TPD 7 #define _COMPONENT ACPI_OEM ACPI_MODULE_NAME("ASUS") @@ -94,6 +95,9 @@ char *wlan_get; char *wlan_set; + char *tpd_get; + char *tpd_set; + void (*n_func)(ACPI_HANDLE, UINT32, void *); char *lcdd; @@ -137,6 +141,7 @@ int s_cam; int s_crd; int s_wlan; + int s_tpd; }; static void acpi_asus_lcdd_notify(ACPI_HANDLE h, UINT32 notify, @@ -449,12 +454,16 @@ .name = "EEE", .brn_get = "\\_SB.ATKD.PBLG", .brn_set = "\\_SB.ATKD.PBLS", + .lcd_get = "\\_SB.ATKD.PBPG", + .lcd_set = "\\_SB.ATKD.PBPS", .cam_get = "\\_SB.ATKD.CAMG", .cam_set = "\\_SB.ATKD.CAMS", .crd_set = "\\_SB.ATKD.CRDS", .crd_get = "\\_SB.ATKD.CRDG", .wlan_get = "\\_SB.ATKD.WLDG", .wlan_set = "\\_SB.ATKD.WLDS", + .tpd_get = "\\_SB.ATKD.TPDG", + .tpd_set = "\\_SB.ATKD.TPDS", .n_func = acpi_asus_eeepc_notify }, @@ -503,6 +512,12 @@ .description = "wireless lan state", .flags = CTLTYPE_INT | CTLFLAG_RW }, + { + .name = "touchpad", + .method = ACPI_ASUS_METHOD_TPD, + .description = "touchpad state", + .flags = CTLTYPE_INT | CTLFLAG_RW + }, { .name = NULL } }; @@ -994,6 +1009,9 @@ case ACPI_ASUS_METHOD_WLAN: val = sc->s_wlan; break; + case ACPI_ASUS_METHOD_TPD: + val = sc->s_tpd; + break; } return (val); @@ -1050,8 +1068,11 @@ if (arg < 0 || arg > 1) return (EINVAL); - if (strncmp(sc->model->name, "L3H", 3) != 0) + if (strncmp(sc->model->name, "EEE", 3) == 0) status = AcpiEvaluateObject(sc->handle, + sc->model->lcd_set, &acpiargs, NULL); + else if (strncmp(sc->model->name, "L3H", 3) != 0) + status = AcpiEvaluateObject(sc->handle, sc->model->lcd_set, NULL, NULL); else status = acpi_SetInteger(sc->handle, @@ -1091,6 +1112,16 @@ if (ACPI_SUCCESS(status)) sc->s_wlan = arg; break; + case ACPI_ASUS_METHOD_TPD: + if (arg < 0 || arg > 1) + return (EINVAL); + + status = AcpiEvaluateObject(sc->handle, + sc->model->tpd_set, &acpiargs, NULL); + + if (ACPI_SUCCESS(status)) + sc->s_tpd = arg; + break; } return (0); @@ -1209,6 +1240,14 @@ return (TRUE); } return (FALSE); + case ACPI_ASUS_METHOD_TPD: + if (sc->model->tpd_get) { + status = acpi_GetInteger(sc->handle, + sc->model->tpd_get, &sc->s_tpd); + if (ACPI_SUCCESS(status)) + return (TRUE); + } + return (FALSE); } return (FALSE); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 12:53:20 2010 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCA111065672 for ; Sun, 21 Nov 2010 12:53:20 +0000 (UTC) (envelope-from salvatore.monaco@gmail.com) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id 50EEE8FC1B for ; Sun, 21 Nov 2010 12:53:19 +0000 (UTC) Received: by eyb7 with SMTP id 7so3451308eyb.13 for ; Sun, 21 Nov 2010 04:53:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type:content-transfer-encoding; bh=JfzrtWoorCaH+l5XY5SJu+oezIUaaY/cLpdqudfwwKk=; b=sUV+tuewuOB89cRWAsBoEZ/O4D09k1JFSi2zQU1e2flTHjpCU0B4eq+n7P/eIspaen v8PkTEELrnDBCWwcplMOertmBVb3AZlVkmOMklkG+0KOyyL2vzLd0l+/EvuB++EtdMQ5 5blI+aZpVqgNZ6l1wsYwAKb6frNnyJPUfL46k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=GwPysNjVwvf27XoMduPaAooWt2UYHHlqGjmMCjozuR4AbOAd94LEs6IbnZOdauwMtR kw9s7hw3Hk6BF64rFTjIDyHPW3bqRgkXa2xgMvB7C8nsp5OnaSU67Eisc9c25tuYFOBy jY1Gl4yn3ID/HmU8ze1xsCPASp8JidcRtB+t0= MIME-Version: 1.0 Received: by 10.14.37.10 with SMTP id x10mr3035776eea.30.1290342220296; Sun, 21 Nov 2010 04:23:40 -0800 (PST) Received: by 10.14.47.7 with HTTP; Sun, 21 Nov 2010 04:23:40 -0800 (PST) Date: Sun, 21 Nov 2010 13:23:40 +0100 Message-ID: From: salvatore monaco To: freebsd-i386@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: crush ploblem X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 12:53:20 -0000 Hello Guys I have two freeBSD 7.2 virtual machines on VMware ESX 3.5 on IBM Blade machines have a large workload and work well on either the web server touches the 65,000 contacts per day I have had two unexplained crashes on both machines more 'or less the same uname -a FreeBSD fe-server 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 cat /var/crash/info.3 (e' il 3=B0 uguale) Dump header from device /dev/da0s1b Architecture: i386 Architecture Version: 2 Dump Length: 205328384B (195 MB) Blocksize: 512 Dumptime: Fri Nov 19 14:07:28 2010 Hostname: fe-server Magic: FreeBSD Kernel Dump Version String: FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC Panic String: softdep_setup_freeblocks: inode busy Dump Parity: 2672686378 Bounds: 3 Dump Status: good in vmcore.3 <118>Fri Nov 19 13:51:50 CET 2010 g_vfs_done():da1s1d[WRITE(offset=3D2125856768, length=3D16384)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2126249984, length=3D16384)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2126856192, length=3D16384)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2127151104, length=3D16384)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2127462400, length=3D16384)]error =3D 5 ... g_vfs_done():da0s1f[WRITE(offset=3D3854483456, length=3D16384)]error =3D 5 g_vfs_done():da0s1f[WRITE(offset=3D3854499840, length=3D16384)]error =3D 5 g_vfs_done():da0s1f[WRITE(offset=3D3854516224, length=3D16384)]error =3D 5 g_vfs_done():da0s1f[WRITE(offset=3D3854548992, length=3D16384)]error =3D 5 g_vfs_done():da0s1f[WRITE(offset=3D3854598144, length=3D16384)]error =3D 5 g_vfs_done():da0s1f[WRITE(offset=3D4817469440, length=3D16384)]error =3D 5 g_vfs_done():da0s1f[WRITE(offset=3D5395496960, length=3D16384)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2125824000, length=3D16384)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2125856768, length=3D16384)]error =3D 5 .... g_vfs_done():da1s1d[WRITE(offset=3D2125983744, length=3D2048)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2126407680, length=3D2048)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2125817856, length=3D6144)]error =3D 5 g_vfs_done():da1s1d[WRITE(offset=3D2119712768, length=3D16384)]error =3D 5 panic: softdep_move_dependencies: need merge code cpuid =3D 1 Uptime: 3m24s Physical memory: 2035 MB Dumping 197 MB:Aborting dump due to I/O error. (da0:mpt0:0:0:0): WRITE(10). CDB: 2a 0 0 82 6f be 0 0 1 0 (da0:mpt0:0:0:0): Sense Error Code 0x4 ** DUMP FAILED (ERROR 5) ** are in panic has anyone ever had the same problem?? Suggestions? if not I will have to solve 'switch to ubuntu or windows worse -- Salvatore Monaco From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 16:45:33 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1713F106566C; Sun, 21 Nov 2010 16:45:33 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B46B98FC08; Sun, 21 Nov 2010 16:45:32 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oALGjV5Z019026; Sun, 21 Nov 2010 11:45:31 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oALGjVTP019025; Sun, 21 Nov 2010 16:45:31 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 21 Nov 2010 16:45:31 GMT Message-Id: <201011211645.oALGjVTP019025@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 16:45:33 -0000 TB --- 2010-11-21 15:05:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-21 15:05:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-11-21 15:05:00 - cleaning the object tree TB --- 2010-11-21 15:05:31 - cvsupping the source tree TB --- 2010-11-21 15:05:31 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-11-21 15:05:59 - building world TB --- 2010-11-21 15:05:59 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-21 15:05:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-21 15:05:59 - TARGET=i386 TB --- 2010-11-21 15:05:59 - TARGET_ARCH=i386 TB --- 2010-11-21 15:05:59 - TZ=UTC TB --- 2010-11-21 15:05:59 - __MAKE_CONF=/dev/null TB --- 2010-11-21 15:05:59 - cd /src TB --- 2010-11-21 15:05:59 - /usr/bin/make -B buildworld >>> World build started on Sun Nov 21 15:05:59 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/xargs/xargs.c: In function 'pids_init': /src/usr.bin/xargs/xargs.c:629: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_empty': /src/usr.bin/xargs/xargs.c:641: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_full': /src/usr.bin/xargs/xargs.c:647: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'findfreeslot': /src/usr.bin/xargs/xargs.c:676: warning: old-style function definition *** Error code 1 Stop in /src/usr.bin/xargs. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-21 16:45:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-21 16:45:31 - ERROR: failed to build world TB --- 2010-11-21 16:45:31 - 4785.87 user 845.23 system 6031.09 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 16:45:51 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3CC851065670; Sun, 21 Nov 2010 16:45:51 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9B14E8FC0A; Sun, 21 Nov 2010 16:45:50 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oALGjnAs020331; Sun, 21 Nov 2010 11:45:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oALGjn9c020326; Sun, 21 Nov 2010 16:45:49 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 21 Nov 2010 16:45:49 GMT Message-Id: <201011211645.oALGjn9c020326@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 16:45:51 -0000 TB --- 2010-11-21 15:05:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-21 15:05:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-11-21 15:05:00 - cleaning the object tree TB --- 2010-11-21 15:05:29 - cvsupping the source tree TB --- 2010-11-21 15:05:29 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-11-21 15:05:59 - building world TB --- 2010-11-21 15:05:59 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-21 15:05:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-21 15:05:59 - TARGET=pc98 TB --- 2010-11-21 15:05:59 - TARGET_ARCH=i386 TB --- 2010-11-21 15:05:59 - TZ=UTC TB --- 2010-11-21 15:05:59 - __MAKE_CONF=/dev/null TB --- 2010-11-21 15:05:59 - cd /src TB --- 2010-11-21 15:05:59 - /usr/bin/make -B buildworld >>> World build started on Sun Nov 21 15:05:59 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/xargs/xargs.c: In function 'pids_init': /src/usr.bin/xargs/xargs.c:629: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_empty': /src/usr.bin/xargs/xargs.c:641: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_full': /src/usr.bin/xargs/xargs.c:647: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'findfreeslot': /src/usr.bin/xargs/xargs.c:676: warning: old-style function definition *** Error code 1 Stop in /src/usr.bin/xargs. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-21 16:45:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-21 16:45:49 - ERROR: failed to build world TB --- 2010-11-21 16:45:49 - 4777.87 user 873.97 system 6049.17 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 20:15:59 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F33621065670; Sun, 21 Nov 2010 20:15:58 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9D0808FC14; Sun, 21 Nov 2010 20:15:58 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oALKFvm3087926; Sun, 21 Nov 2010 15:15:57 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oALKFvjA087921; Sun, 21 Nov 2010 20:15:57 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 21 Nov 2010 20:15:57 GMT Message-Id: <201011212015.oALKFvjA087921@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 20:15:59 -0000 TB --- 2010-11-21 18:35:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-21 18:35:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-11-21 18:35:00 - cleaning the object tree TB --- 2010-11-21 18:35:12 - cvsupping the source tree TB --- 2010-11-21 18:35:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-11-21 18:36:03 - building world TB --- 2010-11-21 18:36:03 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-21 18:36:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-21 18:36:03 - TARGET=pc98 TB --- 2010-11-21 18:36:03 - TARGET_ARCH=i386 TB --- 2010-11-21 18:36:03 - TZ=UTC TB --- 2010-11-21 18:36:03 - __MAKE_CONF=/dev/null TB --- 2010-11-21 18:36:03 - cd /src TB --- 2010-11-21 18:36:03 - /usr/bin/make -B buildworld >>> World build started on Sun Nov 21 18:36:04 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/xargs/xargs.c: In function 'pids_init': /src/usr.bin/xargs/xargs.c:629: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_empty': /src/usr.bin/xargs/xargs.c:641: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_full': /src/usr.bin/xargs/xargs.c:647: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'findfreeslot': /src/usr.bin/xargs/xargs.c:676: warning: old-style function definition *** Error code 1 Stop in /src/usr.bin/xargs. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-21 20:15:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-21 20:15:57 - ERROR: failed to build world TB --- 2010-11-21 20:15:57 - 4776.16 user 864.85 system 6057.35 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 20:20:54 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD252106566B; Sun, 21 Nov 2010 20:20:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 5D6358FC12; Sun, 21 Nov 2010 20:20:54 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oALKKrQA024672; Sun, 21 Nov 2010 15:20:53 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oALKKrjJ024642; Sun, 21 Nov 2010 20:20:53 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 21 Nov 2010 20:20:53 GMT Message-Id: <201011212020.oALKKrjJ024642@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 20:20:54 -0000 TB --- 2010-11-21 18:35:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-21 18:35:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-11-21 18:35:00 - cleaning the object tree TB --- 2010-11-21 18:35:12 - cvsupping the source tree TB --- 2010-11-21 18:35:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-11-21 18:40:38 - building world TB --- 2010-11-21 18:40:38 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-21 18:40:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-21 18:40:38 - TARGET=i386 TB --- 2010-11-21 18:40:38 - TARGET_ARCH=i386 TB --- 2010-11-21 18:40:38 - TZ=UTC TB --- 2010-11-21 18:40:38 - __MAKE_CONF=/dev/null TB --- 2010-11-21 18:40:38 - cd /src TB --- 2010-11-21 18:40:38 - /usr/bin/make -B buildworld >>> World build started on Sun Nov 21 18:40:38 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/xargs/xargs.c: In function 'pids_init': /src/usr.bin/xargs/xargs.c:629: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_empty': /src/usr.bin/xargs/xargs.c:641: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_full': /src/usr.bin/xargs/xargs.c:647: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'findfreeslot': /src/usr.bin/xargs/xargs.c:676: warning: old-style function definition *** Error code 1 Stop in /src/usr.bin/xargs. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-21 20:20:53 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-21 20:20:53 - ERROR: failed to build world TB --- 2010-11-21 20:20:53 - 4791.00 user 823.32 system 6353.18 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 23:44:54 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 875A2106566B; Sun, 21 Nov 2010 23:44:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 492A58FC08; Sun, 21 Nov 2010 23:44:53 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oALNiqQe049671; Sun, 21 Nov 2010 18:44:52 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oALNiqpY049663; Sun, 21 Nov 2010 23:44:52 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 21 Nov 2010 23:44:52 GMT Message-Id: <201011212344.oALNiqpY049663@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 23:44:54 -0000 TB --- 2010-11-21 22:05:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-21 22:05:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-11-21 22:05:00 - cleaning the object tree TB --- 2010-11-21 22:05:12 - cvsupping the source tree TB --- 2010-11-21 22:05:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-11-21 22:05:31 - building world TB --- 2010-11-21 22:05:31 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-21 22:05:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-21 22:05:31 - TARGET=i386 TB --- 2010-11-21 22:05:31 - TARGET_ARCH=i386 TB --- 2010-11-21 22:05:31 - TZ=UTC TB --- 2010-11-21 22:05:31 - __MAKE_CONF=/dev/null TB --- 2010-11-21 22:05:31 - cd /src TB --- 2010-11-21 22:05:31 - /usr/bin/make -B buildworld >>> World build started on Sun Nov 21 22:05:31 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/xargs/xargs.c: In function 'pids_init': /src/usr.bin/xargs/xargs.c:629: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_empty': /src/usr.bin/xargs/xargs.c:641: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_full': /src/usr.bin/xargs/xargs.c:647: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'findfreeslot': /src/usr.bin/xargs/xargs.c:676: warning: old-style function definition *** Error code 1 Stop in /src/usr.bin/xargs. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-21 23:44:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-21 23:44:52 - ERROR: failed to build world TB --- 2010-11-21 23:44:52 - 4782.66 user 838.34 system 5991.43 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sun Nov 21 23:51:30 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B69FB106566C; Sun, 21 Nov 2010 23:51:30 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 566F38FC14; Sun, 21 Nov 2010 23:51:30 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oALNpTlt096818; Sun, 21 Nov 2010 18:51:29 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oALNpTti096816; Sun, 21 Nov 2010 23:51:29 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 21 Nov 2010 23:51:29 GMT Message-Id: <201011212351.oALNpTti096816@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Nov 2010 23:51:30 -0000 TB --- 2010-11-21 22:05:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-21 22:05:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-11-21 22:05:00 - cleaning the object tree TB --- 2010-11-21 22:05:12 - cvsupping the source tree TB --- 2010-11-21 22:05:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-11-21 22:10:38 - building world TB --- 2010-11-21 22:10:38 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-21 22:10:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-21 22:10:38 - TARGET=pc98 TB --- 2010-11-21 22:10:38 - TARGET_ARCH=i386 TB --- 2010-11-21 22:10:38 - TZ=UTC TB --- 2010-11-21 22:10:38 - __MAKE_CONF=/dev/null TB --- 2010-11-21 22:10:38 - cd /src TB --- 2010-11-21 22:10:38 - /usr/bin/make -B buildworld >>> World build started on Sun Nov 21 22:10:40 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] /src/usr.bin/xargs/xargs.c: In function 'pids_init': /src/usr.bin/xargs/xargs.c:629: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_empty': /src/usr.bin/xargs/xargs.c:641: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'pids_full': /src/usr.bin/xargs/xargs.c:647: warning: old-style function definition /src/usr.bin/xargs/xargs.c: In function 'findfreeslot': /src/usr.bin/xargs/xargs.c:676: warning: old-style function definition *** Error code 1 Stop in /src/usr.bin/xargs. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-21 23:51:29 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-21 23:51:29 - ERROR: failed to build world TB --- 2010-11-21 23:51:29 - 4782.57 user 846.90 system 6388.46 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Mon Nov 22 09:39:46 2010 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C7BB106564A for ; Mon, 22 Nov 2010 09:39:46 +0000 (UTC) (envelope-from return1@e-mail-system.com) Received: from mail334.e-mail-system.com (mail334.e-mail-system.com [62.93.9.82]) by mx1.freebsd.org (Postfix) with ESMTP id 1F8778FC15 for ; Mon, 22 Nov 2010 09:39:45 +0000 (UTC) Received: from localhost (mail334.e-mail-system.com [62.93.9.82]) by mail334.e-mail-system.com (Postfix) with ESMTP id C3A6713886A for ; Mon, 22 Nov 2010 11:21:13 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable From: =?ISO-8859-1?Q?Christine_Sch=E4fer?= To: freebsd-i386@freebsd.org Message-Id: <20101122102113.C3A6713886A@mail334.e-mail-system.com> Date: Mon, 22 Nov 2010 11:21:13 +0100 (CET) Subject: Re: Ihre Anfrage Nr. 270367207987 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 09:39:46 -0000 Guten Tag Kundennummer KK-200737, Sie nutzen derzeit einen Krankenkassen Tarif, der durch einen g=FCnstigeren= ersetzt werden kann.=20 Damit Sie erfahren welcher Tarif g=FCnstiger ist und bessere Leistungen bie= tet, m=FCssten Sie einfach nur kurz einen kostenlosen Vergleich auf unserer= Internetseite durchf=FChren. Dieses dauert weniger als 1 Minute.=20 Bitte klicken Sie hier: http://c.beitrag-2011.com/k-443-5513773.htm Durch einen Wechsel in einen privaten Krankenkassentarif k=F6nnen Sie derze= it enorm viel sparen. Darum r=E4t unsere Gesellschaft unbedingt zum Verglei= ch. Oft sind es =FCber 2.500 Euro die gespart werden k=F6nnen. Dazu erhalt= en Sie dann auch noch andere und bessere Leistungen als in Ihrem alten Tari= f. Bitte klicken Sie hier: http://c.beitrag-2011.com/k-443-5513773.htm Ich hoffe ich konnte Ihnen helfen,=20 Ihre Christine Sch=E4fer Sie erhalten dieses E-Mailing, da Sie uns oder einem unserer Partner Ihre E= inwilligung dazu gegeben haben. Gerne k=F6nnen Sie Ihre E-Mail Adresse l=F6= schen. Klicken Sie dazu einfach hier: http://c.beitrag-2011.com/a/?i=3D7161310&e=3Dfreebsd-i386%40freebsd.org&c= =3D5513773 From owner-freebsd-i386@FreeBSD.ORG Mon Nov 22 11:07:06 2010 Return-Path: Delivered-To: freebsd-i386@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C761106564A for ; Mon, 22 Nov 2010 11:07:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED3B38FC0A for ; Mon, 22 Nov 2010 11:07:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oAMB75EL051698 for ; Mon, 22 Nov 2010 11:07:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oAMB75hw051694 for freebsd-i386@FreeBSD.org; Mon, 22 Nov 2010 11:07:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Nov 2010 11:07:05 GMT Message-Id: <201011221107.oAMB75hw051694@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-i386@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-i386@FreeBSD.org X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 11:07:06 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o i386/152438 i386 patch to acpi_asus(4) to add extra sysctls for ASUS Ee o i386/151122 i386 [boot] BTX 1.02 crashes on boot o i386/150766 i386 Dell Vostro 3700 siffle sous FreeBSD / Dell Vostro 370 f i386/150486 i386 Installation Problem o i386/149647 i386 [panic] Dell Inspiron 530 (FX09) panic at boot with 8. o i386/148848 i386 [hang] Load freezing at boot on HP Mini 311 o i386/148624 i386 PERC H200 Controller on Dell R610 Not recognized o i386/148509 i386 [boot] [patch] Improvements to i386/boot2's comments o i386/147912 i386 [boot] FreeBSD 8 Beta won't boot on Thinkpad i1300 11 o i386/147842 i386 [install] Installation Failure on Panasonic CF-Y5 o i386/147458 i386 [boot] FreeBSD 8 can't boot from dvd, unless dvd is ex o i386/146446 i386 [install] FreeBSD 8.0 installation hangs at an early s o i386/146221 i386 [boot] incompatibility of the BTX with toshiba tecra R o i386/145718 i386 [est] [patch] fix freq calculation from MSR for CPUs w o i386/145079 i386 [boot] BTX halted on P3 server f i386/144956 i386 [boot] Early minute-plus delay in boot on Intel Nehale o i386/144326 i386 [ata] PERC H200 Integrated/Adapter not recognized on D o i386/143587 i386 [boot] [hang] BTX 1.02 freezes upon assigning Bios C d o i386/142946 i386 [boot] Can't boot installation DVD. BTX halted o i386/142934 i386 [boot] Cannot boot FreeBSD 6.4, 7.x on Hint Corp VX Pr o i386/142421 i386 [ata] optical drives not found o i386/142190 i386 [boot] BTX Loader issue on Gigabyte Motherboard o i386/142108 i386 [panic] vm_fault: fault on nofault entry, addr: c32a40 o i386/141942 i386 [irq] interrupt storm (VIA 6421A atapci controller) o i386/141675 i386 [boot] memory and BTX halted on Sunfire X4170 o i386/141470 i386 [boot] BTX halted immediatly on selecting any of the b o i386/141468 i386 [boot] FreeBSD 8.0 boot manager can cause disk not pro o i386/141119 i386 [irq] Stop starting on computer with ISA network card o i386/140655 i386 [panic] Lenovo X300: fatal trap 12 after /sbin/halt -p o i386/140645 i386 [irq] High INTERRUPT rate on CPU 0 o i386/140448 i386 [boot] BTX loader hangs after displaying BIOS drives o i386/140268 i386 [install] 8.0-RC* does not install on MSI MS-7255 [reg o i386/139999 i386 [panic] random freeze and crash o i386/139743 i386 [ichsmb] [patch] ichsmb driver doesn't detects SMB bus o i386/139115 i386 [cpufreq] low cpu frequency reported [regression] o i386/138948 i386 [twa] [regression] da0: Fi o i386/138737 i386 [endian] [patch] Patch for bswap64(9) operation on IA o i386/138126 i386 [panic] Kernel panic trap 12 on bigger load o i386/137925 i386 [boot] BTX loader hangs when raid volume present [regr o i386/134984 i386 [boot] [hang] boot from i386 DVD on Lenovo R500 fails o i386/134242 i386 [boot0] [patch] improvement i386 boot0 error diagnose o i386/133727 i386 chars [[[[[[[[[[[[[ occur during install process (sett o i386/133388 i386 [est] est causes wrong dev.cpu.0.freq_levels values o i386/132416 i386 Popup motherboard bios setup window when rebooting sys o i386/132230 i386 [boot] [reboot] 7.1-RELEASE /boot/loader non-functiona o i386/131426 i386 hald makes cdrom fail o i386/130110 i386 [boot] BTX-Halted - booting with SAS/SATA Controller o i386/129550 i386 [pae] [kqueue] crash with PAE kernel o i386/127374 i386 Suspend/Resume with Keystroke only once on Thinkpad T4 o i386/127343 i386 [hang] System locks -- simular to PR 123729 o i386/127337 i386 [boot] FreeBSD 7.1/i386 BTX boot problem on Pavilion d o i386/126666 i386 [boot] [hang] boot failure for nForce 630i / GeForce 7 o i386/126162 i386 [acpi] ACPI autoload failed : loading required module o i386/125592 i386 [hang] FreeBSD 7 server in hang o i386/124633 i386 [boot] [panic] 7.0 does not boot from CD o i386/124124 i386 [boot] [panic] Page fault while booting livefs iso of o i386/123990 i386 [boot] BTX halted on Thinkpad x60s o i386/123462 i386 clock is too fast a i386/122887 i386 [panic] [atkbdc] 7.0-RELEASE on IBM HS20 panics immed o i386/122623 i386 [build] [patch] bsd.cpu.mk doesn't handle opteron/athl f i386/121903 i386 [ips] [boot] can't boot on IBM x235 ServeRaid 6M [regr f i386/120933 i386 [boot] 6.x and 7.x do not boot from CD on IBM HS20 883 f i386/119175 i386 [busdma] [patch] Typo in bus_dmamem_alloc() f i386/118350 i386 [boot] [hang] BTX loader hangs on PC Engines WRAP f i386/117297 i386 [hang] System hangs up every day f i386/116844 i386 [boot] [hang] cannot boot from cd when using Dell Vost f i386/115947 i386 [hang] Dell poweredge 860 hangs when stressed and ACPI f i386/115854 i386 [boot] [install] Install FreeBSD with USB CDROM causes f i386/114208 i386 [boot] Problem booting the FreeBSD CD ISO image f i386/114192 i386 Fail to boot with "error issuing ATA_IDENTIFY command" o i386/113110 i386 [mk] [patch] i686 is not an alias of pentiumpro on GCC f i386/112580 i386 [boot] BTX Halted on HP DV6255 Notebook f i386/112487 i386 [sio] kernel panic on swi0:sio f i386/109610 i386 [panic] Fatal trap 12: page fault while in kernel mode f i386/109568 i386 [panic] Reboot server with "Fatal trap 12" f i386/108185 i386 [panic] freebsd 6.2 fatal kernel trap f i386/107382 i386 [install] "Fatal trap 12" when installing FreeBSD 6.1 f i386/106850 i386 [powerd] powernow0 attach returned 6 f i386/105175 i386 [ipmi] ipmi acpi trouble on supermicro server f i386/105063 i386 [sio] US Robotics (3Com) 3CP5609 PCI 16550 Modem works f i386/104719 i386 [ata] Seagate ST3802110A errors/delays when using PIO4 f i386/102562 i386 [em] no traffic pass through a em card after approx. a f i386/102410 i386 [install] FreeBSD 6.1-RELEASE installation boot freeze f i386/101616 i386 [hang] FreeBSD freeze on bootup, Compaq Proliant (lega f i386/101062 i386 [hang] Freeze on detect Intel 900 VGA on boot with ACP f i386/100831 i386 [sio] sio ignores BIOS information about serial ports f i386/100420 i386 [boot] boot1/boot2 lba error f i386/100204 i386 FreeBSD reports raid as broken - but it is not f i386/99608 i386 [atapicam] ATAPI or CAM crash on FreeBSD 6.1-stable wi f i386/98765 i386 [ata] timeouts on sata drive (Asus a7n8x-e) f i386/98215 i386 [geode] [regression] FreeBSD can no longer boot Geode f i386/98154 i386 6-STABLE crashes when being online via modem (Fujitsu f i386/97287 i386 Screen Corruption In FreeBSD 6.X When Apps Started In f i386/97263 i386 [ata] FreeBSD only detects first drive on PDC20378 378 f i386/96357 i386 FreeBSD cannot recognize all the logical partitions f i386/93793 i386 [keyboard] Keyboard stops working after a shutdown -p f i386/93752 i386 Cannot activate the serial ports on boot probe. BIOS o f i386/92193 i386 [boot] Can't boot from 6.0 Installation CD: BTX halted s i386/88755 i386 [install] FreeBSD R6.0 on ThinkPad R40 installation re s i386/88139 i386 [i386] [request] 53C875 Chipset HP 5064-6016 doesn't w o i386/85656 i386 [i386] [patch] expose more i386 specific CPU informati o i386/85655 i386 [i386] [patch] expose cpu info for i386 systems o i386/85653 i386 [i386] [patch] relieve hangs in tight loops in process o i386/85652 i386 [loader] [patch] deal with out-of-memory errors during f i386/80268 i386 [panic] System with Transmeta Efficeon cpu crashes whi f i386/79091 i386 [i386] [patch] Small optimization for i386/support.s f i386/74153 i386 [pst] FreeBSD 5.3 cannot boot ftom pst f i386/71000 i386 [boot] BTX halted when booting from CD on a machine wi f i386/70531 i386 [boot0] [patch] boot0 hides Lilo in extended slice 109 problems total. From owner-freebsd-i386@FreeBSD.ORG Mon Nov 22 15:30:20 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B6E01065674 for ; Mon, 22 Nov 2010 15:30:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8678FC0C for ; Mon, 22 Nov 2010 15:30:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oAMFUK30026900 for ; Mon, 22 Nov 2010 15:30:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oAMFUKMQ026892; Mon, 22 Nov 2010 15:30:20 GMT (envelope-from gnats) Resent-Date: Mon, 22 Nov 2010 15:30:20 GMT Resent-Message-Id: <201011221530.oAMFUKMQ026892@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Christian Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2463C106576A for ; Mon, 22 Nov 2010 15:28:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1173A8FC16 for ; Mon, 22 Nov 2010 15:28:56 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id oAMFStCN052746 for ; Mon, 22 Nov 2010 15:28:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id oAMFStgY052745; Mon, 22 Nov 2010 15:28:55 GMT (envelope-from nobody) Message-Id: <201011221528.oAMFStgY052745@red.freebsd.org> Date: Mon, 22 Nov 2010 15:28:55 GMT From: Christian To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/152484: Build error of GTK-2.22.1_1 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 15:30:20 -0000 >Number: 152484 >Category: i386 >Synopsis: Build error of GTK-2.22.1_1 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 22 15:30:19 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Christian >Release: FreeBSD-8.1-RELEASE-p1 >Organization: >Environment: FreeBSD FreeBSD 8.1-RELEASE-p1 FreeBSD 8.1-RELEASE-p1 #3: Wed Sep 22 22:36:14 CST 2010 root@FreeBSD:/usr/src/sys/i386/compile/BSD i386 >Description: I tried to use portupgrade according to the instruction of /usr/ports/UPDATING, but when I build Gtk-2.22.1_1, it stops with error, and portupgrade failed. I searched with Google, and got no solution at all. The last lines of build log output like this: Making all in x11 gmake[4]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk/x11' gmake[4]: Nothing to be done for `all'. /usr/local/share/git-1.0/Atk-1.0.gir:Atk-1.0.gir Incompatible version 1.0 (supported: 1.2) gmake[4]: *** [Gtk-2.0.gir] Error 1 gmake[3]: *** [all-recursive] Error 1 gmake[2]: *** [all] Error 2 gmake[1]: *** [all-recursive] Error 1 gmake[4]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk/x11' Making all in . gmake[4]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk' gmake[4]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk' Making all in tests gmake[4]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk/tests' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk/tests' gmake[3]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk' gmake[2]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gdk' Making all in gtk gmake[2]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk' gmake all-recursive gmake[3]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk' Making all in theme-bits gmake[4]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk/theme-bits' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk/theme-bits' Making all in . gmake[4]: Entering directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk' /usr/local/bin/g-ir-scanner --add-include-path=../gdk --namespace=Gtk --nsversion=2.0 --libtool="/bin/sh /usr/ports/x11-toolkits/gtk20/work/gnome-libtool" --include=Atk-1.0 --include=Gdk-2.0 --library=libgtk-x11-2.0.la --warn-all --add-include-path=../gdk --add-include-path=../gdk/x11 -DG_LOG_DOMAIN=\"Gtk\" -DGTK_LIBDIR=\"/usr/local/lib\" -DGTK_DATADIR=\"/usr/local/share\" -DGTK_DATA_PREFIX=\"/usr/local\" -DGTK_SYSCONFDIR=\"/usr/local/etc\" -DGTK_VERSION=\"2.22.1\" -DGTK_BINARY_VERSION=\"2.10.0\" -DGTK_HOST=\"i386-portbld-freebsd8.1\" -DGTK_COMPILATION -DGTK_PRINT_BACKENDS=\"file,cups,lpr\" -DGTK_PRINT_PREVIEW_COMMAND=\""evince --unlink-tempfile --preview --print-settings %s %f"\" -I.. -I../gtk -I.. -I../gdk -I../gdk -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGTK_FILE_SYSTEM_ENABLE_UNSUPPORTED -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED -DG_DISABLE_CAST_CHECKS -D_REENTRANT -D_THREAD_SAFE -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/incl ude/pango-1.0 -I/usr/local/include/cairo -I/usr/local/include/pixman-1 -I/usr/local/include -I/usr/local/include/freetype2 -I/usr/local/include/drm -I/usr/local/include/gio-unix-2.0/ -I/usr/local/include/gdk-pixbuf-2.0 -I/usr/local/include/atk-1.0 -UGDK_DISABLE_DEPRECATED -UGTK_DISABLE_DEPRECATED -DGTK_TEXT_USE_INTERNAL_UNSUPPORTED_API gtk.h gtkaboutdialog.h gtkaccelgroup.h gtkaccellabel.h gtkaccelmap.h gtkaccessible.h gtkaction.h gtkactiongroup.h gtkactivatable.h gtkadjustment.h gtkalignment.h gtkarrow.h gtkaspectframe.h gtkassistant.h gtkbbox.h gtkbin.h gtkbindings.h gtkbox.h gtkbuilder.h gtkbuildable.h gtkbutton.h gtkcalendar.h gtkcelleditable.h gtkcelllayout.h gtkcellrenderer.h gtkcellrendereraccel.h gtkcellrenderercombo.h gtkcellrendererpixbuf.h gtkcellrendererprogress.h gtkcellrendererspin.h gtkcellrendererspinner.h gtkcellrenderertext.h gtkcellrenderertoggle.h gtkcellview.h gtkcheckbutton.h gtkcheckmenuitem.h gtkclipboard.h gtkcolorbutton.h gtkcolorsel.h gtkcol orseldialog.h gtkcombobox.h gtkcomboboxentry.h gtkcontainer.! h gtkdebug.h gtkdialog.h gtkdnd.h gtkdrawingarea.h gtkeditable.h gtkentry.h gtkentrybuffer.h gtkentrycompletion.h gtkenums.h gtkeventbox.h gtkexpander.h gtkfilechooser.h gtkfilechooserbutton.h gtkfilechooserdialog.h gtkfilechooserwidget.h gtkfilefilter.h gtkfixed.h gtkfontbutton.h gtkfontsel.h gtkframe.h gtkgc.h gtkhandlebox.h gtkhbbox.h gtkhbox.h gtkhpaned.h gtkhruler.h gtkhscale.h gtkhscrollbar.h gtkhseparator.h gtkhsv.h gtkiconfactory.h gtkicontheme.h gtkiconview.h gtkimage.h gtkimagemenuitem.h gtkimcontext.h gtkimcontextsimple.h gtkimmodule.h gtkimmulticontext.h gtkinfobar.h gtkinvisible.h gtkitem.h gtklabel.h gtklayout.h gtklinkbutton.h gtkliststore.h gtkmain.h gtkmenu.h gtkmenubar.h gtkmenuitem.h gtkmenushell.h gtkmenutoolbutton.h gtkmessagedialog.h gtkmisc.h gtkmodules.h gtkmountoperation.h gtknotebook.h gtkobject.h gtkoffscreenwindow.h gtkorientable.h gtkpagesetup.h gtkpaned.h gtkpapersize.h gtkplug.h gtkprintcontext.h gtkprintoperation.h gtkprintoperationpreview.h g tkprintsettings.h gtkprivate.h gtkprogressbar.h gtkradioaction.h gtkradiobutton.h gtkradiomenuitem.h gtkradiotoolbutton.h gtkrange.h gtkrc.h gtkrecentaction.h gtkrecentchooser.h gtkrecentchooserdialog.h gtkrecentchoosermenu.h gtkrecentchooserwidget.h gtkrecentfilter.h gtkrecentmanager.h gtkruler.h gtkscale.h gtkscalebutton.h gtkscrollbar.h gtkscrolledwindow.h gtkselection.h gtkseparator.h gtkseparatormenuitem.h gtkseparatortoolitem.h gtkshow.h gtksettings.h gtksizegroup.h gtksocket.h gtkspinbutton.h gtkspinner.h gtkstatusbar.h gtkstatusicon.h gtkstock.h gtkstyle.h gtktable.h gtktearoffmenuitem.h gtktestutils.h gtktextbuffer.h gtktextbufferrichtext.h gtktextchild.h gtktextdisplay.h gtktextiter.h gtktextmark.h gtktexttag.h gtktexttagtable.h gtktextview.h gtktoggleaction.h gtktogglebutton.h gtktoggletoolbutton.h gtktoolbar.h gtktoolbutton.h gtktoolitem.h gtktoolitemgroup.h gtktoolpalette.h gtktoolshell.h gtktooltip.h gtktreednd.h gtktreemodel.h gtktreemodelfilter.h gtktreemodel sort.h gtktreeselection.h gtktreesortable.h gtktreestore.h g! tktreevie! w.h gtktreeviewcolumn.h gtktypeutils.h gtkuimanager.h gtkvbbox.h gtkvbox.h gtkviewport.h gtkvolumebutton.h gtkvpaned.h gtkvruler.h gtkvscale.h gtkvscrollbar.h gtkvseparator.h gtkwidget.h gtkwindow.h gtktext.h gtktree.h gtktreeitem.h gtkclist.h gtkcombo.h gtkctree.h gtkcurve.h gtkfilesel.h gtkgamma.h gtkinputdialog.h gtkitemfactory.h gtklist.h gtklistitem.h gtkoldeditable.h gtkoptionmenu.h gtkpixmap.h gtkpreview.h gtkprogress.h gtksignal.h gtktipsquery.h gtktooltips.h gtktextlayout.h gtkmarshal.h gtktypebuiltins.h gtkversion.h gtkquery.c gtksearchengine.c gtksearchenginesimple.c fnmatch.c gtkaboutdialog.c gtkaccelgroup.c gtkaccellabel.c gtkaccelmap.c gtkaccessible.c gtkaction.c gtkactiongroup.c gtkactivatable.c gtkadjustment.c gtkalignment.c gtkarrow.c gtkaspectframe.c gtkassistant.c gtkbbox.c gtkbin.c gtkbindings.c gtkbox.c gtkbuildable.c gtkbuilder.c gtkbuilderparser.c gtkbutton.c gtkcalendar.c gtkcelleditable.c gtkcelllayout.c gtkcellrenderer.c gtkcellrendereraccel.c gtkce llrenderercombo.c gtkcellrendererpixbuf.c gtkcellrendererprogress.c gtkcellrendererspin.c gtkcellrendererspinner.c gtkcellrenderertext.c gtkcellrenderertoggle.c gtkcellview.c gtkcheckbutton.c gtkcheckmenuitem.c gtkcolorbutton.c gtkcolorsel.c gtkcolorseldialog.c gtkcombobox.c gtkcomboboxentry.c gtkcontainer.c gtkdialog.c gtkdrawingarea.c gtkeditable.c gtkentry.c gtkentrybuffer.c gtkentrycompletion.c gtkeventbox.c gtkexpander.c gtkfilechooser.c gtkfilechooserbutton.c gtkfilechooserdefault.c gtkfilechooserdialog.c gtkfilechooserembed.c gtkfilechooserentry.c gtkfilechoosersettings.c gtkfilechooserutils.c gtkfilechooserwidget.c gtkfilefilter.c gtkfilesystem.c gtkfilesystemmodel.c gtkfixed.c gtkfontbutton.c gtkfontsel.c gtkframe.c gtkgc.c gtkhandlebox.c gtkhbbox.c gtkhbox.c gtkhpaned.c gtkhruler.c gtkhscale.c gtkhscrollbar.c gtkhseparator.c gtkhsv.c gtkiconcache.c gtkiconcachevalidator.c gtkiconfactory.c gtkicontheme.c gtkiconview.c gtkimage.c gtkimagemenuitem.c gtkimcontext.c gtk imcontextsimple.c gtkimmodule.c gtkimmulticontext.c gtkinfob! ar.c gtki! nputdialog.c gtkinvisible.c gtkitem.c gtkkeyhash.c gtklabel.c gtklayout.c gtklinkbutton.c gtkliststore.c gtkmain.c gtkmarshal.c gtkmarshalers.c gtkmenu.c gtkmenubar.c gtkmenuitem.c gtkmenushell.c gtkmenutoolbutton.c gtkmessagedialog.c gtkmisc.c gtkmnemonichash.c gtkmodules.c gtkmountoperation.c gtknotebook.c gtkobject.c gtkoffscreenwindow.c gtkorientable.c gtkpagesetup.c gtkpaned.c gtkpango.c gtkpapersize.c gtkpathbar.c gtkplug.c gtkprintcontext.c gtkprintoperation.c gtkprintoperationpreview.c gtkprintsettings.c gtkprintutils.c gtkprogressbar.c gtkradioaction.c gtkradiobutton.c gtkradiomenuitem.c gtkradiotoolbutton.c gtkrange.c gtkrbtree.c gtkrc.c gtkrecentaction.c gtkrecentchooserdefault.c gtkrecentchooserdialog.c gtkrecentchoosermenu.c gtkrecentchooserwidget.c gtkrecentchooserutils.c gtkrecentchooser.c gtkrecentfilter.c gtkrecentmanager.c gtkruler.c gtkscale.c gtkscalebutton.c gtkscrollbar.c gtkscrolledwindow.c gtkselection.c gtkseparator.c gtkseparatormenuitem.c gtksepara tortoolitem.c gtksettings.c gtksizegroup.c gtkshow.c gtksocket.c gtkspinbutton.c gtkspinner.c gtkstatusbar.c gtkstatusicon.c gtkstock.c gtkstyle.c gtktable.c gtktearoffmenuitem.c gtktestutils.c gtktextbtree.c gtktextbuffer.c gtktextbufferrichtext.c gtktextbufferserialize.c gtktextchild.c gtktextdisplay.c gtktextiter.c gtktextlayout.c gtktextmark.c gtktextsegment.c gtktexttag.c gtktexttagtable.c gtktexttypes.c gtktextutil.c gtktextview.c gtkthemes.c gtktoggleaction.c gtktogglebutton.c gtktoggletoolbutton.c gtktoolbar.c gtktoolbutton.c gtktoolitem.c gtktoolitemgroup.c gtktoolpalette.c gtktoolshell.c gtktooltip.c gtktreedatalist.c gtktreednd.c gtktreemodel.c gtktreemodelfilter.c gtktreemodelsort.c gtktreeselection.c gtktreesortable.c gtktreestore.c gtktreeview.c gtktreeviewcolumn.c gtktypebuiltins.c gtktypeutils.c gtkuimanager.c gtkvbbox.c gtkvbox.c gtkvolumebutton.c gtkviewport.c gtkvpaned.c gtkvruler.c gtkvscale.c gtkvscrollbar.c gtkvseparator.c gtkwidget.c gtkwindow-decorate .c gtkwindow.c gtkclipboard.c gtkdnd.c gtktext.c gtktree.c g! tktreeite! m.c gtkclist.c gtkcombo.c gtkctree.c gtkcurve.c gtkfilesel.c gtkgamma.c gtkitemfactory.c gtklist.c gtklistitem.c gtkoldeditable.c gtkoptionmenu.c gtkpixmap.c gtkpreview.c gtkprogress.c gtksignal.c gtktipsquery.c gtktooltips.c gtkcustompaperunixdialog.c gtkpagesetupunixdialog.c gtkprinter.c gtkprinteroption.c gtkprinteroptionset.c gtkprinteroptionwidget.c gtkprintjob.c gtkprintoperation-unix.c gtkprintunixdialog.c gtkprintbackend.c gtksearchenginebeagle.c gtksearchenginetracker.c gtkprint-win32.c gtkprintoperation-win32.c gtkplug-x11.c gtksocket-x11.c gtkxembed.c gtktrayicon-x11.c gtkmountoperation-x11.c gtkplug-win32.c gtksocket-win32.c gtkwin32embed.c gtkwin32embedwidget.c gtkmountoperation-stub.c gtksearchenginequartz.c gtkplug-stub.c gtksocket-stub.c /usr/local/bin/g-ir-scanner libgtk-x11-2.0.la ../gdk/Gdk-2.0.gir Makefile --output Gtk-2.0.gir gmake[4]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk' gmake[3]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk' gmake[2]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1/gtk' gmake[1]: Leaving directory `/usr/ports/x11-toolkits/gtk20/work/gtk+-2.22.1' *** Error code 1 Stop in /usr/ports/x11-toolkits/gtk20. *** Error code 1 Stop in /usr/ports/x11-toolkits/gtk20. And by the way, I use full Gnome Desktop Environment on my FreeBSD system. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Mon Nov 22 17:10:12 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 445B5106587A for ; Mon, 22 Nov 2010 17:10:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1758A8FC1A for ; Mon, 22 Nov 2010 17:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oAMHABbP030625 for ; Mon, 22 Nov 2010 17:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oAMHABw2030624; Mon, 22 Nov 2010 17:10:11 GMT (envelope-from gnats) Date: Mon, 22 Nov 2010 17:10:11 GMT Message-Id: <201011221710.oAMHABw2030624@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: "Wood" Cc: Subject: Re: i386/152484: Build error of GTK-2.22.1_1 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Wood List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 17:10:12 -0000 The following reply was made to PR i386/152484; it has been noted by GNATS. From: "Wood" To: Cc: Subject: Re: i386/152484: Build error of GTK-2.22.1_1 Date: Tue, 23 Nov 2010 00:31:56 +0800 This is a multipart message in MIME format. ------=_NextPart_000_0001_01CB8AA5.D5D53DB0 Content-Type: multipart/alternative; boundary="----=_NextPart_001_0002_01CB8AA5.D5D53DB0" ------=_NextPart_001_0002_01CB8AA5.D5D53DB0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit And here follows my pkg list. ------=_NextPart_001_0002_01CB8AA5.D5D53DB0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

And here = follows my pkg list.

------=_NextPart_001_0002_01CB8AA5.D5D53DB0-- ------=_NextPart_000_0001_01CB8AA5.D5D53DB0 Content-Type: application/octet-stream; name="pkg list" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="pkg list" ImageMagick-6.6.4.10_1 Image processing tools=0A= ORBit2-2.14.19 High-performance CORBA ORB with support for the C = language=0A= OpenEXR-1.6.1_2 A high dynamic-range (HDR) image file format=0A= PackageKit-0.6.9 A DBUS packaging abstraction layer=0A= Terminal-0.4.5 Terminal emulator for the X windowing system=0A= Thunar-1.0.2 XFce 4 file manager=0A= a2ps-a4-4.13b_4 Formats an ascii file for printing on a postscript = printer=0A= aalib-1.4.r5_5 An ascii art library=0A= abiword-2.8.4_1 An open-source, cross-platform WYSIWYG word processor=0A= adobe-cmaps-20051217_1 Adobe CMap collection=0A= alacarte-0.13.1_1 An editor for the freedesktop.org menu specification=0A= amspsfnt-1.0_5 AMSFonts PostScript Fonts (Adobe Type 1 format)=0A= ap22-mod_dnssd-0.6_8 An Apache module that provides DNS-SD capabilities=0A= apache-2.2.17_1 Version 2.2.x of Apache web server with prefork MPM.=0A= appres-1.0.2 Program to list application's resources=0A= apr-ipv6-devrandom-gdbm-db42-1.4.2.1.3.10 Apache Portability Library=0A= apt-0.6.46.4.1_5 Advanced front-end for dpkg=0A= arts-1.5.10_5,1 Audio system for the KDE integrated X11 desktop=0A= asciidoc-8.6.1 A text document format for writing short documents = and man =0A= aspell-0.60.6_3 Spelling checker with better suggestion logic than = ispell=0A= at-spi-1.32.0 An Assistive Technology Service Provider Interface=0A= at-spi2-atk-0.4.1 Assisted Technology Provider module for GTK+=0A= at-spi2-core-0.4.1 An Assistive Technology Service Provider Interface=0A= atk-1.32.0 A GNOME accessibility toolkit (ATK)=0A= atomix-2.14.0_9 A yet another little mind game=0A= autoconf-2.13.000227_6 Automatically configure source code on many Un*x = platforms =0A= autoconf-2.68 Automatically configure source code on many Un*x = platforms =0A= autoconf-wrapper-20071109 Wrapper script for GNU autoconf=0A= automake-1.11.1 GNU Standards-compliant Makefile generator (1.11)=0A= automake-wrapper-20071109 Wrapper script for GNU automake=0A= automoc4-0.9.88_1 Automatic moc for Qt 4 packages=0A= avahi-0.6.27 The "meta-port" for the Avahi service discovery suite=0A= avahi-app-0.6.28 Service discovery on a local network=0A= avahi-gtk-0.6.27 Gtk+ tools and bindings to the Avahi mDNS system=0A= babl-0.1.2 Dynamic pixel format conversion library=0A= bash-4.1.9 The GNU Project's Bourne Again SHell=0A= bdftopcf-1.0.2 Convert X font from BDF to PCF=0A= beecrypt-4.2.1 BeeCrypt is an open source cryptography library=0A= bigreqsproto-1.1.0 BigReqs extension headers=0A= binutils-2.20.1_3 GNU binary tools=0A= bison-2.4.3,1 A parser generator from FSF, (mostly) compatible = with Yacc=0A= bitmap-1.0.4 Bitmap editor and converter utilities for X=0A= bitstream-vera-1.10_4 Bitstream Vera TrueType font collection=0A= bluefish-2.0.0_2 HTML editor designed for the experienced web designer=0A= boehm-gc-7.1 Garbage collection and memory leak detection for C = and C++=0A= boost-jam-1.43.0 Build tool from the boost.org=0A= boost-libs-1.43.0_1 Free portable C++ libraries (without Boost.Python)=0A= brasero-2.30.2_2 CD/DVD mastering tool for the GNOME desktop=0A= bug-buddy-2.30.0_2 A bug reporting tool for GNOME 2=0A= ca_root_nss-3.12.6 The root certificate bundle from the Mozilla Project=0A= cabextract-1.3 A program to extract Microsoft cabinet (.CAB) files=0A= cairo-1.10.0_3,1 Vector graphics library with cross-device output = support=0A= cairomm-1.9.6 C++ interface to cairo=0A= ccsm-0.8.4_3 A Python/GTK based settings manager for CompizConfig=0A= cdparanoia-3.9.8_8 A CDDA extraction tool (also known as ripper)=0A= cdrdao-1.2.3_1 Record CD-R[W]s in disk-at-once mode=0A= cdrtools-3.00_1 CD/DVD/BluRay and ISO-9660 image creation and = extraction to=0A= celt-0.7.0_1 The CELT ultra-low delay audio codec=0A= cheese-2.30.1_3 A Photobooth-inspired app for taking pictures and = videos fr=0A= clutter-1.2.12 OpenGL based interactive canvas library=0A= clutter-gtk-0.10.4_1 GTK+ Integration library for Clutter=0A= cm-super-0.3.4_3 Computer Modern Font Families in Type 1 Fonts=0A= cmake-2.8.3 A cross-platform Makefile generator=0A= cmpsfont-1.0_6 Computer Modern PostScript Fonts (Adobe Type 1 = format)=0A= compat4x-i386-5.3_9 A convenience package to install the compat4x = libraries=0A= compat5x-i386-5.4.0.8.1_1 A convenience package to install the compat5x = libraries=0A= compat6x-i386-6.4.604000.200810_3 A convenience package to install the = compat6x libraries=0A= compat7x-i386-7.3.703000.201008_1 A convenience package to install the = compat7x libraries=0A= compiz-0.8.4_4 Compiz Composite/Window Manager=0A= compiz-bcop-0.8.4 Code generator for Compiz Fusion Plugins=0A= compiz-fusion-0.8.4_2 Metaport of compiz-fusion=0A= compiz-plugins-extra-0.8.4_3 Plugins for Compiz Composite Window Manager=0A= compiz-plugins-main-0.8.4_3 Plugins for Compiz Composite Window Manager=0A= compizconfig-backend-gconf-0.8.4_2 The gconf backend for CompizConfig=0A= compizconfig-python-0.8.4_2 Python bindings for the compizconfig library=0A= compositeproto-0.4.1 Composite extension headers=0A= consolekit-0.4.2 Framework for defining and tracking users=0A= coreutils-8.5 The Free Software Foundation's core utilities=0A= cups-base-1.4.5_1 Common UNIX Printing System: Server=0A= cups-client-1.4.5 Common UNIX Printing System: Library cups=0A= cups-image-1.4.5 Common UNIX Printing System: Library cupsimage=0A= cups-pstoraster-8.15.4_6 Postscript interpreter for CUPS printing to = non-PS printers=0A= curl-7.21.1 Non-interactive tool to get files from FTP, GOPHER, = HTTP(S)=0A= cuse4bsd-kmod-0.1.13 Cuse4BSD character device loopback driver for = userspace=0A= cvsup-without-gui-16.1h_4 File distribution system optimized for CVS = (non-GUI version=0A= cyrus-sasl-2.1.23 RFC 2222 SASL (Simple Authentication and Security = Layer)=0A= damageproto-1.2.0 Damage extension headers=0A= dasher-4.10.1_4,2 Information efficient text-entry interface=0A= db41-4.1.25_4 The Berkeley DB package, revision 4.1=0A= db42-4.2.52_5 The Berkeley DB package, revision 4.2=0A= db45-4.5.20.2 The Berkeley DB package, revision 4.5=0A= dbus-1.4.0 A message bus system for inter-application = communication=0A= dbus-glib-0.88 GLib bindings for the D-BUS messaging system=0A= dejavu-2.32 Bitstream Vera Fonts clone with a wider range of = characters=0A= deskbar-applet-2.30.1_1 Omnipresent versatile search interface=0A= desktop-file-utils-0.15_2 A couple of command line utilities for working = with desktop=0A= dev86-0.16.17 Robert de Bath's 8086 development tools=0A= djvulibre-nox11-3.5.23 DjVu base libraries and utilities=0A= dmidecode-2.10 A tool for dumping DMI (SMBIOS) contents in = human-readable =0A= dmxproto-2.3 DMX extension headers=0A= docbook-1.4 Meta-port for the different versions of the DocBook = DTD=0A= docbook-4.1_4 V4.1 of the DocBook DTD, designed for technical = documentati=0A= docbook-4.2 V4.2 of the DocBook DTD, designed for technical = documentati=0A= docbook-4.3 DocBook/SGML DTD V4.3, designed for technical = documentation=0A= docbook-4.4_2 DocBook/SGML DTD V4.4, designed for technical = documentation=0A= docbook-4.5_2 DocBook/SGML DTD V4.5, designed for technical = documentation=0A= docbook-5.0_1 DocBook 5.0, designed for technical documentation=0A= docbook-sk-4.1.2_4 XML version of the DocBook DTD version controlled = for Scrol=0A= docbook-utils-0.6.14_10 Generates various output formats from DocBook = SGML document=0A= docbook-xml-4.2_1 XML version of the DocBook DTD=0A= docbook-xml-4.3 DocBook/XML DTD V4.3, designed for technical = documentation=0A= docbook-xml-4.4_1 DocBook/XML DTD V4.4, designed for technical = documentation=0A= docbook-xml-4.5 DocBook/XML DTD V4.5, designed for technical = documentation=0A= docbook-xsl-1.75.2_1 XSL DocBook stylesheets=0A= docproj-jadetex-1.17_4 The "meta-port" for the FreeBSD Documentation = Project=0A= doxygen-1.7.2 A documentation system for C, C++ and other languages=0A= dpkg-1.14.30 Debian package maintenance system=0A= dri-7.4.4,2 OpenGL hardware acceleration drivers for the DRI=0A= dri2proto-2.2 DRI2 prototype headers=0A= dsssl-docbook-modular-1.79_1,1 DSSSL stylesheets for the DocBook DTD by = Norman Walsh=0A= dvd+rw-tools-7.1 DVD burning software=0A= dvipdfmx-20100328 Dvipdfm with Asian languages by CID-keyed font = technology s=0A= dvipsk-tetex-5.95a_5 Convert a TeX DVI file to PostScript=0A= eggdbus-0.6_1 D-Bus bindings for GObject=0A= ekiga3-3.2.6_5 VoIP and video conferencing application=0A= emerald-0.8.4_4 Emerald Window Decorator=0A= emerald-themes-0.5.2 Themes for the Emerald Window Decorator=0A= emesene-1.6.3 A MSN Messenger client writen in python=0A= empathy-2.30.2 GNOME IM client based around telepathy=0A= en-freebsd-doc-20100926 Documentation from the FreeBSD Documentation = Project=0A= enchant-1.6.0 Dictionary/spellchecking framework=0A= encodings-1.0.3,1 X.Org Encoding fonts=0A= enscript-a4-1.6.4_3 ASCII to PostScript filter=0A= eog-2.30.2 The Eye Of Gnome image viewer=0A= epiphany-2.30.2_1 An extremely lightweight and simple web browser for = GNOME 2=0A= esound-0.2.41 A sound library for enlightenment package=0A= eva-0.4.1_9 QQ IM Client for KDE3=0A= evince-2.30.3_2 GNOME 2 multi-format document viewer=0A= evolution-2.30.3 An integrated mail, calendar and address book = distributed s=0A= evolution-data-server-2.30.3 The data backends for the Evolution = integrated mail/PIM sui=0A= evolution-exchange-2.30.3 Evolution plugin to connect to Microsoft = Exchange servers=0A= evolution-mapi-0.30.3 Evolution plugin to connect to Microsoft Exchange = servers=0A= evolution-webcal-2.28.1_1 Webcal(endar) handler for gnome=0A= exempi-2.1.1 A port of Adobe XMP SDK to work on UNIX=0A= expat-2.0.1_1 XML 1.0 parser written in C=0A= ezm3-1.2_1 Easier, more portable Modula-3 distribution for = building CV=0A= faad2-2.7_3,1 MPEG-2 and MPEG-4 AAC audio decoder=0A= farsight2-0.0.21 Collection of GStreamer modules and libraries for = videoconf=0A= ffmpeg-0.6.1,1 Realtime audio/video encoder/converter and streaming = server=0A= fftw3-3.2.2_1 Fast C routines to compute the Discrete Fourier = Transform=0A= file-roller-2.30.2,1 An archive manager for zip files, tar, etc=0A= firefox-3.6.12,1 Web browser based on the browser portion of Mozilla=0A= firefox-i18n-3.6.12 Localized interface for Firefox 3.6=0A= fixesproto-4.1.1 Fixes extension headers=0A= fixrtf-0.1.20060303_1 A patch making it possible to embed PNGs into RTFs=0A= flac-1.2.1_2 Free lossless audio codec=0A= flex-2.5.35_4 Fast lexical analyzer generator=0A= fluxbox-1.1.1_2 A small and fast window manager based on BlackBox=0A= fluxconf-0.9.9_6 A configuration program for the fluxbox window = manager=0A= font-adobe-100dpi-1.0.1 X.Org Adobe 100dpi font=0A= font-adobe-75dpi-1.0.1 X.Org Adobe 75dpi font=0A= font-adobe-utopia-100dpi-1.0.2 X.Org Adobe Utopia 100dpi font=0A= font-adobe-utopia-75dpi-1.0.2 X.Org Adobe Utopia 75dpi font=0A= font-adobe-utopia-type1-1.0.2 X.Org Adobe Utopia Type1 font=0A= font-alias-1.0.2 X.Org Font aliases=0A= font-arabic-misc-1.0.1 X.Org miscellaneous Arabic fonts=0A= font-bh-100dpi-1.0.1 X.Org Bigelow Holmes 100dpi font=0A= font-bh-75dpi-1.0.1 X.Org Bigelow Holmes 75dpi font=0A= font-bh-lucidatypewriter-100dpi-1.0.1 X.Org Bigelow Holmes Lucida = TypeWriter 100dpi font=0A= font-bh-lucidatypewriter-75dpi-1.0.1 X.Org Bigelow Holmes Lucida = TypeWriter 75dpi font=0A= font-bh-ttf-1.0.1 X.Org Bigelow & Holmes TTF font=0A= font-bh-type1-1.0.1 X.Org Bigelow Holmes Type1 font=0A= font-bitstream-100dpi-1.0.1 X.Org Bitstream Vera 100dpi font=0A= font-bitstream-75dpi-1.0.1 X.Org Bitstream Vera 75dpi font=0A= font-bitstream-type1-1.0.1 X.Org Bitstream Vera Type1 font=0A= font-cronyx-cyrillic-1.0.1 X.Org Cronyx Cyrillic font=0A= font-cursor-misc-1.0.1 X.Org miscellaneous Cursor fonts=0A= font-daewoo-misc-1.0.1 X.Org miscellaneous Daewoo fonts=0A= font-dec-misc-1.0.1 X.Org miscellaneous Dec fonts=0A= font-ibm-type1-1.0.1 X.Org IBM Type1 font=0A= font-isas-misc-1.0.1 X.Org miscellaneous ISAS fonts=0A= font-jis-misc-1.0.1 X.Org miscellaneous JIS fonts=0A= font-micro-misc-1.0.1 X.Org miscellaneous Micro fonts=0A= font-misc-cyrillic-1.0.1 X.Org miscellaneous Cyrillic font=0A= font-misc-ethiopic-1.0.1 X.Org miscellaneous Ethiopic font=0A= font-misc-meltho-1.0.1 X.Org miscellaneous Meltho font=0A= font-misc-misc-1.1.0 X.Org miscellaneous Misc fonts=0A= font-mutt-misc-1.0.1 X.Org miscellaneous Mutt fonts=0A= font-schumacher-misc-1.1.0 X.Org miscellaneous Schumacher fonts=0A= font-screen-cyrillic-1.0.2 X.Org Screen Cyrillic font=0A= font-sony-misc-1.0.1 X.Org miscellaneous Sony fonts=0A= font-sun-misc-1.0.1 X.Org miscellaneous Sun fonts=0A= font-util-1.0.2 Create an index of X font files in a directory=0A= font-winitzki-cyrillic-1.0.1 X.Org Winitzki Cyrillic font=0A= font-xfree86-type1-1.0.2 X.Org XFree86 Type1 font=0A= fontcacheproto-0.1.3 Fontcache extension headers=0A= fontconfig-2.8.0,1 An XML-based font configuration API for X Windows=0A= fontsproto-2.1.0 Fonts extension headers=0A= freedesktop-sound-theme-0.7_1 Sound theme based on the FreeDesktop = specification=0A= freetype-1.3.1_4 A free and portable TrueType font rendering engine=0A= freetype-tools-1.3.1_8 Tools for FreeType 1=0A= freetype2-2.4.3 A free and portable TrueType font rendering engine=0A= fribidi-0.19.2_1 A Free Implementation of the Unicode Bidirectional = Algorith=0A= fusefs-kmod-0.3.9.p1.20080208_7 Kernel module for fuse=0A= fusefs-libs-2.7.4 FUSE allows filesystem implementation in userspace=0A= fusefs-ntfs-2010.10.2 Mount NTFS partitions (read/write) and disk images=0A= gamin-0.1.10_4 A file and directory monitoring system=0A= gawk-3.1.7_2 The GNU version of Awk=0A= gcalctool-5.30.2_1,2 A GNOME 2 calculator tool based on the old calctool = for Ope=0A= gccmakedep-1.0.2 Create dependencies in makefiles using 'gcc -M'=0A= gconf-editor-2.30.0_1,1 A gconf database editor for the GNOME 2 = environment=0A= gconf2-2.28.1_1 A configuration database system for GNOME=0A= gd-2.0.35_7,1 A graphics library for fast creation of images=0A= gdbm-1.8.3_3 The GNU database manager=0A= gdk-pixbuf-2.22.1 A graphic library for GTK+=0A= gdm-2.30.5_1 GNOME 2 version of xdm display manager=0A= gedit-2.30.3 A small but powerful text editor for GNOME 2 Desktop = Enviro=0A= gegl-0.1.2_1 A graph based image processing framework=0A= getopt-1.1.4_2 A getopt(1) replacement that supports GNU-style long = option=0A= gettext-0.18.1.1 GNU gettext package=0A= ggz-client-libs-0.0.14.1_2 The GGZ Gaming Zone - Core Client Libraries=0A= ghostscript8-8.71_6 Ghostscript 8.x PostScript interpreter=0A= gimp-2.6.10,2 The "meta-port" for The Gimp=0A= gimp-app-2.6.10,1 A GNU Image Manipulation Program=0A= gimp-gutenprint-5.2.4_2 GutenPrint Printer Driver=0A= gimp-help-html-2.6.0 The meta port for GIMP User Manual=0A= gio-fam-backend-2.26.1 FAM backend for GLib's GIO library=0A= gir-repository-gconf2-0.6.5_4 Introspection information for gconf2=0A= gir-repository-libsoup-0.6.5_4 Introspection information for libsoup=0A= gle-3.1.0_2 A GL Tubing and Extrusion Library=0A= glib-2.26.1 Some useful routines of C programming (current = stable versi=0A= glibmm-2.25.5,1 C++ interfaces for glib2=0A= glitz-0.5.6_2 OpenGL image compositing library=0A= glproto-1.4.11 GLX extension headers=0A= gmake-3.81_4 GNU version of 'make' utility=0A= gmime-2.2.24 Library (written in C) for parsing and creating = messages us=0A= gmime-24-2.4.15 Library (written in C) for parsing and creating = messages us=0A= gmp-5.0.1 A free library for arbitrary precision arithmetic=0A= gnome-applets-2.30.0_3 Applets components for the GNOME 2 Desktop = Environment=0A= gnome-audio-2.22.2 Sound files for use with GNOME 2=0A= gnome-backgrounds-2.32.0 A collection of backgrounds for GNOME 2=0A= gnome-control-center-2.30.1_2 Control center for GNOME 2 project=0A= gnome-cups-manager-0.31_13,1 Admistration tool for cups=0A= gnome-desktop-2.30.2 Additional UI API for GNOME 2=0A= gnome-devel-docs-2.32.0 Documents targeted for GNOME developers=0A= gnome-doc-utils-0.20.2 GNOME doc utils=0A= gnome-games-2.30.2_2 The game applications package for the GNOME 2 = Desktop Envir=0A= gnome-games-extra-data-2.30.0 Themes and artwork for the gnome-games = package=0A= gnome-icon-theme-2.30.3 A collection of icons for the GNOME 2 desktop=0A= gnome-js-common-0.1.2_1 GNOME JavaScript common modules and tests=0A= gnome-keyring-2.30.3_1 A program that keeps passwords and other secrets=0A= gnome-mag-0.16.1_1 GNOME screen magnifier=0A= gnome-media-2.30.0_2 Multimedia applications for the GNOME 2 desktop=0A= gnome-menus-2.30.5 Implementation of the FreeDesktop Desktop Menu Spec=0A= gnome-mime-data-2.18.0_4 A MIME and Application database for GNOME=0A= gnome-mount-0.8_7 A front-end to mount, umount, and eject using HAL=0A= gnome-mplayer-0.9.9.2_1 GNOME frontend for MPlayer=0A= gnome-netstatus-2.28.1_1 A GNOME applet that shows network status=0A= gnome-nettool-2.30.0_1,1 A GNOME utility that provides network = information statistic=0A= gnome-packagekit-2.30.3 PackageKit client programs for the GNOME desktop=0A= gnome-panel-2.30.2_1 Panel component for the GNOME 2 Desktop=0A= gnome-power-manager-2.30.1_1 Power management system for the GNOME = Desktop=0A= gnome-screensaver-2.30.0_2 GNOME screen saver and locker=0A= gnome-session-2.30.2_1 Session component for the GNOME 2 desktop=0A= gnome-settings-daemon-2.30.2 GNOME 2 settings daemon=0A= gnome-speech-0.4.25 GNOME text-to-speech API=0A= gnome-spell-1.0.8_6 A GNOME/Bonobo component for spell checking=0A= gnome-system-monitor-2.28.1_1 GNOME 2 system monitor program=0A= gnome-system-tools-2.30.2 Tools to configure workstations=0A= gnome-terminal-2.30.2 Terminal component for the GNOME 2 Desktop=0A= gnome-themes-2.30.2 A collection of themes and icons for GNOME2=0A= gnome-themes-extras-2.22.0_8 More themes for the GNOME 2 desktop = environment=0A= gnome-user-docs-2.32.0 GNOME 2 users guide=0A= gnome-user-share-2.30.0_2 Personal file-sharing service for the GNOME = Desktop=0A= gnome-utils-2.30.0_1,1 GNOME 2 support utilities=0A= gnome-vfs-2.24.3_1 GNOME Virtual File System=0A= gnome2-2.30.2 The "meta-port" for the GNOME 2 integrated X11 = desktop=0A= gnome2-fifth-toe-2.30.2 Additional GNOME 2 applications not included in = the core de=0A= gnome_subr-1.0 Common startup and shutdown subroutines used by = GNOME scrip=0A= gnomehier-2.3_12 A utility port that creates the GNOME directory tree=0A= gnomeicu-0.99.14_7 GNOME 2 ICQ client=0A= gnumeric-1.10.10 The GNOME 2 spreadsheet=0A= gnupg-2.0.16_2 The GNU Privacy Guard=0A= gnutls-2.8.6_2 GNU Transport Layer Security library=0A= gobject-introspection-0.9.12 Generate interface introspection data for = GObject libraries=0A= goffice-0.8.10 GLib/GTK+ set of document centric objects and = utilities=0A= gok-2.30.0_1,1 GNOME On-Screen Keyboard (GOK)=0A= gossip-0.31_5 GTK2 Jabber Instant Messaging client=0A= gpac-libgpac-0.4.5_4,1 Gpac MPEG-4 Systems library and headers=0A= gperf-3.0.3 Generates perfect hash functions for sets of keywords=0A= gpgme-1.3.0 A library to make access to GnuPG easier=0A= graphviz-2.26.3_3 Graph Visualization Software from AT&T and Bell Labs=0A= gsed-4.2.1_2 The GNU stream editor=0A= gsfonts-8.11_5 Standard Fonts for Ghostscript=0A= gsl-1.14 The GNU Scientific Library - mathematical libs=0A= gsm-1.0.13 Audio converter and library for converting u-law to = gsm enc=0A= gsoap-2.7.15 Generator Tools for Coding SOAP/XML Web Services in = C and C=0A= gstreamer-0.10.30 Development framework for creating media applications=0A= gstreamer-ffmpeg-0.10.11_1 GStreamer plug-in for manipulating MPEG video = streams=0A= gstreamer-plugins-0.10.30,3 GStreamer written collection of plugins = handling several me=0A= gstreamer-plugins-a52dec-0.10.16,3 Gstreamer ATSC A/52 stream aka AC-3 = (dvd audio) plugin=0A= gstreamer-plugins-bad-0.10.20,3 Bad gstreamer-plugins=0A= gstreamer-plugins-cdparanoia-0.10.30,3 Gstreamer CDDA extraction (aka = audio ripping) plugin=0A= gstreamer-plugins-core-0.10_12 Core set of typical audio and video = gstreamer-plugins=0A= gstreamer-plugins-dts-0.10.20,3 Gstreamer dts plugin=0A= gstreamer-plugins-dvd-0.10.16,3 Gstreamer dvd plugin set=0A= gstreamer-plugins-flac-0.10.25,3 Gstreamer free lossless audio = encoder/decoder plugin=0A= gstreamer-plugins-gconf-0.10.25,3 Gstreamer gconf plugin=0A= gstreamer-plugins-gio-0.10.30,3 Gstreamer gio (Glib I/O) plugin=0A= gstreamer-plugins-gnomevfs-0.10.30,3 Gstreamer gnomevfs plugin=0A= gstreamer-plugins-good-0.10.25,3 Good gstreamer-plugins=0A= gstreamer-plugins-hal-0.10.25,3 Gstreamer hal plugin=0A= gstreamer-plugins-jpeg-0.10.25,3 Gstreamer jpeg encoder/decoder plugin=0A= gstreamer-plugins-libpng-0.10.25,3 Gstreamer png plugin=0A= gstreamer-plugins-mad-0.10.16,3 Gstreamer mp3 decoder plugin=0A= gstreamer-plugins-mp3-0.10.0_1 Gstreamer Plugins Mp3 decoder meta-port=0A= gstreamer-plugins-mpeg2dec-0.10.16,3 Gstreamer mpeg decode plugin=0A= gstreamer-plugins-ogg-0.10.30,3 Gstreamer Ogg bitstream plugin=0A= gstreamer-plugins-pango-0.10.30,3 Gstreamer pango textoverlay plugin=0A= gstreamer-plugins-soup-0.10.25,3 Gstreamer soup http src plugin=0A= gstreamer-plugins-theora-0.10.30,3 Gstreamer theora plugin=0A= gstreamer-plugins-ugly-0.10.16,3 Ugly gstreamer-plugins=0A= gstreamer-plugins-v4l2-0.10.25,3 Gstreamer Video 4 Linux 2 source plugin=0A= gstreamer-plugins-vorbis-0.10.30,3 Gstreamer vorbis encoder/decoder = plugin=0A= gstreamer-plugins-xvid-0.10.20,3 Gstreamer xvid plugin=0A= gtar-1.23_3 GNU version of the traditional tape archiver=0A= gthumb-2.10.12_1 An image viewer and browser for the GNOME 2 = environment=0A= gtk-doc-1.15 Code documentation system, originally for GTK+=0A= gtk-engines2-2.20.1_1 Theme engine for the GTK+-2.0 toolkit=0A= gtk-vnc-0.3.10_3 VNC viewer widget for GTK+=0A= gtk-xfce-engine-2.6.0_3 An XFCE engine for GTK 2.0=0A= gtkglext-1.2.0_8 An OpenGL extension to GTK=0A= gtkhtml3-3.30.3 Lightweight HTML rendering/printing/editing engine=0A= gtkimageview-1.6.4_2 Simple image viewer widget=0A= gtksourceview-1.8.5_7 A text widget that adds syntax highlighting to the = GtkTextV=0A= gtksourceview2-2.10.4 A text widget that adds syntax highlighting to the = GtkTextV=0A= gtkspell-2.0.16_3 A GTK+ 2 spell checking component=0A= gucharmap-2.30.2 A Unicode/ISO10646 character map and font viewer=0A= guile-1.8.6_5 GNU Ubiquitous Intelligent Language for Extension=0A= gutenprint-base-5.2.4_2 GutenPrint Printer Driver=0A= gvfs-1.6.3_1 GNOME virtual file system=0A= hal-0.5.14_10 Hardware Abstraction Layer for simplifying device = access=0A= hal-info-20091130 Additional FDI files to further classify HAL devices=0A= hamster-applet-2.30.2_2 Time management applet for the GNOME Desktop=0A= help2man-1.38.2_1 Automatically generating simple manual pages from = program o=0A= hicolor-icon-theme-0.12 A high-color icon theme shell from the = FreeDesktop project=0A= html-4.01_2 All W3C published SGML DTDs for HTML=0A= html2text-1.3.2a Converts HTML documents into plain text=0A= ibus-1.3.8 Intelligent Input Bus for Linux / Unix OS=0A= ibus-qt-1.3.0 IBus input method module for Qt4=0A= iceauth-1.0.3 ICE authority file utility for X=0A= icon-naming-utils-0.8.90 Utilities of the Tango project=0A= icons-tango-0.8.90_1 A basic set of icons for the most common usage=0A= icons-tango-extras-0.1.0_4 A extra set of icons from the Tango project=0A= icu-3.8.1_3 International Components for Unicode (from IBM)=0A= ilmbase-1.0.1_1 ILM Base libraries a.k.a. Half, IlmThread, Imath and = Iex=0A= imake-1.0.3,1 Imake and other utilities from X.Org=0A= imlib2-1.4.1.000_9,2 The next generation graphics library for = Enlightenment=0A= inkscape-0.47_8 A program seeks to become a full featured open = source SVG e=0A= inputproto-2.0 Input extension headers=0A= intltool-0.41.1 Tools to internationalize various kinds of data files=0A= iso-codes-3.22 Lists of the country, language and currency iso names=0A= iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML)=0A= jackit-0.118.0 A low-latency audio server=0A= jade-1.2.1_9 An object-oriented SGML/XML parser toolkit and DSSSL = engine=0A= jadetex-3.13_6 A TeX backend for Jade, for typesetting SGML = documents=0A= jasper-1.900.1_9 An implementation of the codec specified in the = JPEG-2000 s=0A= jbig2dec-0.11 Decoder implementation of the JBIG2 image = compression forma=0A= jbigkit-1.6 Lossless compression for bi-level images such as = scanned pa=0A= jpeg-8_3 IJG's jpeg compression utilities=0A= json-glib-0.12.0 JSON (RFC 4627) interface for Glib=0A= kBuild-0.1.5.p2_1 Makefile framework=0A= kbproto-1.0.4 KB extension headers=0A= kdehier-1.0_11 Utility port which installs a hierarchy of shared = KDE direc=0A= kdehier4-1.0.6 Utility port that creates hierarchy of shared KDE4 = director=0A= kdelibs-3.5.10_6 Base set of libraries needed by KDE programs=0A= lame-3.98.4 Fast MP3 encoder kit=0A= latex-cjk-4.8.2_4 A LaTeX2e macro package which enables the use of CJK = script=0A= lcms-1.19_1,1 Light Color Management System -- a color management = library=0A= libFS-1.0.2 The FS library=0A= libGL-7.4.4 OpenGL library that renders using GLX or DRI=0A= libGLU-7.4.4 OpenGL utility library=0A= libICE-1.0.6,1 Inter Client Exchange library for X11=0A= libIDL-0.8.14_1 A library for creating trees of CORBA IDL files=0A= libSM-1.1.1_3,1 Session Management library for X11=0A= libX11-1.3.3_1,1 X11 library=0A= libXScrnSaver-1.2.0 The XScrnSaver library=0A= libXTrap-1.0.0 The XTrap library=0A= libXau-1.0.5 Authentication Protocol library for X11=0A= libXaw-1.0.7,1 X Athena Widgets library=0A= libXcomposite-0.4.1,1 X Composite extension library=0A= libXcursor-1.1.10 X client-side cursor loading library=0A= libXdamage-1.1.2 X Damage extension library=0A= libXdmcp-1.0.3 X Display Manager Control Protocol library=0A= libXevie-1.0.2 The Xevie library=0A= libXext-1.1.1,1 X11 Extension library=0A= libXfixes-4.0.4 X Fixes extension library=0A= libXfont-1.4.0,1 X font libary=0A= libXfontcache-1.0.5 The Xfontcache library=0A= libXft-2.1.14 A client-sided font API for X applications=0A= libXi-1.3,1 X Input extension library=0A= libXinerama-1.1,1 X11 Xinerama library=0A= libXmu-1.0.5,1 X Miscellaneous Utilities libraries=0A= libXp-1.0.0,1 X print library=0A= libXpm-3.5.7 X Pixmap library=0A= libXrandr-1.3.0 X Resize and Rotate extension library=0A= libXrender-0.9.5 X Render extension library=0A= libXres-1.0.4 X Resource usage library=0A= libXt-1.0.7 X Toolkit library=0A= libXtst-1.1.0 X Test extension=0A= libXv-1.0.5,1 X Video Extension library=0A= libXvMC-1.0.5 X Video Extension Motion Compensation library=0A= libXxf86dga-1.1.1 X DGA Extension=0A= libXxf86misc-1.0.2 X XF86-Misc Extension=0A= libXxf86vm-1.1.0 X Vidmode Extension=0A= liba52-0.7.4_2 A free library for decoding ATSC A/52 streams, aka = AC-3=0A= libao-1.0.0 Portable audio output library=0A= libart_lgpl-2.3.21,1 Library for high-performance 2D graphics=0A= libassuan-2.0.0 IPC library used by GnuPG and gpgme=0A= libaudiofile-0.2.7 A sound library for SGI audio file=0A= libbonobo-2.32.0 A component and compound document system for GNOME2=0A= libbonoboui-2.24.3_1 GUI frontend to the libbonobo component of GNOME 2=0A= libburn-0.6.8 Libburnia library to read/write optical discs=0A= libcanberra-0.25 Implementation of the Freedesktop sound theme spec=0A= libcddb-1.3.2_1 A library to access data on a CDDB server=0A= libcdio-0.82_1 Compact Disc Input and Control Library=0A= libchamplain-0.4.6_1 A C library aimed to provide a Gtk+ widget to = display raste=0A= libcheck-0.9.8 A unit test framework for C=0A= libcompizconfig-0.8.4_4 An alternative configuration system for Compiz=0A= libcroco-0.6.2_1 CSS2 parsing library=0A= libdaemon-0.14 Lightweight C library that eases the writing of UNIX = daemon=0A= libdca-0.0.5 Free DTS Coherent Acoustics decoder=0A= libdiscid-0.2.2 A library for creating MusicBrainz DiscIDs=0A= libdmx-1.1.0 DMX extension library=0A= libdnet-1.11_3 A simple interface to low level networking routines=0A= libdrm-2.4.12_1 Userspace interface to kernel Direct Rendering = Module servi=0A= libdvdcss-1.2.10_1 Portable abstraction library for DVD decryption=0A= libdvdnav-4.1.4.r1217_1 MPlayer version of the libdvdnav project=0A= libdvdread-4.1.4.r1217_1 MPlayer version of the libdvdread project=0A= libdynamite-0.1.1 Decompress data compressed with PKWARE Data = Compression Lib=0A= libexecinfo-1.1_3 A library for inspecting program's backtrace=0A= libexif-0.6.18_1 Library to read digital camera file meta-data=0A= libexo-0.3.107 Terminal library, extensions to Xfce by os-cillation=0A= libffi-3.0.9 Foreign Function Interface=0A= libfontenc-1.0.5 The fontenc Library=0A= libfpx-1.2.0.12_1 Library routines for working with Flashpix images=0A= libgail-gnome-1.20.3 An implementation of the ATK interfaces for GNOME = widgets=0A= libgcrypt-1.4.6 General purpose crypto library based on code used in = GnuPG=0A= libgda4-4.0.9 Provides uniform access to different kinds of data = sources=0A= libgdata-0.6.4_1 GLib based implimentation of the GData protocol=0A= libggz-0.0.14.1_7 The GGZ Gaming Zone - Base Library=0A= libgksu-1.3.8_3 Library providing su and sudo functionality=0A= libgksuui-1.0.7_6 A graphical fronted to su library=0A= libglade2-2.6.4_3 GNOME glade library=0A= libglut-7.4.4 OpenGL utility toolkit=0A= libgnome-2.30.0_1 Libraries for GNOME, a GNU desktop environment=0A= libgnome-keyring-2.30.1_2 A program that keeps passwords and other = secrets=0A= libgnomecanvas-2.30.1_1 A graphics library for GNOME=0A= libgnomecups-0.2.3_4,1 Support library for gnome cups admistration=0A= libgnomekbd-2.30.2 GNOME keyboard shared library=0A= libgnomeprint-2.18.8 Gnome print support library=0A= libgnomeprintui-2.18.5_1 Gnome print support library=0A= libgnomesu-1.0.0_9 Library and frontend for running commands as root=0A= libgnomeui-2.24.3_2 Libraries for the GNOME GUI, a GNU desktop = environment=0A= libgpg-error-1.10 Common error values for all GnuPG components=0A= libgphoto2-2.4.10.1 A universal digital camera picture control tool=0A= libgpod-0.7.2_4 A library for direct access of iPod contents=0A= libgsf-1.14.18_1 An extensible i/o abstraction for dealing with = structured f=0A= libgsf-gnome-1.14.18 A GNOME wrapper for libgsf=0A= libgtkhtml-2.11.1_5 Lightweight HTML rendering/printing/editing engine=0A= libgtop-2.28.1_3 GNOME 2 top library=0A= libgweather-2.30.2_1 Library to accessing online weather informations=0A= libical-0.44 An implementation of the IETF's Calendaring and = Scheduling =0A= libiconv-1.13.1_1 A character set conversion library=0A= libid3tag-0.15.1b ID3 tags library (part of MAD project)=0A= libidn-1.16 Internationalized Domain Names command line tool=0A= libirman-0.4.4 Library for Evation's Irman infrared reciever=0A= libisofs-0.6.20 Libburnia ISO9660 filesystem creation library=0A= libksba-1.0.8 KSBA is an X.509 Library=0A= liblqr-1-0.4.1_2 An easy to use C/C++ seam carving library=0A= libltdl-2.2.10 System independent dlopen wrapper=0A= libmad-0.15.1b_2 Libmad library (part of MAD project)=0A= libmapi-0.9_2 Open Source implementation of Microsoft Exchange = protocols=0A= libmikmod-esound-3.1.11_2 MikMod Sound Library=0A= libmng-1.0.10_2 Multiple-image Network Graphics (MNG) reference = library=0A= libmpeg2-0.5.1 A free library for decoding mpeg-2 and mpeg-1 video = streams=0A= libmspack-0.2_1 A library for Microsoft compression formats=0A= libmtp-1.0.3 Media Transfer Protocol (MTP) library=0A= libmusicbrainz-2.1.5 2nd generation incarnation of the CD Index - audio = metadata=0A= libmusicbrainz3-3.0.3 MusicBrainz client library for audio metadata = lookup=0A= libnice-0.0.13 Library and transmitter that implements ICE-19=0A= libnotify-0.4.5_4 A library for desktop notifications=0A= libogg-1.2.0,4 Ogg bitstream library=0A= liboil-0.3.17 Library of optimized inner loops=0A= liboldX-1.0.1 Old X library=0A= liboobs-2.32.0 Wrapping library to the System Tools Backends=0A= libopenraw-0.0.8_3 Library for camera RAW files decoding=0A= liborange-0.4 Library to extract CAB files from self-extracting = installer=0A= libpaper-1.1.24 A library providing routines for paper size = management=0A= libpciaccess-0.12.0 Generic PCI access library=0A= libproxy-0.2.3_1 Library that provides automatic proxy configuration = managem=0A= libpthread-stubs-0.3_3 This library provides weak aliases for pthread = functions=0A= libpurple-2.7.5 Backend library for the Pidgin multi-protocol = messaging cli=0A= librep-0.90.2_2 An Emacs Lisp like runtime library=0A= librsvg2-2.26.3_1 Library for parsing and rendering SVG vector-graphic = files=0A= libsamplerate-0.1.7_1 Secret Rabbit Code: a Sample Rate Converter for = audio=0A= libsexy-0.1.11_5 Extension widgets for GTK+=0A= libsigc++-2.2.8 Callback Framework for C++=0A= libsigsegv-2.8 Handling page faults in user mode=0A= libsndfile-1.0.23 Reading and writing files containing sampled sound = (like WA=0A= libsoup-2.30.2_1 A SOAP (Simple Object Access Protocol) = implementation in C=0A= libspectre-0.2.6 A small library for rendering Postscript documents=0A= libspiro-20071029 Library to convert clothoid splines into bezier = splines=0A= libtasn1-2.8 ASN.1 structure parser library=0A= libtelepathy-0.3.3_1 Flexible Communications Framework=0A= libtext-charwidth-perl-0.04 Documentation gettext tools=0A= libtext-wrapi18n-perl-0.06 Documentation gettext tools=0A= libthai-0.1.5_4 Thai language support library=0A= libtheora-1.1.1_2 Theora video codec for the Ogg multimedia streaming = system=0A= libtool-2.2.10 Generic shared library support script=0A= libublio-20070103 User space caching library=0A= libungif-4.1.4_5 Tools and library routines for working with GIF = images=0A= libutempter-1.1.5_1 Interface to record user sessions to utmp and wtmp = files=0A= libv4l-0.8.1 Video4Linux library=0A= libvdpau-0.4.1 VDPAU wrapper and tracing library=0A= libvolume_id-0.81.1 Library to provide file system type information=0A= libvorbis-1.3.1,3 Audio compression codec library=0A= libvpx-0.9.5 VP8 Codec SDK=0A= libwmf-0.2.8.4_6 Tools and library for converting Microsoft WMF = (windows met=0A= libwnck-2.30.3 Library used for writing pagers and taskslists=0A= libwpd-0.8.14_3 Tools for importing and exporting WordPerfect(tm) = documents=0A= libwpg-0.1.3_5 Library for importing and converting Corel = WordPerfect(tm) =0A= libwww-5.4.0_4 The W3C Reference Library=0A= libxcb-1.7 The X protocol C-language Binding (XCB) library=0A= libxdg-basedir-1.1.0 An implementation of the XDG Base Directory = specification=0A= libxfce4gui-4.6.4 XFce 4 widget library required by xfce4 and xfwm4=0A= libxfce4menu-4.6.2 XFce 4 library for a freedesktop.org compliant menu = impleme=0A= libxfce4util-4.6.2 XFce 4 library with non-graphical helper functions=0A= libxkbfile-1.0.6 XKB file library=0A= libxkbui-1.0.2_1 The xkbui library=0A= libxklavier-5.0,1 An utility library to make XKB stuff easier=0A= libxml++-2.32.0 XML API for C++=0A= libxml-1.8.17_4 XML parser library for GNOME=0A= libxml2-2.7.7 XML parser library for GNOME=0A= libxslt-1.1.26_2 The XSLT C library for GNOME=0A= libxul-1.9.2.12 Mozilla runtime package that can be used to = bootstrap XUL+X=0A= liferea-1.6.5 Simple RSS/RDF feed reader=0A= links-0.98,1 Lynx-like text WWW browser=0A= linux-f10-alsa-lib-1.0.21_1 The Advanced Linux Sound Architecture = libraries (Linux Fedo=0A= linux-f10-aspell-0.60.6 Spelling checker with better logic than ispell = (Linux Fedor=0A= linux-f10-atk-1.24.0 Accessibility Toolkit, Linux/i386 binary (Linux = Fedora 10)=0A= linux-f10-cairo-1.8.0_1 Vector graphics library Cairo (Linux Fedora 10)=0A= linux-f10-curl-7.19.6_1 The command line tool for transferring files = with URL synta=0A= linux-f10-cyrus-sasl2-2.1.22_1 RFC 2222 SASL (Simple Authentication and = Security Layer) (L=0A= linux-f10-dbus-glib-0.76 GLib bindings for D-Bus (Linux Fedora 10)=0A= linux-f10-dbus-libs-1.2.4 Libraries for accessing D-BUS (Linux Fedora 10)=0A= linux-f10-expat-2.0.1 Linux/i386 binary port of Expat XML-parsing = library (Linux =0A= linux-f10-flashplugin-10.1r102.65 Adobe Flash Player NPAPI Plugin=0A= linux-f10-fontconfig-2.6.0 An XML-based font configuration API for X = Windows (Linux Fe=0A= linux-f10-gtk2-2.14.7_2 GTK+ library, version 2.X (Linux Fedora 10)=0A= linux-f10-hicolor-icon-theme-0.5 A high-color icon theme shell from the = FreeDesktop project=0A= linux-f10-jpeg-6b RPM of the JPEG lib (Linux Fedora 10)=0A= linux-f10-libssh2-0.18 The library implementing the SSH2 protocol (Linux = Fedora 10=0A= linux-f10-nas-libs-1.9.1 Runtime libraries for NAS (Linux Fedora 10)=0A= linux-f10-nspr-4.7.6 Netscape Portable Runtime (Linux Fedora 10)=0A= linux-f10-nss-3.12.3.99.3_1 Network Security Services (Linux Fedora 10)=0A= linux-f10-openldap-2.4.12_1 Lightweight Directory Access Protocol = libraries (Linux Fedo=0A= linux-f10-openssl-0.9.8g The OpenSSL toolkit (Linux Fedora 10)=0A= linux-f10-pango-1.22.3_1 The pango library (Linux Fedora 10)=0A= linux-f10-png-1.2.37_1 RPM of the PNG lib (Linux Fedora 10)=0A= linux-f10-sqlite3-3.5.9_1 The library that implements an embeddable SQL = database engi=0A= linux-f10-tiff-3.8.2 The TIFF library, Linux/i386 binary (Linux Fedora = 10)=0A= linux-f10-xorg-libs-7.4_1 Xorg libraries (Linux Fedora 10)=0A= linux-realplayer-10.0.9.809.20070726_1 Linux RealPlayer 10 from = RealNetworks=0A= linux_base-f10-10_3 Base set of packages needed in Linux mode for = i386/amd64 (L=0A= linuxdoc-1.1_1 The Linuxdoc SGML DTD=0A= lirc-0.8.0_2 Linux Infared Remote Control=0A= localedata-5.4 Legacy locale data for FreeBSD 6+=0A= loudmouth-1.4.3_3 Lightweight Jabber client library=0A= lsof-4.84A,5 Lists information about open files (similar to = fstat(1))=0A= lua-5.1.4_5 Small, compilable scripting language providing easy = access =0A= luit-1.0.5 Locale and ISO 2022 support for Unicode terminals=0A= lynx-2.8.7.1_1,1 A non-graphical, text-based World-Wide Web client=0A= lzo2-2.04 Portable speedy, lossless data compression library=0A= m4-1.4.15,1 GNU m4=0A= mDNSResponder-214.3.2_1 Apple's mDNSResponder=0A= makedepend-1.0.2,1 A dependency generator for makefiles=0A= meanwhile-1.0.2_2 Open Source implementation of the Lotus Sametime = protocol=0A= metacity-2.30.1_3 A window manager for the adult in you=0A= mkfontdir-1.0.5 Create an index of X font files in a directory=0A= mkfontscale-1.0.7 Creates an index of scalable font files for X=0A= mousepad-0.2.16_7 Simple xfce editor=0A= mousetweaks-2.30.2 Mouse accessibility enhancements for the GNOME = desktop=0A= mpc-0.8.2 Library of complex numbers with arbitrarily high = precision=0A= mpfr-3.0.0 A library for multiple-precision floating-point = computation=0A= mplayer-1.0.r20100717_3 High performance media player supporting many = formats=0A= mplayer-skins-1.1.2_6 Skins for MPlayer's Graphical User Interface (GUI)=0A= multiget-1.1.3_5 An http/ftp downloader with a nice GUI=0A= nas-1.9.2 Network Audio System=0A= nasm-2.08.02,1 General-purpose multi-platform x86 and amd64 = assembler=0A= nautilus-2.30.1_1 File manager for the GNOME desktop=0A= nautilus-open-terminal-0.18_4 Nautilus extension which allows you to = open a terminal=0A= nautilus-sendto-2.28.4_2 Integration between nautilus, evolution, and = pidgin=0A= neon29-0.29.4 An HTTP and WebDAV client library for Unix systems=0A= netpbm-10.26.64_4 A toolkit for conversion of images between different = format=0A= netspeed_applet-0.15.2_4 Applet that shows how much network traffic = occurs on an int=0A= nmap-5.35.d1 Port scanning utility for large networks=0A= notification-daemon-0.4.0_6 Send small notifications to your desktop=0A= nspluginwrapper-1.2.2_7 A compatibility plugin for Netscape 4 (NPAPI) = plugins=0A= nspr-4.8.6 A platform-neutral API for system level and libc = like funct=0A= nss-3.12.8 Libraries to support development of security-enabled = applic=0A= nvidia-driver-256.53 NVidia graphics card binary drivers for hardware = OpenGL ren=0A= nvidia-settings-256.53 Display Control Panel for X NVidia driver=0A= nvidia-xconfig-256.53 Tool to manipulate X configuration files for the = NVidia dri=0A= opal3-3.6.6_9 VoIP abstraction library=0A= open-motif-2.2.3_6 Motif X11 Toolkit (industry standard GUI (IEEE 1295))=0A= openal-soft-1.12.854_1 A software implementation of the OpenAL = specification=0A= openjpeg-1.3_2 An open-source JPEG 2000 codec=0A= openldap-client-2.4.23 Open source LDAP client implementation=0A= orage-4.6.1_6 A calendar application to manage your time with XFce = 4=0A= orc-0.4.11 Library and toolset to operate arrays of data=0A= orca-2.30.2 Scriptable screen reader=0A= p5-Date-Manip-5.56 Perl5 module containing date manipulation routines=0A= p5-ExtUtils-CBuilder-0.2703,1 Compile and link C code for Perl modules=0A= p5-ExtUtils-Depends-0.302 Easily build XS extensions that depend on XS = extensions=0A= p5-ExtUtils-Install-1.54 Perl extension to install files from here to = there=0A= p5-ExtUtils-ParseXS-2.22.03 Converts Perl XS code into C code=0A= p5-ExtUtils-PkgConfig-1.12 Simplistic interface to pkg-config=0A= p5-Glib2-1.223 This module provides access to Glib and GObject = libraries=0A= p5-HTML-Parser-3.68 Perl5 module for parsing HTML documents=0A= p5-HTML-Tagset-3.20 Some useful data table in parsing HTML=0A= p5-HTML-Tree-3.23 A collection of modules to manupulate HTML syntax = trees=0A= p5-Locale-gettext-1.05_3 Message handling functions=0A= p5-Module-Build-0.3607_1 Build and install Perl modules=0A= p5-Net-DBus-0.33.6 Perl extension for the DBus message system=0A= p5-Parse-Pidl-0.02 IDL compiler written in Perl=0A= p5-Parse-Yapp-1.05 Perl extension for generating and using LALR parsers=0A= p5-SGMLSpm-1.03_1 Perl module for postprocessing the output from sgmls = and ns=0A= p5-Term-ReadKey-2.30 A perl5 module for simple terminal control=0A= p5-Test-Harness-3.22 Run perl standard test scripts with statistics=0A= p5-Text-Iconv-1.7 Perl interface to iconv() codeset conversion function=0A= p5-Tie-IxHash-1.22 Perl module implementing ordered in-memory = associative arra=0A= p5-Time-HiRes-1.9721,1 A perl5 module implementing High resolution time, = sleep, an=0A= p5-URI-1.56 Perl5 interface to Uniform Resource Identifier (URI) = refere=0A= p5-XML-DOM-1.44 Perl module for building DOM Level 1 compliant = document str=0A= p5-XML-Filter-BufferText-1.01 Filter to put all characters() in one event=0A= p5-XML-Grove-0.46.a Perl-style XML objects=0A= p5-XML-Handler-YAWriter-0.23 Yet another Perl SAX XML Writer=0A= p5-XML-LibXML-1.70,1 Interface to Gnome libxml2 library=0A= p5-XML-NamespaceSupport-1.11 A simple generic namespace support class=0A= p5-XML-Parser-2.40 Perl extension interface to James Clark's XML = parser, expat=0A= p5-XML-RegExp-0.03 Regular expressions for XML tokens=0A= p5-XML-SAX-0.96 Simple API for XML=0A= p5-XML-SAX-Expat-0.40 Simple API for XML=0A= p5-XML-SAX-Writer-0.53 SAX2 XML Writer=0A= p5-XML-Simple-2.18 Trivial API for reading and writing XML (esp config = files)=0A= p5-XML-Twig-3.37 Process huge XML documents by chunks via a tree = interface=0A= p5-XML-XPath-1.13 Modules for parsing and evaluating XPath statements=0A= p5-XML-XQL-0.68 Perl module for querying XML tree structures with XQL=0A= p5-YAML-0.72 YAML implementation in Perl=0A= p5-YAML-Tiny-1.44 Read/Write YAML files with as little code as possible=0A= p5-gettext-1.05_3 Message handling functions=0A= p5-libwww-5.837 Perl5 library for WWW access=0A= p5-libxml-0.08 Collection of Perl5 modules for working with XML=0A= p5-type1inst-0.6.1_5 A script that helps install Postscript fonts in X = Window Sy=0A= pam_helper-1.0 Authenticate applications requiring PAM services=0A= pan-0.133_4 Threaded GTK+2 newsreader based on Agent for Windows=0A= pango-1.28.3 An open-source framework for the layout and = rendering of i1=0A= pangomm-2.26.2_1 C++ wrapper for Pango=0A= patch-2.6.1_1 GNU patch utility=0A= pciids-20101107 Database of all known ID's used in PCI devices=0A= pcre-8.10 Perl Compatible Regular Expressions library=0A= peps-2.0_4 Converts EPS images to anti-aliased bitmaps=0A= perl-5.12.2_4 Practical Extraction and Report Language=0A= phonon-4.4.2 Multimedia framework for KDE4=0A= phonon-gstreamer-4.4.2 The GStreamer backend for Phonon=0A= pidgin-2.7.5 Pidgin multi-protocol messaging client (GTK+ UI)=0A= pidgin-birthday-reminder-1.7 The birthday reminder for Pidgin=0A= pidgin-bs-1.3.0_2 Pidgin plugin to prevent instant message spam=0A= pidgin-facebookchat-1.68 Facebook Chat for Pidgin=0A= pidgin-fetion-0.98.5.2 Fetion protocol plugin for libpurple=0A= pidgin-guifications-2.16_4 Plugin to add msn style "toaster" popups to = Pidgin=0A= pidgin-hotkeys-0.2.4_12 A pidgin plugin that allows user to assign = global hotkeys=0A= pidgin-libnotify-0.14_6 This plugin adds a libnotify interface to Pidgin=0A= pidgin-manualsize-0.7_2 Plugin to allow manual resizing of Pidgin's = message input a=0A= pidgin-rhythmbox-2.0_5 Plugin to update your status with info from = Rhythmbox=0A= pixman-0.18.4 Low-level pixel manipulation library=0A= pkg-config-0.25_1 A utility to retrieve information about installed = libraries=0A= png-1.4.3 Library for manipulating PNG images=0A= po4a-0.40.1_1 Brings gettext translation tools to all kinds of docs=0A= policykit-0.9_6 Framework for controlling access to system-wide = components=0A= policykit-gnome-0.9.2_5 GNOME frontend to the PolicKit framework=0A= polkit-0.99 Framework for controlling access to system-wide = components=0A= polkit-gnome-0.96_4 GNOME frontend to the PolicKit framework=0A= poppler-0.14.5 A PDF rendering library=0A= poppler-data-0.4.4 Poppler encoding data=0A= poppler-gtk-0.12.4_1 Gtk bindings to poppler=0A= popt-1.16 A getopt(3) like library with a number of = enhancements, fro=0A= portaudio-18.1_2 Portable cross-platform Audio API=0A= portmaster-3.4 Manage your ports without external databases or = languages=0A= portupgrade-2.4.7,2 FreeBSD ports/packages administration and management = tool s=0A= printproto-1.0.4 Print extension headers=0A= psiconv-0.9.8_1 A conversion utility to convert Psion 5(MX) files = into othe=0A= pth-2.0.7 GNU Portable Threads=0A= ptlib-2.6.5_2 A cross platform C++ library, used by OPAL=0A= publib-0.39 Publib is a library of C functions for various = purposes=0A= pulseaudio-0.9.21_5 Sound server for UNIX=0A= py26-avahi-0.6.27_4 Python interface to the Avahi mDNS system=0A= py26-bsddb-2.6.6_2 Python bindings to the Berkeley DB library=0A= py26-cairo-1.8.10 Python bindings for Cairo=0A= py26-clutter-1.0.2_1 Python modules for Clutter toolkit=0A= py26-cluttergtk-0.10.0 Python modules for Clutter-gtk toolkit=0A= py26-dbus-0.83.1_1 Python bindings for the D-BUS messaging system=0A= py26-gdata-2.0.12 GData Python Client Library=0A= py26-gdbm-2.6.6 Python bindings to the GNU dbm library=0A= py26-gnome-2.28.1_2 A set of Python bindings for GNOME 2=0A= py26-gnome-desktop-2.30.2_1 A set of Python bindings used by modules in = the GNOME Deskt=0A= py26-gnome-extras-2.25.3_9 A set of Python bindings for GNOME 2=0A= py26-gobject-2.26.0 Python bindings for GObject=0A= py26-gstreamer-0.10.19 A set of Python bindings for gstreamer=0A= py26-gtk-2.17.0_4 A set of Python bindings for GTK+=0A= py26-gtksourceview-2.10.1 A python bindings for the version 2 of the = GtkSourceView li=0A= py26-libxml2-2.7.7 Python interface for XML parser library for GNOME=0A= py26-mutagen-1.19 A Python-based audio metadata tag reader and writer=0A= py26-notify-0.1.1_7 A python bindings for libnotify=0A= py26-numeric-24.2_3 The Numeric Extension to Python=0A= py26-openssl-0.11 Python interface to the OpenSSL library=0A= py26-orbit-2.24.0 Python bindings for ORBit2=0A= py26-papyon-0.5.2 A fork of pymsn to support the telepathy MSN = connection man=0A= py26-pycrypto-2.3 The Python Cryptography Toolkit=0A= py26-setuptools-0.6c11 Download, build, install, upgrade, and uninstall = Python pac=0A= py26-simplejson-2.1.2 Simplejson is a simple, fast, extensible JSON = encoder/decod=0A= py26-sqlite3-2.6.6_1 Standard Python binding to the SQLite3 library=0A= py26-telepathy-butterfly-0.5.14 MSN Connection Manager for Telepathy = Framework=0A= py26-telepathy-python-0.15.18 Python bindings for the Telepathy framework=0A= py26-xdg-0.19 A python library to access freedesktop.org standards=0A= python26-2.6.6 An interpreted object-oriented programming language=0A= python31-3.1.2_1 An interpreted object-oriented programming language=0A= qmake-3.3.8_1 The build utility of the Qt project=0A= qq-v1.0.2.b1.i386_1 Tencent QQ for Linux=0A= qt-3.3.8_12 Multiplatform C++ application framework=0A= qt4-assistant-4.6.3 Qt documentation browser=0A= qt4-clucene-4.6.3 QtCLucene full text search library wrapper=0A= qt4-corelib-4.6.3_1 Qt core library=0A= qt4-dbus-4.6.3 Qt4 bindings for the D-BUS messaging system=0A= qt4-designer-4.6.3 Qt ui editor=0A= qt4-doc-4.6.3 Multiplatform C++ application framework=0A= qt4-gui-4.6.3 Qt graphical user interface library=0A= qt4-help-4.6.3 QtHelp module provides QHelpEngine API and is used = by Assis=0A= qt4-linguist-4.6.3 Qt localisation tool=0A= qt4-moc-4.6.3 Qt meta object compiler=0A= qt4-network-4.6.3 Qt network library=0A= qt4-opengl-4.6.3 Qt OpenGL library=0A= qt4-qmake-4.6.3 The build utility of the Qt project=0A= qt4-qt3support-4.6.3_1 Qt3 compatibility library=0A= qt4-qtestlib-4.6.3 Qt unit testing library=0A= qt4-rcc-4.6.3 Qt resource compiler=0A= qt4-script-4.6.3 Qt script=0A= qt4-scripttools-4.6.3 Qt script=0A= qt4-sql-4.6.3 Qt SQL library=0A= qt4-sqlite-plugin-4.6.3 Qt SQLite 3.x database plugin=0A= qt4-uic-4.6.3 Qt user interface compiler=0A= qt4-webkit-4.6.3 Qt4 WebKit engine=0A= qt4-xml-4.6.3 Qt XML library=0A= qt4-xmlpatterns-4.6.3 XQuery 1.0 and XPath 2.0 support for Qt4=0A= randrproto-1.3.1 Randr extension headers=0A= rar-3.93,2 File archiver (binary port)=0A= rarian-0.8.1 An OMF help system based on the Freedesktop = specification=0A= rdesktop-1.6.0_1 RDP client for Windows NT/2000/2003 Terminal Server=0A= recordproto-1.14 RECORD extension headers=0A= renderproto-0.11 RenderProto protocol headers=0A= rep-gtk2-0.90.0_3,1 GTK+-2 binding for rep Lisp interpreter=0A= rhythmbox-0.12.8_2 Audio player for GNOME=0A= rpm-5.0.3_12 The RPM Package Manager=0A= rpm2cpio-1.3_1 Convert .rpm files for extraction with = /usr/bin/cpio, needs=0A= rtc-2004.02.24.1_8 Kernel module which provides /dev/rtc device support=0A= ruby-1.8.7.302,1 An object-oriented interpreted scripting language=0A= ruby18-bdb-0.6.5_1 Ruby interface to Sleepycat's Berkeley DB revision 2 = or lat=0A= ruby18-deplate-0.8.5 Ruby tool for converting wiki-like markup=0A= samba34-libsmbclient-3.4.9 Shared libs from the samba package=0A= samba4-devel-4.0.0.a11_1 A free SMB and CIFS client and server for UNIX=0A= schroedinger-1.0.10 High-speed Dirac codec=0A= scr2png-1.2_4 Converts the output of "vidcontrol -p" to PNG=0A= scr2txt-1.2 Converts the output of "vidcontrol -p" to text=0A= scrnsaverproto-1.2.0 ScrnSaver extension headers=0A= sdl-1.2.14_2,2 Cross-platform multimedia development API=0A= seahorse-2.30.1_2 GNOME application for managing encryption keys (PGP, = SSH)=0A= seahorse-plugins-2.30.1_2 Plug-ins for the Seahorse key and password = management appli=0A= seed-2.30.0_2 GObject JavaScriptCore bridge=0A= service-discovery-applet-0.4.3_12 A GNOME applet that shows available = network services using =0A= sessreg-1.0.5_1 Manage utmp/wtmp entries for non-init X clients=0A= setxkbmap-1.1.0 Set the keyboard using the X Keyboard Extension=0A= sg3_utils-1.28 Set of utilities that send SCSI commands to devices=0A= shared-mime-info-0.71_1 A MIME type database from the FreeDesktop project=0A= smproxy-1.0.3 Session Manager Proxy=0A= sodipodi-0.34_15 A small vector based drawing program with GNOME = libraries=0A= sound-juicer-2.28.2_1 Clean, mean and lean CD ripper for GNOME2=0A= spandsp-devel-0.0.6.p17 A DSP library and software FAX machine=0A= speex-1.2.r1_3,1 An open-source patent-free voice codec=0A= sqlite3-3.7.3_1 An SQL database engine in a C library=0A= stardict-3.0.1_5 A cross-platform and international dictionary = written in Gt=0A= startup-notification-0.10_2 Library that supports startup notification = spec from freede=0A= straw-0.27_6 A GNOME 2 desktop weblog aggregator written in Python=0A= sudo-1.7.4.4_1 Allow others to run commands as root=0A= swfdec-0.8.4_3 Flash Rendering Library=0A= swfdec-gnome-2.30.0_1 Gtk flash player and thumbnailer=0A= swig-1.3.39_1 Simplified Wrapper and Interface Generator=0A= synce-libsynce-0.14 Library to support communication with WinCE devices=0A= system-tools-backends-2.10.1 Backend system admin scripts for = gnome-system-tools=0A= t1lib-5.1.2_1,1 A Type 1 Rasterizer Library for UNIX/X11=0A= t1utils-1.32 Six utilities for manipulating t1 fonts=0A= taglib-1.6.3 Library for manipulating ID3 tags and Ogg comments=0A= talloc-2.0.1_1 Hierarchical pool based memory allocator=0A= tcl-8.5.9 Tool Command Language=0A= tcl-modules-8.5.9 Tcl common modules=0A= tdb-1.2.1_1,1 Trivial Database=0A= teTeX-3.0_4 A meta port for teTeX suite=0A= teTeX-base-3.0_20 Thomas Esser's distribution of TeX & friends = (binaries)=0A= teTeX-texmf-3.0_6 Thomas Esser's distribution of TeX & friends (texmf = tree)=0A= telepathy-farsight-0.0.14 Farsight Connection Manager for Telepathy = Framework=0A= telepathy-gabble-0.8.14 Jabber Connection Manager for Telepathy Framework=0A= telepathy-glib-0.12.1 GLib utility library for the Telepathy framework=0A= telepathy-idle-0.1.6 IRC Connection Manager for Telepathy Framework=0A= telepathy-mission-control-5.3.2 Telepathy component to apps to abstract = details of connecti=0A= tevent-0.9.8_1 Talloc based event loop library=0A= tex-texmflocal-1.9 Meta-port that creates a site-local $TEXMF directory=0A= texi2html-1.82,1 Texinfo to HTML converter=0A= tidy-20000804_2 Fixes and tidies up HTML files=0A= tiff-4.0.0 Tools and library routines for working with TIFF = images=0A= timer-applet-2.1.2_4 A timer applet for the GNOME panel=0A= tmake-1.7_5 Extremely portable perl-based make utility=0A= totem-2.30.2_1 A gstreamer-based video player for the GNOME 2 = Desktop=0A= totem-pl-parser-2.30.2_1 GObject-based library to parse a host of = playlist formats=0A= trapproto-3.4.3 DEC-XTRAP extension headers=0A= tsclient-0.150_9 A GNOME 2 frontend for rdesktop and vncviewer=0A= ttf2pt1-3.4.4_2 True Type Font to Postscript Type 1 Converter=0A= twm-1.0.4 Tab Window Manager for the X Window System=0A= unique-1.1.6_1 Library for single instance applications=0A= unixODBC-2.3.0_1 ODBC library suite for Unix=0A= unrar-3.93,5 Extract, view & test RAR archives=0A= unshield-0.6 Extract data from InstallShield CAB files=0A= unzip-6.0 List, test and extract compressed files in a ZIP = archive=0A= upower-0.9.6_1 D-Bus daemon for simplifying power management tasks=0A= v4l_compat-1.0.20101027 Video4Linux IOCTL header files=0A= vala-0.10.1 Programming language and compiler that converts Vala = code i=0A= vala-vapigen-0.10.1 Programming language and compiler that converts Vala = code i=0A= videoproto-2.3.0 Video extension headers=0A= vinagre-2.30.2_3 VNC client for the GNOME Desktop=0A= vino-2.28.2_2 VNC server that allows for remote access to your = GNOME desk=0A= vte-0.24.3 Terminal widget with improved accessibility and I18N = suppor=0A= w3m-0.5.2_4 A pager/text-based WWW browser=0A= webcamd-0.1.16 A port of Linux USB webcam and DVB drivers into = userspace=0A= webkit-gtk2-1.2.5 An opensource browser engine=0A= weblint-1.020 HTML validator and sanity checker=0A= wget-1.12_2 Retrieve files from the Net via HTTP(S) and FTP=0A= win32-codecs-20100303,1 Huge compilation of Win32 binary video codecs=0A= wine-1.3.7,1 Microsoft Windows compatibility layer for Unix-like = systems=0A= wqy-fonts-20100803_1,1 GNU GPL-licensed font set covering CJK and other = Unicode ch=0A= wv-1.2.7_1 A library and executables to access Microsoft Word = files=0A= wxgtk2-2.8.10_4 The wxWidgets GUI toolkit with GTK+ bindings=0A= wxgtk2-common-2.8.10_4 The wxWidgets GUI toolkit (common files)=0A= x11perf-1.5.1 X11 server performance test program=0A= x264-0.0.20100624 Library and tool for encoding H.264/AVC video streams=0A= xar-1.5.2 OpenDarwin XML eXtensible ARchiver=0A= xauth-1.0.4 X authority file utility=0A= xbacklight-1.1.1 Program to adjust backlight brightness=0A= xbitmaps-1.1.0 X.Org bitmaps data=0A= xcalc-1.0.3 Scientific calculator for X=0A= xcb-proto-1.6 The X protocol C-language Binding (XCB) protocol=0A= xcb-util-0.3.6_1 A module with libxcb/libX11 extension/replacement = libraries=0A= xchat-2.8.8 An X11 IRC client using the GTK+ 2 toolkit=0A= xcmiscproto-1.2.0 XCMisc extension headers=0A= xcmsdb-1.0.2 Device Color Characterization utility for X=0A= xcursor-themes-1.0.2 X.org cursors themes=0A= xcursorgen-1.0.3 Create an X cursor file from a collection of PNG = images=0A= xdg-utils-1.0.2_5 Tools to allow all applications to integrate with = the free =0A= xdpyinfo-1.1.0 Display information utility for X=0A= xdriinfo-1.0.3 Query configuration information of DRI drivers=0A= xdvik-tetex-22.84.16_2 DVI Previewer(kpathsearch) for X=0A= xev-1.0.4 Print contents of X events=0A= xextproto-7.1.1 XExt extension headers=0A= xf86-input-keyboard-1.4.0 X.Org keyboard input driver=0A= xf86-input-mouse-1.5.0 X.Org mouse input driver=0A= xf86-video-ati-6.13.0 X.Org ati display driver=0A= xf86-video-intel-2.7.1_3 Driver for Intel integrated graphics chipsets=0A= xf86-video-mach64-6.8.2 X.Org mach64 display driver=0A= xf86-video-nv-2.1.17 X.Org nv display driver=0A= xf86-video-openchrome-0.2.904_2 X.Org openChrome display driver=0A= xf86-video-r128-6.8.1 X.Org r128 display driver=0A= xf86-video-radeonhd-1.3.0_3 X.Org ati RadeonHD display driver=0A= xf86-video-vesa-2.3.0 X.Org vesa display driver=0A= xf86bigfontproto-1.2.0 XFree86-Bigfont extension headers=0A= xf86dga-1.0.2_1 Test program for the XFree86-DGA extension=0A= xf86dgaproto-2.1 XFree86-DGA extension headers=0A= xf86miscproto-0.9.3 XFree86-Misc extension headers=0A= xf86vidmodeproto-2.3 XFree86-VidModeExtension extension headers=0A= xfce-4.6.2 The "meta-port" for the XFce 4 desktop environment=0A= xfce4-appfinder-4.6.2 Find application in the system supporting Desktop = entry for=0A= xfce4-conf-4.6.2 XFce 4 configuration mananger=0A= xfce4-desktop-4.6.2 XFce 4 desktop background manager and root menu=0A= xfce4-mixer-4.6.1_6 XFce 4 volume mixer module for xfce4-panel=0A= xfce4-panel-4.6.4 XFce 4 panel module=0A= xfce4-print-4.6.1_6 XFce 4 graphical frontend for printing=0A= xfce4-session-4.6.2 Session manager for the Xfce 4 desktop environment=0A= xfce4-settings-4.6.5 XFce 4 settings application=0A= xfce4-utils-4.6.2 XFce 4 essential utilities and scripts=0A= xfce4-wm-4.6.2 XFce 4 window manager=0A= xfce4-wm-themes-4.6.0 XFce 4 window decoration themes for xfwm4=0A= xgamma-1.0.3 Gamma correction through the X server.=0A= xgc-1.0.2 X graphics demo=0A= xhost-1.0.3 Server access control program for X=0A= xhtml-1.0.20020801_4 W3C's XHTML DTD=0A= xineramaproto-1.2 Xinerama extension headers=0A= xinit-1.2.0_1 X Window System initializer=0A= xinput-1.5.0 Very useful utility for configuring and testing = XInput devi=0A= xkbcomp-1.1.0 Compile XKB keyboard description=0A= xkbevd-1.1.0 XKB event daemon=0A= xkbutils-1.0.1_2 XKB utility demos=0A= xkeyboard-config-1.8_1 X Keyboard Configuration Database=0A= xkill-1.0.2 Utility for killing a client by its X resource=0A= xlsatoms-1.0.2 List interned atoms defined on a server=0A= xlsclients-1.0.2 List client applications running on a display=0A= xmessage-1.0.3 Display message or query in a X window=0A= xmlcatmgr-2.2 SGML and XML catalog manager=0A= xmlcharent-0.3_2 XML character entities=0A= xmlto-0.0.23 Front-end to an XSL toolchain=0A= xmodmap-1.0.4 Utility for modifying keymaps and pointer button = mappings i=0A= xorg-7.5 X.Org complete distribution metaport=0A= xorg-apps-7.5 X.org apps meta-port=0A= xorg-cf-files-1.0.3 X.org cf files for use with imake builds=0A= xorg-docs-1.4,1 X.org documentation files=0A= xorg-drivers-7.5 X.org drivers meta-port=0A= xorg-fonts-100dpi-7.5 X.Org 100dpi bitmap fonts=0A= xorg-fonts-7.5 X.org fonts meta-port=0A= xorg-fonts-75dpi-7.5 X.Org 75dpi bitmap fonts=0A= xorg-fonts-cyrillic-7.5 X.Org Cyrillic bitmap fonts=0A= xorg-fonts-miscbitmaps-7.5 X.Org miscellaneous bitmap fonts=0A= xorg-fonts-truetype-7.5 X.Org TrueType fonts=0A= xorg-fonts-type1-7.5 X.Org Type1 fonts=0A= xorg-libraries-7.5 X.org libraries meta-port=0A= xorg-macros-1.6.0 X.Org development aclocal macros=0A= xorg-server-1.7.5,1 X.Org X server and related programs=0A= xpi-quick-locale-switcher-1.7.2 Quickly change and apply a different = locale from the tools =0A= xpr-1.0.3 Utility for printing an X window dump=0A= xprop-1.1.0 Property displayer for X=0A= xproto-7.0.16 X11 protocol headers=0A= xrandr-1.3.2 Primitive command line interface to the RandR = extension=0A= xrdb-1.0.6 X server resource database utility=0A= xrefresh-1.0.3 Refresh all or part of an X screen=0A= xscreensaver-gnome-hacks-5.11 Save your screen while you entertain your = cat (for GNOME us=0A= xset-1.1.0 User preference utility for X=0A= xsetmode-1.0.0 Set the mode for an X Input Device=0A= xsetroot-1.0.3 root window parameter setting utility for X=0A= xterm-261 Terminal emulator for the X Window System=0A= xtrans-1.2.5 Abstract network code for X=0A= xvid-1.2.2_1,1 An opensource MPEG-4 codec, based on OpenDivx=0A= xvinfo-1.1.0 Print out X-Video extension adaptor information=0A= xwd-1.0.3 Dump an image of an X window=0A= xwininfo-1.0.5 Window information utility for X=0A= xwud-1.0.2 Image displayer for X=0A= yasm-1.1.0 A complete rewrite of the NASM assembler=0A= yelp-2.30.1_2 A help browser for the GNOME 2 desktop=0A= zenity-2.30.0_1 Display GNOME dialogs from the command line=0A= zh-arphicttf-2.11_2 Four Chinese Big5/GB TrueType fonts made by Arphic = Technolo=0A= zh-docproj-0.1.20060303_4 Supportive tools for Chinese docproj build=0A= zh-ibus-pinyin-1.3.8 PinYin engine for IBus=0A= zh-mplayer-fonts-1.0_1 A chinese font pack for the mplayer OSD and SUB=0A= zh-openoffice.org-CN-3.2.1 Integrated = wordprocessor/dbase/spreadsheet/drawing/chart/br=0A= zh-ttf2pt1-3.4.0 True Type Font to Postscript Type 1 Converter with = chinese =0A= zh-ttfm-0.9.5_3 A Big5/GB enhanced TrueType Font Manager=0A= zh_CN-gimp-help-html-2.6.0 The GIMP User Manual in Simplifiled Chinese=0A= zh_cn-freebsd-doc-20100926 Simplified Chinese translation of the FreeBSD = Documentation=0A= zip-3.0 Create/update ZIP files compatible with pkzip=0A= ------=_NextPart_000_0001_01CB8AA5.D5D53DB0-- From owner-freebsd-i386@FreeBSD.ORG Mon Nov 22 20:28:19 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1E5E1106564A; Mon, 22 Nov 2010 20:28:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E67358FC18; Mon, 22 Nov 2010 20:28:18 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oAMKSHmW035749; Mon, 22 Nov 2010 15:28:17 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oAMKSHha035743; Mon, 22 Nov 2010 20:28:17 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 22 Nov 2010 20:28:17 GMT Message-Id: <201011222028.oAMKSHha035743@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 20:28:19 -0000 TB --- 2010-11-22 18:30:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-22 18:30:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-11-22 18:30:00 - cleaning the object tree TB --- 2010-11-22 18:30:30 - cvsupping the source tree TB --- 2010-11-22 18:30:30 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-11-22 18:30:56 - building world TB --- 2010-11-22 18:30:56 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-22 18:30:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-22 18:30:56 - TARGET=pc98 TB --- 2010-11-22 18:30:56 - TARGET_ARCH=i386 TB --- 2010-11-22 18:30:56 - TZ=UTC TB --- 2010-11-22 18:30:56 - __MAKE_CONF=/dev/null TB --- 2010-11-22 18:30:56 - cd /src TB --- 2010-11-22 18:30:56 - /usr/bin/make -B buildworld >>> World build started on Mon Nov 22 18:30:56 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Nov 22 20:15:42 UTC 2010 TB --- 2010-11-22 20:15:42 - generating LINT kernel config TB --- 2010-11-22 20:15:42 - cd /src/sys/pc98/conf TB --- 2010-11-22 20:15:42 - /usr/bin/make -B LINT TB --- 2010-11-22 20:15:42 - building LINT kernel TB --- 2010-11-22 20:15:42 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-22 20:15:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-22 20:15:42 - TARGET=pc98 TB --- 2010-11-22 20:15:42 - TARGET_ARCH=i386 TB --- 2010-11-22 20:15:42 - TZ=UTC TB --- 2010-11-22 20:15:42 - __MAKE_CONF=/dev/null TB --- 2010-11-22 20:15:42 - cd /src TB --- 2010-11-22 20:15:42 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Nov 22 20:15:43 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/compat/linsysfs/linsysfs.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/compat/linux/linux_emul.c /src/sys/compat/linux/linux_emul.c: In function 'linux_proc_exec': /src/sys/compat/linux/linux_emul.c:265: error: dereferencing pointer to incomplete type /src/sys/compat/linux/linux_emul.c:265: error: 'SV_ABI_MASK' undeclared (first use in this function) /src/sys/compat/linux/linux_emul.c:265: error: (Each undeclared identifier is reported only once /src/sys/compat/linux/linux_emul.c:265: error: for each function it appears in.) /src/sys/compat/linux/linux_emul.c:265: error: 'SV_ABI_LINUX' undeclared (first use in this function) *** Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-22 20:28:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-22 20:28:17 - ERROR: failed to build lint kernel TB --- 2010-11-22 20:28:17 - 5569.91 user 1041.14 system 7097.02 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Mon Nov 22 20:30:05 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07DD9106564A; Mon, 22 Nov 2010 20:30:05 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C7ED78FC15; Mon, 22 Nov 2010 20:30:04 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oAMKU4sc046012; Mon, 22 Nov 2010 15:30:04 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oAMKU4Wi046011; Mon, 22 Nov 2010 20:30:04 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 22 Nov 2010 20:30:04 GMT Message-Id: <201011222030.oAMKU4Wi046011@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 20:30:05 -0000 TB --- 2010-11-22 18:30:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-22 18:30:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-11-22 18:30:00 - cleaning the object tree TB --- 2010-11-22 18:30:34 - cvsupping the source tree TB --- 2010-11-22 18:30:34 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-11-22 18:30:57 - building world TB --- 2010-11-22 18:30:57 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-22 18:30:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-22 18:30:57 - TARGET=i386 TB --- 2010-11-22 18:30:57 - TARGET_ARCH=i386 TB --- 2010-11-22 18:30:57 - TZ=UTC TB --- 2010-11-22 18:30:57 - __MAKE_CONF=/dev/null TB --- 2010-11-22 18:30:57 - cd /src TB --- 2010-11-22 18:30:57 - /usr/bin/make -B buildworld >>> World build started on Mon Nov 22 18:30:58 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Nov 22 20:15:42 UTC 2010 TB --- 2010-11-22 20:15:42 - generating LINT kernel config TB --- 2010-11-22 20:15:42 - cd /src/sys/i386/conf TB --- 2010-11-22 20:15:42 - /usr/bin/make -B LINT TB --- 2010-11-22 20:15:42 - building LINT kernel TB --- 2010-11-22 20:15:42 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-22 20:15:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-22 20:15:42 - TARGET=i386 TB --- 2010-11-22 20:15:42 - TARGET_ARCH=i386 TB --- 2010-11-22 20:15:42 - TZ=UTC TB --- 2010-11-22 20:15:42 - __MAKE_CONF=/dev/null TB --- 2010-11-22 20:15:42 - cd /src TB --- 2010-11-22 20:15:42 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Nov 22 20:15:42 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/compat/linsysfs/linsysfs.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/compat/linux/linux_emul.c /src/sys/compat/linux/linux_emul.c: In function 'linux_proc_exec': /src/sys/compat/linux/linux_emul.c:265: error: dereferencing pointer to incomplete type /src/sys/compat/linux/linux_emul.c:265: error: 'SV_ABI_MASK' undeclared (first use in this function) /src/sys/compat/linux/linux_emul.c:265: error: (Each undeclared identifier is reported only once /src/sys/compat/linux/linux_emul.c:265: error: for each function it appears in.) /src/sys/compat/linux/linux_emul.c:265: error: 'SV_ABI_LINUX' undeclared (first use in this function) *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-22 20:30:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-22 20:30:04 - ERROR: failed to build lint kernel TB --- 2010-11-22 20:30:04 - 5684.66 user 1018.28 system 7203.41 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Tue Nov 23 19:15:44 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC56A10656A3; Tue, 23 Nov 2010 19:15:44 +0000 (UTC) (envelope-from arundel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 926938FC2A; Tue, 23 Nov 2010 19:15:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oANJFiuv095691; Tue, 23 Nov 2010 19:15:44 GMT (envelope-from arundel@freefall.freebsd.org) Received: (from arundel@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oANJFidS095686; Tue, 23 Nov 2010 19:15:44 GMT (envelope-from arundel) Date: Tue, 23 Nov 2010 19:15:44 GMT Message-Id: <201011231915.oANJFidS095686@freefall.freebsd.org> To: arundel@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports@FreeBSD.org From: arundel@FreeBSD.org Cc: Subject: Re: ports/152484: Build error of GTK-2.22.1_1 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Nov 2010 19:15:44 -0000 Synopsis: Build error of GTK-2.22.1_1 Responsible-Changed-From-To: freebsd-i386->freebsd-ports Responsible-Changed-By: arundel Responsible-Changed-When: Tue Nov 23 19:15:02 UTC 2010 Responsible-Changed-Why: This doesn't sound i386 specific. http://www.freebsd.org/cgi/query-pr.cgi?pr=152484 From owner-freebsd-i386@FreeBSD.ORG Wed Nov 24 03:26:07 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8482106566C; Wed, 24 Nov 2010 03:26:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9817A8FC12; Wed, 24 Nov 2010 03:26:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oAO3Q6BM030506; Tue, 23 Nov 2010 22:26:06 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oAO3Q6s4030505; Wed, 24 Nov 2010 03:26:06 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 24 Nov 2010 03:26:06 GMT Message-Id: <201011240326.oAO3Q6s4030505@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Nov 2010 03:26:07 -0000 TB --- 2010-11-24 01:35:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-24 01:35:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-11-24 01:35:00 - cleaning the object tree TB --- 2010-11-24 01:35:31 - cvsupping the source tree TB --- 2010-11-24 01:35:31 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-11-24 01:35:54 - building world TB --- 2010-11-24 01:35:54 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-24 01:35:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-24 01:35:54 - TARGET=pc98 TB --- 2010-11-24 01:35:54 - TARGET_ARCH=i386 TB --- 2010-11-24 01:35:54 - TZ=UTC TB --- 2010-11-24 01:35:54 - __MAKE_CONF=/dev/null TB --- 2010-11-24 01:35:54 - cd /src TB --- 2010-11-24 01:35:54 - /usr/bin/make -B buildworld >>> World build started on Wed Nov 24 01:35:54 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Nov 24 03:20:37 UTC 2010 TB --- 2010-11-24 03:20:37 - generating LINT kernel config TB --- 2010-11-24 03:20:37 - cd /src/sys/pc98/conf TB --- 2010-11-24 03:20:37 - /usr/bin/make -B LINT TB --- 2010-11-24 03:20:37 - building LINT kernel TB --- 2010-11-24 03:20:37 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-24 03:20:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-24 03:20:37 - TARGET=pc98 TB --- 2010-11-24 03:20:37 - TARGET_ARCH=i386 TB --- 2010-11-24 03:20:37 - TZ=UTC TB --- 2010-11-24 03:20:37 - __MAKE_CONF=/dev/null TB --- 2010-11-24 03:20:37 - cd /src TB --- 2010-11-24 03:20:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Nov 24 03:20:38 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pci.c awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/eisa/eisa_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue eisa_if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_em.c -I/src/sys/dev/e1000 cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_lem.c -I/src/sys/dev/e1000 cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_igb.c -I/src/sys/dev/e1000 /src/sys/dev/e1000/if_igb.c:142: error: 'E1000_DEV_ID_DH89XXCC_SERDES' undeclared here (not in a function) /src/sys/dev/e1000/if_igb.c:143: error: 'E1000_DEV_ID_DH89XXCC_SGMII' undeclared here (not in a function) *** Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-24 03:26:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-24 03:26:06 - ERROR: failed to build lint kernel TB --- 2010-11-24 03:26:06 - 5194.96 user 1000.98 system 6666.66 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Wed Nov 24 03:27:31 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D62C41065679; Wed, 24 Nov 2010 03:27:31 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9C96A8FC20; Wed, 24 Nov 2010 03:27:31 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oAO3RV81036653; Tue, 23 Nov 2010 22:27:31 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oAO3RUBD036652; Wed, 24 Nov 2010 03:27:30 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 24 Nov 2010 03:27:30 GMT Message-Id: <201011240327.oAO3RUBD036652@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Nov 2010 03:27:32 -0000 TB --- 2010-11-24 01:35:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-24 01:35:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-11-24 01:35:00 - cleaning the object tree TB --- 2010-11-24 01:35:33 - cvsupping the source tree TB --- 2010-11-24 01:35:33 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-11-24 01:35:54 - building world TB --- 2010-11-24 01:35:54 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-24 01:35:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-24 01:35:54 - TARGET=i386 TB --- 2010-11-24 01:35:54 - TARGET_ARCH=i386 TB --- 2010-11-24 01:35:54 - TZ=UTC TB --- 2010-11-24 01:35:54 - __MAKE_CONF=/dev/null TB --- 2010-11-24 01:35:54 - cd /src TB --- 2010-11-24 01:35:54 - /usr/bin/make -B buildworld >>> World build started on Wed Nov 24 01:35:55 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Nov 24 03:20:50 UTC 2010 TB --- 2010-11-24 03:20:50 - generating LINT kernel config TB --- 2010-11-24 03:20:50 - cd /src/sys/i386/conf TB --- 2010-11-24 03:20:50 - /usr/bin/make -B LINT TB --- 2010-11-24 03:20:51 - building LINT kernel TB --- 2010-11-24 03:20:51 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-24 03:20:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-24 03:20:51 - TARGET=i386 TB --- 2010-11-24 03:20:51 - TARGET_ARCH=i386 TB --- 2010-11-24 03:20:51 - TZ=UTC TB --- 2010-11-24 03:20:51 - __MAKE_CONF=/dev/null TB --- 2010-11-24 03:20:51 - cd /src TB --- 2010-11-24 03:20:51 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Nov 24 03:20:51 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pci.c awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/eisa/eisa_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue eisa_if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/eisa/eisaconf.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_em.c -I/src/sys/dev/e1000 cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_lem.c -I/src/sys/dev/e1000 cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_igb.c -I/src/sys/dev/e1000 /src/sys/dev/e1000/if_igb.c:142: error: 'E1000_DEV_ID_DH89XXCC_SERDES' undeclared here (not in a function) /src/sys/dev/e1000/if_igb.c:143: error: 'E1000_DEV_ID_DH89XXCC_SGMII' undeclared here (not in a function) *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-24 03:27:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-24 03:27:30 - ERROR: failed to build lint kernel TB --- 2010-11-24 03:27:30 - 5279.36 user 983.64 system 6750.83 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Thu Nov 25 11:00:22 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6414B106566B for ; Thu, 25 Nov 2010 11:00:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 22AB78FC17 for ; Thu, 25 Nov 2010 11:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oAPB0MWj035328 for ; Thu, 25 Nov 2010 11:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oAPB0Lgr035311; Thu, 25 Nov 2010 11:00:21 GMT (envelope-from gnats) Resent-Date: Thu, 25 Nov 2010 11:00:21 GMT Resent-Message-Id: <201011251100.oAPB0Lgr035311@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-i386@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, martin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E836106564A for ; Thu, 25 Nov 2010 10:59:19 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (unknown [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 717188FC18 for ; Thu, 25 Nov 2010 10:59:19 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id oAPAxIWX021209 for ; Thu, 25 Nov 2010 10:59:18 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id oAPAxI1T021208; Thu, 25 Nov 2010 10:59:18 GMT (envelope-from nobody) Message-Id: <201011251059.oAPAxI1T021208@red.freebsd.org> Date: Thu, 25 Nov 2010 10:59:18 GMT From: martin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: i386/152569: Multiple ppp connections and routing table problem with poptop X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Nov 2010 11:00:22 -0000 >Number: 152569 >Category: i386 >Synopsis: Multiple ppp connections and routing table problem with poptop >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-i386 >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 25 11:00:21 UTC 2010 >Closed-Date: >Last-Modified: >Originator: martin >Release: 7.3-RELEASE-p2 #0 and 8.1-RELEASE #0 >Organization: cifacom >Environment: FreeBSD services.static.cifap.lan 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Wed Sep 15 17:04:16 CEST 2010 root@services.cifap.lan:/usr/obj/usr/src/sys/GENERIC i386 and FreeBSD pptpsrv 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010 root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Freebsd running as a pptp vpn with poptop. When they are multiple clients connected to the vpn server and the first client disconnects first, the routing table is altered too much. When the first client connects # netstat -rn | grep tun 10.1.1.131 10.1.1.130 UGH 0 1 tun0 ff01:5::/32 link#5 UC tun0 ff02::%tun0/32 fe80::250:baff:fe21:69ec%tun0 UGC tun0 There is no problem, traffic is ok and routing table too. After the second client connects # netstat -rn | grep tun 10.1.1.131 10.1.1.130 UGH 0 6 tun0 10.1.1.132 10.1.1.130 UGH 0 0 tun1 ff01:5::/32 link#5 UC tun0 ff01:6::/32 link#6 UC tun1 ff02::%tun0/32 fe80::250:baff:fe21:69ec%tun0 UGC tun0 ff02::%tun1/32 fe80::250:baff:fe21:69ec%tun1 UGC tun1 Everything is ok too But when the first client disconnects the routing table changes to this # netstat -rn | grep tun ff01:6::/32 link#6 UC tun1 ff02::%tun1/32 fe80::250:baff:fe21:69ec%tun1 UGC tun1 and others client's traffic stops too. This problem does not occur when the second client closes his connection first # netstat -rn | grep tun 10.1.1.133 10.1.1.130 UGH 0 0 tun1 10.1.1.138 10.1.1.130 UGH 0 14 tun0 ff01:5::/32 link#5 UC tun0 ff01:6::/32 link#6 UC tun1 ff02::%tun0/32 fe80::250:baff:fe21:69ec%tun0 UGC tun0 ff02::%tun1/32 fe80::250:baff:fe21:69ec%tun1 UGC tun1 # netstat -rn | grep tun 10.1.1.138 10.1.1.130 UGH 0 62 tun0 ff01:5::/32 link#5 UC tun0 ff02::%tun0/32 fe80::250:baff:fe21:69ec%tun0 UGC tun0 I can reproduce this on the old (7.1 prerelease) and the new (7.3 release) pptp vpn servers. I can also reproduce it with a freshly 8.1 release installed system on a test laptop. I tried searching forums, mailing list, and bug reports but don't find anything that can help me with this. Sorry for the raw text, i don't know how to add some format tags. Thanks, >How-To-Repeat: Install poptop and put this in the /usr/local/etc/pptpd.conf file # egrep "^[aA-zZ]" /usr/local/etc/pptpd.conf option pptpd debug logwtmp remoteip 10.1.1.111-120 listen 10.1.1.253 Put this in the /etc/ppp/ppp.conf file # egrep -v "^#" /etc/ppp/ppp.conf pptpd: set escape 0xff set device localhost:pptp set dial set timeout 0 set log Phase Chat Connect LCP IPCP IPV6CP CCP tun command set ifaddr 10.1.1.110 10.1.1.111-10.1.1.120 255.255.255.255 set mppe 128 stateful enable MSCHAPv2 disable deflate pred1 lqr deny deflate pred1 lqr disable ipv6cp accept dns set dns 10.1.1.253 set nbns 10.1.1.204 enable proxy Enable ip forwarding and arpproxing sysctl net.inet.ip.forwarding=1 sysctl net.link.ether.inet.proxyall=1 >Fix: Do not have any >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-i386@FreeBSD.ORG Fri Nov 26 23:26:21 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4527F106564A; Fri, 26 Nov 2010 23:26:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0F3008FC0A; Fri, 26 Nov 2010 23:26:20 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oAQNQJuc037192; Fri, 26 Nov 2010 18:26:19 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oAQNQJrv037188; Fri, 26 Nov 2010 23:26:19 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 26 Nov 2010 23:26:19 GMT Message-Id: <201011262326.oAQNQJrv037188@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Nov 2010 23:26:21 -0000 TB --- 2010-11-26 21:25:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-26 21:25:00 - starting HEAD tinderbox run for i386/i386 TB --- 2010-11-26 21:25:00 - cleaning the object tree TB --- 2010-11-26 21:25:29 - cvsupping the source tree TB --- 2010-11-26 21:25:29 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/i386/supfile TB --- 2010-11-26 21:26:11 - building world TB --- 2010-11-26 21:26:11 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-26 21:26:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-26 21:26:11 - TARGET=i386 TB --- 2010-11-26 21:26:11 - TARGET_ARCH=i386 TB --- 2010-11-26 21:26:11 - TZ=UTC TB --- 2010-11-26 21:26:11 - __MAKE_CONF=/dev/null TB --- 2010-11-26 21:26:11 - cd /src TB --- 2010-11-26 21:26:11 - /usr/bin/make -B buildworld >>> World build started on Fri Nov 26 21:26:11 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Nov 26 23:11:15 UTC 2010 TB --- 2010-11-26 23:11:15 - generating LINT kernel config TB --- 2010-11-26 23:11:15 - cd /src/sys/i386/conf TB --- 2010-11-26 23:11:15 - /usr/bin/make -B LINT TB --- 2010-11-26 23:11:15 - building LINT kernel TB --- 2010-11-26 23:11:15 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-26 23:11:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-26 23:11:15 - TARGET=i386 TB --- 2010-11-26 23:11:15 - TARGET_ARCH=i386 TB --- 2010-11-26 23:11:15 - TZ=UTC TB --- 2010-11-26 23:11:15 - __MAKE_CONF=/dev/null TB --- 2010-11-26 23:11:15 - cd /src TB --- 2010-11-26 23:11:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Nov 26 23:11:15 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/hwpmc/hwpmc_ppro.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/hwpmc/hwpmc_tsc.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/hwpmc/hwpmc_x86.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ichwd/ichwd.c cc1: warnings being treated as errors /src/sys/dev/ichwd/ichwd.c: In function 'ichwd_attach': /src/sys/dev/ichwd/ichwd.c:526: warning: implicit declaration of function 'ich_read_tco_2' /src/sys/dev/ichwd/ichwd.c:526: warning: nested extern declaration of 'ich_read_tco_2' *** Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-26 23:26:19 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-26 23:26:19 - ERROR: failed to build lint kernel TB --- 2010-11-26 23:26:19 - 5723.70 user 1006.41 system 7279.21 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sat Nov 27 03:29:52 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 229F91065674; Sat, 27 Nov 2010 03:29:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id EA1248FC0A; Sat, 27 Nov 2010 03:29:51 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id oAR3TpFr062600; Fri, 26 Nov 2010 22:29:51 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id oAR3TpVC062591; Sat, 27 Nov 2010 03:29:51 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 27 Nov 2010 03:29:51 GMT Message-Id: <201011270329.oAR3TpVC062591@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Nov 2010 03:29:52 -0000 TB --- 2010-11-27 02:20:00 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-11-27 02:20:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2010-11-27 02:20:00 - cleaning the object tree TB --- 2010-11-27 02:20:31 - cvsupping the source tree TB --- 2010-11-27 02:20:31 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/i386/pc98/supfile TB --- 2010-11-27 02:25:59 - building world TB --- 2010-11-27 02:25:59 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-27 02:25:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-27 02:25:59 - TARGET=pc98 TB --- 2010-11-27 02:25:59 - TARGET_ARCH=i386 TB --- 2010-11-27 02:25:59 - TZ=UTC TB --- 2010-11-27 02:25:59 - __MAKE_CONF=/dev/null TB --- 2010-11-27 02:25:59 - cd /src TB --- 2010-11-27 02:25:59 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 27 02:25:59 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries [...] c++ -O2 -pipe -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/include -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/tools/clang/include -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG -I. -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/../../lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_HOSTTRIPLE=\"i386-undermydesk-freebsd9.0\" -fstack-protector -fno-exceptions -fno-rtti -c /src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp c++ -O2 -pipe -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/include -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/tools/clang/include -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG -I. -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/../../lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_HOSTTRIPLE=\"i386-undermydesk-freebsd9.0\" -fstack-protector -fno-exceptions -fno-rtti -c /src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp c++ -O2 -pipe -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/include -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/tools/clang/include -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG -I. -I/src/lib/clang/libllvmselectiondag/../../../contrib/llvm/../../lib/clang/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_HOSTTRIPLE=\"i386-undermydesk-freebsd9.0\" -fstack-protector -fno-exceptions -fno-rtti -c /src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp /src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp: In member function 'llvm::SDValue llvm::DAGTypeLegalizer::WidenVecRes_Binary(llvm::SDNode*)': /src/lib/clang/libllvmselectiondag/../../../contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp:1292: internal compiler error: in var_ann, at tree-flow-inline.h:127 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. *** Error code 1 Stop in /src/lib/clang/libllvmselectiondag. *** Error code 1 Stop in /src/lib/clang. *** Error code 1 Stop in /src/lib. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-27 03:29:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-27 03:29:51 - ERROR: failed to build world TB --- 2010-11-27 03:29:51 - 3090.21 user 532.88 system 4190.27 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-i386@FreeBSD.ORG Sat Nov 27 14:20:17 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9EA3106566B; Sat, 27 Nov 2010 14:20:17 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy.sentex.ca (freebsd-legacy.sentex.ca [IPv6:2607:f3e0:0:3::6502:9a]) by mx1.freebsd.org (Postfix) with ESMTP id 83E8F8FC16; Sat, 27 Nov 2010 14:20:17 +0000 (UTC) Received: from freebsd-legacy.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy.sentex.ca (8.14.4/8.14.4) with ESMTP id oAREKGtQ045819; Sat, 27 Nov 2010 14:20:16 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy.sentex.ca (8.14.4/8.14.4/Submit) id oAREKGaX045818; Sat, 27 Nov 2010 14:20:16 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 27 Nov 2010 14:20:16 GMT Message-Id: <201011271420.oAREKGaX045818@freebsd-legacy.sentex.ca> X-Authentication-Warning: freebsd-legacy.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_7 tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Nov 2010 14:20:17 -0000 TB --- 2010-11-27 12:53:14 - tinderbox 2.6 running on freebsd-legacy.sentex.ca TB --- 2010-11-27 12:53:14 - starting RELENG_7 tinderbox run for i386/i386 TB --- 2010-11-27 12:53:14 - cleaning the object tree TB --- 2010-11-27 12:53:32 - cvsupping the source tree TB --- 2010-11-27 12:53:32 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_7/i386/i386/supfile TB --- 2010-11-27 12:53:40 - building world TB --- 2010-11-27 12:53:40 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-27 12:53:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-27 12:53:40 - TARGET=i386 TB --- 2010-11-27 12:53:40 - TARGET_ARCH=i386 TB --- 2010-11-27 12:53:40 - TZ=UTC TB --- 2010-11-27 12:53:40 - __MAKE_CONF=/dev/null TB --- 2010-11-27 12:53:40 - cd /src TB --- 2010-11-27 12:53:40 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 27 12:53:41 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sat Nov 27 14:11:51 UTC 2010 TB --- 2010-11-27 14:11:51 - generating LINT kernel config TB --- 2010-11-27 14:11:51 - cd /src/sys/i386/conf TB --- 2010-11-27 14:11:51 - /usr/bin/make -B LINT TB --- 2010-11-27 14:11:52 - building LINT kernel TB --- 2010-11-27 14:11:52 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-27 14:11:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-27 14:11:52 - TARGET=i386 TB --- 2010-11-27 14:11:52 - TARGET_ARCH=i386 TB --- 2010-11-27 14:11:52 - TZ=UTC TB --- 2010-11-27 14:11:52 - __MAKE_CONF=/dev/null TB --- 2010-11-27 14:11:52 - cd /src TB --- 2010-11-27 14:11:52 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Nov 27 14:11:52 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_rtl80x9.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pci.c awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/eisa/eisa_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue eisa_if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/eisa/eisaconf.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror -pg -mprofiler-epilogue /src/sys/dev/e1000/if_em.c -I/src/sys/dev/e1000 /src/sys/dev/e1000/if_em.c:1275: error: conflicting types for 'em_poll' /src/sys/dev/e1000/if_em.c:286: error: previous declaration of 'em_poll' was here *** Error code 1 Stop in /obj/i386/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-27 14:20:16 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-27 14:20:16 - ERROR: failed to build lint kernel TB --- 2010-11-27 14:20:16 - 3988.57 user 703.48 system 5222.70 real http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-i386-i386.full From owner-freebsd-i386@FreeBSD.ORG Sat Nov 27 14:53:40 2010 Return-Path: Delivered-To: i386@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BBE31065670; Sat, 27 Nov 2010 14:53:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy.sentex.ca (freebsd-legacy.sentex.ca [IPv6:2607:f3e0:0:3::6502:9a]) by mx1.freebsd.org (Postfix) with ESMTP id 25E618FC08; Sat, 27 Nov 2010 14:53:40 +0000 (UTC) Received: from freebsd-legacy.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy.sentex.ca (8.14.4/8.14.4) with ESMTP id oARErdxi052013; Sat, 27 Nov 2010 14:53:39 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy.sentex.ca (8.14.4/8.14.4/Submit) id oARErdGU052012; Sat, 27 Nov 2010 14:53:39 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 27 Nov 2010 14:53:39 GMT Message-Id: <201011271453.oARErdGU052012@freebsd-legacy.sentex.ca> X-Authentication-Warning: freebsd-legacy.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_7 tinderbox] failure on i386/pc98 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Nov 2010 14:53:40 -0000 TB --- 2010-11-27 13:28:34 - tinderbox 2.6 running on freebsd-legacy.sentex.ca TB --- 2010-11-27 13:28:34 - starting RELENG_7 tinderbox run for i386/pc98 TB --- 2010-11-27 13:28:34 - cleaning the object tree TB --- 2010-11-27 13:28:49 - cvsupping the source tree TB --- 2010-11-27 13:28:49 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca -s /usr/home/tinderbox/RELENG_7/i386/pc98/supfile TB --- 2010-11-27 13:28:57 - building world TB --- 2010-11-27 13:28:57 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-27 13:28:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-27 13:28:57 - TARGET=pc98 TB --- 2010-11-27 13:28:57 - TARGET_ARCH=i386 TB --- 2010-11-27 13:28:57 - TZ=UTC TB --- 2010-11-27 13:28:57 - __MAKE_CONF=/dev/null TB --- 2010-11-27 13:28:57 - cd /src TB --- 2010-11-27 13:28:57 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 27 13:29:01 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sat Nov 27 14:47:02 UTC 2010 TB --- 2010-11-27 14:47:02 - generating LINT kernel config TB --- 2010-11-27 14:47:02 - cd /src/sys/pc98/conf TB --- 2010-11-27 14:47:02 - /usr/bin/make -B LINT TB --- 2010-11-27 14:47:03 - building LINT kernel TB --- 2010-11-27 14:47:03 - MAKEOBJDIRPREFIX=/obj TB --- 2010-11-27 14:47:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-11-27 14:47:03 - TARGET=pc98 TB --- 2010-11-27 14:47:03 - TARGET_ARCH=i386 TB --- 2010-11-27 14:47:03 - TZ=UTC TB --- 2010-11-27 14:47:03 - __MAKE_CONF=/dev/null TB --- 2010-11-27 14:47:03 - cd /src TB --- 2010-11-27 14:47:03 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Nov 27 14:47:03 UTC 2010 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_novell.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_rtl80x9.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -pg -mprofiler-epilogue /src/sys/dev/ed/if_ed_pci.c awk -f /src/sys/tools/makeobjops.awk /src/sys/dev/eisa/eisa_if.m -c ; cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -pg -mprofiler-epilogue eisa_if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -pg -mprofiler-epilogue /src/sys/dev/e1000/if_em.c -I/src/sys/dev/e1000 /src/sys/dev/e1000/if_em.c:1275: error: conflicting types for 'em_poll' /src/sys/dev/e1000/if_em.c:286: error: previous declaration of 'em_poll' was here *** Error code 1 Stop in /obj/pc98/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-11-27 14:53:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-11-27 14:53:39 - ERROR: failed to build lint kernel TB --- 2010-11-27 14:53:39 - 3863.71 user 700.27 system 5104.95 real http://tinderbox.freebsd.org/tinderbox-releng_7-RELENG_7-i386-pc98.full