From rnoland at FreeBSD.org Sat Aug 1 00:30:16 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Aug 1 00:30:22 2009 Subject: 8.0 beta2 (patched) - drm_bufs.c: system freeze In-Reply-To: <4a73541c.0c0db80a.214d.ffff9b89@mx.google.com> References: <4a73541c.0c0db80a.214d.ffff9b89@mx.google.com> Message-ID: <1249086606.1775.11.camel@balrog.2hip.net> On Fri, 2009-07-31 at 22:29 +0200, albri wrote: > hello list, > here is an information what does not function on one system: > a patched drm with rnoland's patch drm-nouveau-043009.patch and a daily fresh xf86-video-nouveau causes system to freeze. there was written no coredump and no Xorg.o.log, just a freeze. the only info gotten is written to log/messages. > kernel is GENERIC with amd64. graphic card is IGP. > just for your information in wish it is helpful. So, I had someone else report this today... I'm not sure how or why this hasn't showed up more... It is a WITNESS panic which is already fixed in the later patch. If you edit /usr/src/sys/dev/drm/nouveau_mem.c and search for the line containing drm_sg_alloc(). Place the DRM_UNLOCK(); and DRM_LOCK(); around that call it should get things going. See below. @@ -27288,7 +27262,9 @@ + DRM_DEBUG("Allocating sg memory for PCI DMA\n"); + sgreq.size = 16 << 20; //16MB of PCI scatter-gather zone + ++ DRM_UNLOCK(); + ret = drm_sg_alloc(dev, &sgreq); ++ DRM_LOCK(); + if (ret) { + DRM_ERROR("Unable to allocate %ldMB of scatter-gather" + " pages for PCI DMA!",sgreq.size>>20); robert. > best regards > > kern.ostype: FreeBSD > kern.osrelease: 8.0-BETA2 > kern.osrevision: 199506 > kern.osreldate: 800106 > > # cat messages | grep -ie "nouve\|drm" > Jul 30 02:27:07 xxx kernel: drm0: on vgapci0 > Jul 30 02:27:07 xxx kernel: info: [drm] MSI enabled 1 message(s) > Jul 30 02:27:07 xxx kernel: info: [drm] Detected an NV44 generation card (0x04e000a2) > Jul 30 02:27:07 xxx kernel: vgapci0: child drm0 requested pci_enable_busmaster > Jul 30 02:27:07 xxx kernel: info: [drm] Initialized nouveau 0.0.12 20060213 > Jul 30 02:27:48 xxx kernel: error: [drm:pid1979:drm_alloc_resource] *ERROR* Couldn't find resource 0x2 > Jul 30 02:29:19 xxx kernel: exclusive sleep mutex drmdev (drmdev) r = 0 (0xffffff00112a20a0) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_bufs.c:55 > Jul 30 02:29:19 xxx kernel: drm_sg_alloc() at drm_sg_alloc+0x4b > Jul 30 02:29:19 xxx kernel: nouveau_mem_init() at nouveau_mem_init+0x4f3 > Jul 30 02:29:19 xxx kernel: nouveau_card_init() at nouveau_card_init+0x7c5 > Jul 30 02:29:19 xxx kernel: nouveau_ioctl_card_init() at nouveau_ioctl_card_init+0x9 > Jul 30 02:29:19 xxx kernel: drm_ioctl() at drm_ioctl+0x314 > Jul 30 02:29:19 xxx kernel: panic: _mtx_lock_sleep: recursed on non-recursive mutex drmdev @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_scatter.c:123 > Jul 30 22:14:54 xxx kernel: drm0: on vgapci0 > Jul 30 22:14:54 xxx kernel: info: [drm] MSI enabled 1 message(s) > Jul 30 22:14:54 xxx kernel: info: [drm] Detected an NV44 generation card (0x04e000a2) > Jul 30 22:14:54 xxx kernel: vgapci0: child drm0 requested pci_enable_busmaster > Jul 30 22:14:54 xxx kernel: info: [drm] Initialized nouveau 0.0.12 20060213 > Jul 31 09:16:27 xxx kernel: drm0: on vgapci0 > Jul 31 09:16:27 xxx kernel: info: [drm] MSI enabled 1 message(s) > Jul 31 09:16:27 xxx kernel: info: [drm] Detected an NV44 generation card (0x04e000a2) > Jul 31 09:16:27 xxx kernel: vgapci0: child drm0 requested pci_enable_busmaster > Jul 31 09:16:27 xxx kernel: info: [drm] Initialized nouveau 0.0.12 20060213 > Jul 31 09:19:34 xxx kernel: error: [drm:pid17956:drm_alloc_resource] *ERROR* Couldn't find resource 0x2 > Jul 31 09:19:34 xxx kernel: exclusive sleep mutex drmdev (drmdev) r = 0 (0xffffff00269ae0a0) locked @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_bufs.c:55 > Jul 31 09:19:34 xxx kernel: drm_sg_alloc() at drm_sg_alloc+0x4b > Jul 31 09:19:34 xxx kernel: nouveau_mem_init() at nouveau_mem_init+0x4f3 > Jul 31 09:19:34 xxx kernel: nouveau_card_init() at nouveau_card_init+0x7c5 > Jul 31 09:19:34 xxx kernel: nouveau_ioctl_card_init() at nouveau_ioctl_card_init+0x9 > Jul 31 09:19:34 xxx kernel: drm_ioctl() at drm_ioctl+0x314 > Jul 31 09:19:34 xxx kernel: panic: _mtx_lock_sleep: recursed on non-recursive mutex drmdev @ /usr/src/sys/modules/drm/drm/../../../dev/drm/drm_scatter.c:123 > Jul 31 09:23:29 xxx kernel: drm0: on vgapci0 > Jul 31 09:23:29 xxx kernel: info: [drm] MSI enabled 1 message(s) > Jul 31 09:23:29 xxx kernel: info: [drm] Detected an NV44 generation card (0x04e000a2) > Jul 31 09:23:29 xxx kernel: vgapci0: child drm0 requested pci_enable_busmaster > Jul 31 09:23:29 xxx kernel: info: [drm] Initialized nouveau 0.0.12 20060213 > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD From wmoran at potentialtech.com Sat Aug 1 15:54:06 2009 From: wmoran at potentialtech.com (Bill Moran) Date: Sat Aug 1 15:54:19 2009 Subject: Has anyone managed to get xorg to compile recently? Message-ID: <20090801114329.39e835b8.wmoran@potentialtech.com> I'm cleaning up my desktop after a few years of neglect, and I got into a situation with portupgrade where I decided it would probably be easier to just deinstall everything and start from scratch. However, I can't get xorg or xorg-minimal to build to save my life. The system is 7.2p1. I've tried numerous times and used portsnap to update my ports between each attempt. The current error information for attempting to build xorg-minimal is attached. (Note: I'm not currently subscribed to x11@) -Bill [[Follows a script capture of the failed build]] Script started on Sat Aug 1 11:35:21 2009 working# uname -a FreeBSD working.potentialtech.com 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #6: Mon Jun 15 23:06:16 EDT 2009 wmoran@working.potentialtech.com:/usr/obj/usr/src/sys/GENERIC i386 working# pkg_info autoconf-2.62 Automatically configure source code on many Un*x platforms autoconf-wrapper-20071109 Wrapper script for GNU autoconf automake-1.10.1 GNU Standards-compliant Makefile generator (1.10) automake-wrapper-20071109 Wrapper script for GNU automake bigreqsproto-1.0.2 BigReqs extension headers compositeproto-0.4 Composite extension headers consolekit-0.3.0_8 Framework for defining and tracking users damageproto-1.1.0_2 Damage extension headers dbus-1.2.4.6 A message bus system for inter-application communication dbus-glib-0.82 GLib bindings for the D-BUS messaging system dmidecode-2.10 A tool for dumping DMI (SMBIOS) contents in human-readable docbook-1.4 Meta-port for the different versions of the DocBook DTD docbook-4.1_3 V4.1 of the DocBook DTD, designed for technical documentati docbook-4.2 V4.2 of the DocBook DTD, designed for technical documentati docbook-4.3 DocBook/SGML DTD V4.3, designed for technical documentation docbook-4.4_2 DocBook/SGML DTD V4.4, designed for technical documentation docbook-4.5_2 DocBook/SGML DTD V4.5, designed for technical documentation docbook-5.0_1 DocBook 5.0, designed for technical documentation docbook-sk-4.1.2_4 XML version of the DocBook DTD version controlled for Scrol docbook-xml-4.2_1 XML version of the DocBook DTD docbook-xml-4.3 DocBook/XML DTD V4.3, designed for technical documentation docbook-xml-4.4_1 DocBook/XML DTD V4.4, designed for technical documentation docbook-xml-4.5 DocBook/XML DTD V4.5, designed for technical documentation docbook-xsl-1.75.1 XSL DocBook stylesheets dri-7.4.4,2 OpenGL hardware acceleration drivers for the DRI dri2proto-2.0 DRI2 prototype headers evieext-1.0.2 XEVIE extension headers expat-2.0.1 XML 1.0 parser written in C fixesproto-4.0 Fixes extension headers fontsproto-2.0.2 Fonts extension headers freetype2-2.3.9_1 A free and portable TrueType font rendering engine gamin-0.1.10_3 A file and directory monitoring system gettext-0.17_1 GNU gettext package gio-fam-backend-2.20.4 FAM backend for GLib's GIO library glib-2.20.4 Some useful routines of C programming (current stable versi glproto-1.4.10 GLX extension headers gmake-3.81_3 GNU version of 'make' utility gnome_subr-1.0 Common startup and shutdown subroutines used by GNOME scrip hal-0.5.11_25 Hardware Abstraction Layer for simplifying device access help2man-1.36.4_3 Automatically generating simple manual pages from program o inputproto-1.5.0 Input extension headers intltool-0.40.6 Tools to internationalize various kinds of data files iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) kbproto-1.0.3 KB extension headers libICE-1.0.4_1,1 Inter Client Exchange library for X11 libSM-1.1.0_1,1 Session Management library for X11 libX11-1.2.1_1,1 X11 library libXau-1.0.4 Authentication Protocol library for X11 libXaw-1.0.5_1,1 X Athena Widgets library libXdamage-1.1.1 X Damage extension library libXdmcp-1.0.2_1 X Display Manager Control Protocol library libXext-1.0.5,1 X11 Extension library libXfixes-4.0.3_1 X Fixes extension library libXfont-1.3.4,1 X font libary libXinerama-1.0.3,1 X11 Xinerama library libXmu-1.0.4,1 X Miscellaneous Utilities libraries libXp-1.0.0,1 X print library libXpm-3.5.7 X Pixmap library libXt-1.0.5_1 X Toolkit library libXxf86misc-1.0.1 X XF86-Misc Extension libXxf86vm-1.0.2 X Vidmode Extension libcheck-0.9.6 A unit test framework for C libdrm-2.4.11 Userspace interface to kernel Direct Rendering Module servi libfontenc-1.0.4 The fontenc Library libiconv-1.13.1 A character set conversion library libpciaccess-0.10.6 Generic PCI access library libpthread-stubs-0.1 This library provides weak aliases for pthread functions libtool-1.5.26 Generic shared library support script libvolume_id-0.81.1 Library to provide file system type information libxcb-1.4 The X protocol C-language Binding (XCB) library libxkbfile-1.0.5 XKB file library libxkbui-1.0.2_1 The xkbui library libxml2-2.7.3 XML parser library for GNOME libxslt-1.1.24_2 The XSLT C library for GNOME m4-1.4.13,1 GNU m4 makedepend-1.0.1,1 A dependency generator for makefiles p5-XML-Parser-2.36 Perl extension interface to James Clark's XML parser, expat p5-gettext-1.05_2 Message handling functions pciids-20090224 Database of all known ID's used in PCI devices pcre-7.9 Perl Compatible Regular Expressions library perl-5.8.9_3 Practical Extraction and Report Language pixman-0.15.4 Low-level pixel manipulation library pkg-config-0.23_1 A utility to retrieve information about installed libraries policykit-0.9_4 Framework for controlling access to system-wide components printproto-1.0.4 Print extension headers python26-2.6.2_1 An interpreted object-oriented programming language randrproto-1.3.0 Randr extension headers recordproto-1.13.2 RECORD extension headers renderproto-0.9.3 RenderProto protocol headers resourceproto-1.0.2 Resource extension headers scrnsaverproto-1.1.0 ScrnSaver extension headers trapproto-3.4.3 DEC-XTRAP extension headers unzip-5.52_5 List, test and extract compressed files in a ZIP archive videoproto-2.2.2 Video extension headers xcb-proto-1.5 The X protocol C-language Binding (XCB) protocol xcmiscproto-1.1.2 XCMisc extension headers xextproto-7.0.5 XExt extension headers xf86bigfontproto-1.1.2 XFree86-Bigfont extension headers xf86dgaproto-2.0.3 XFree86-DGA extension headers xf86driproto-2.0.4 XFree86-DRI extension headers xf86miscproto-0.9.2 XFree86-Misc extension headers xf86vidmodeproto-2.2.2 XFree86-VidModeExtension extension headers xineramaproto-1.1.2 Xinerama extension headers xmlcatmgr-2.2 SGML and XML catalog manager xmlcharent-0.3_2 XML character entities xorg-macros-1.2.1 X.Org development aclocal macros xproto-7.0.15 X11 protocol headers xtrans-1.2.3 Abstract network code for X working# pwd /usr/ports/x11/xorg-minimal working# make install This is a meta-port, meaning that it just depends on its subparts of the port. It won't build and install all the parts until you have typed make install This port does not ensure things are upgraded; use portmaster if you want to upgrade X.Org. ===> Vulnerability check disabled, database not found ===> Extracting for xorg-minimal-7.4_2 ===> Patching for xorg-minimal-7.4_2 ===> Configuring for xorg-minimal-7.4_2 ===> Installing for xorg-minimal-7.4_2 ===> xorg-minimal-7.4_2 depends on file: /usr/local/bin/Xorg - not found ===> Verifying install for /usr/local/bin/Xorg in /usr/ports/x11-servers/xorg-server By default, the X Server installs as a set-user-id root binary. When run by a normal user, it checks arguments and environment as done in the x11/wrapper port before handling them normally. If you are concerned about the security of this, but still want to run an X Server (for example using xdm/kdm/gdm, which will still run the server as root), you can cancel the build and set NO_SUID_XSERVER=YES in /etc/make.conf. ===> Vulnerability check disabled, database not found ===> Found saved configuration for xorg-server-1.6.1,1 ===> Extracting for xorg-server-1.6.1,1 => MD5 Checksum OK for xorg/xserver/xorg-server-1.6.1.tar.bz2. => SHA256 Checksum OK for xorg/xserver/xorg-server-1.6.1.tar.bz2. ===> xorg-server-1.6.1,1 depends on file: /usr/local/bin/perl5.8.9 - found ===> Patching for xorg-server-1.6.1,1 ===> xorg-server-1.6.1,1 depends on file: /usr/local/bin/perl5.8.9 - found ===> Applying FreeBSD patches for xorg-server-1.6.1,1 ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xf86driproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/randrproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/renderproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/fixesproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/damageproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xcmiscproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xextproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xtrans.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xf86miscproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xf86vidmodeproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xf86bigfontproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/scrnsaverproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/bigreqsproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/resourceproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/fontsproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/inputproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xf86dgaproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/videoproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/compositeproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/trapproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/recordproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xineramaproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/evieproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/dri.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xdmcp.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xkbfile.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xxf86misc.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xxf86vm.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xaw7.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xmu.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xt.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xpm.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xext.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xinerama.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xfont.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/fontenc.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/xkbui.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/pixman-1.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/pciaccess.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/libdata/pkgconfig/pciaccess.pc - found ===> xorg-server-1.6.1,1 depends on file: /usr/local/bin/perl5.8.9 - found ===> xorg-server-1.6.1,1 depends on shared library: drm - found ===> xorg-server-1.6.1,1 depends on shared library: hal.1 - found ===> xorg-server-1.6.1,1 depends on shared library: GL.1 - found ===> Configuring for xorg-server-1.6.1,1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking dependency style of cc... gcc3 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether ln -s works... yes checking build system type... i386-portbld-freebsd7.2 checking host system type... i386-portbld-freebsd7.2 checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd7.2 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for bash... no checking if dolt supports this host... no, falling back to libtool checking whether make sets $(MAKE)... (cached) yes checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for flex... flex checking lex output file root... lex.yy checking lex library... -lfl checking whether yytext is a pointer... yes checking for bison... no checking for byacc... byacc checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for cpp... /usr/bin/cpp checking if /usr/bin/cpp requires -undef... yes checking if /usr/bin/cpp requires -traditional... yes checking for sed... (cached) /usr/bin/sed checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for unistd.h... (cached) yes checking for an ANSI C-conforming const... yes checking whether byte ordering is bigendian... no checking size of unsigned long... 4 checking for pid_t... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking sys/endian.h usability... yes checking sys/endian.h presence... yes checking for sys/endian.h... yes checking for __swap16 variant of byteswapping macros... no checking for bswap16 variant of byteswapping macros... yes checking for dlopen... yes checking for vprintf... yes checking for _doprnt... no checking for geteuid... yes checking for getuid... yes checking for link... yes checking for memmove... yes checking for memset... yes checking for mkstemp... yes checking for strchr... yes checking for strrchr... yes checking for strtol... yes checking for getopt... yes checking for getopt_long... yes checking for vsnprintf... yes checking for walkcontext... no checking for backtrace... no checking for getisax... no checking for getzoneid... no checking for shmctl64... no checking for strcasestr... yes checking for ffs... yes checking for working alloca.h... no checking for alloca... yes checking for getdtablesize... yes checking for getifaddrs... yes checking for getpeereid... yes checking for getpeerucred... no checking for strlcat... yes checking for strlcpy... yes checking for mmap... yes checking for sqrt in -lm... yes checking for cbrt in -lm... yes checking ndbm.h usability... yes checking ndbm.h presence... yes checking for ndbm.h... yes checking dbm.h usability... no checking dbm.h presence... no checking for dbm.h... no checking rpcsvc/dbm.h usability... no checking rpcsvc/dbm.h presence... no checking for rpcsvc/dbm.h... no checking linux/agpgart.h usability... no checking linux/agpgart.h presence... no checking for linux/agpgart.h... no checking sys/agpio.h usability... yes checking sys/agpio.h presence... yes checking for sys/agpio.h... yes checking linux/apm_bios.h usability... no checking linux/apm_bios.h presence... no checking for linux/apm_bios.h... no checking linux/fb.h usability... no checking linux/fb.h presence... no checking for linux/fb.h... no checking asm/mtrr.h usability... no checking asm/mtrr.h presence... no checking for asm/mtrr.h... no checking sys/memrange.h usability... yes checking sys/memrange.h presence... yes checking for sys/memrange.h... yes checking machine/mtrr.h usability... no checking machine/mtrr.h presence... no checking for machine/mtrr.h... no checking for sys/linker.h... yes checking for SYSV IPC... yes checking machine/apmvar.h usability... no checking machine/apmvar.h presence... no checking for machine/apmvar.h... no checking execinfo.h usability... no checking execinfo.h presence... no checking for execinfo.h... no checking to see if we can install the Xorg server as root... yes checking if Xtrans should support UNIX socket connections... yes checking if Xtrans should support TCP socket connections... yes checking for library containing socket... none required checking for library containing gethostbyname... none required checking for getaddrinfo... yes checking if IPv6 support should be built... yes checking for struct sockaddr_in.sin_len... yes checking for socklen_t... yes checking if Xtrans should support os-specific local connections... no checking for authdes_seccreate... yes checking for authdes_create... yes checking for library containing getsecretkey... -lrpcsvc checking if Secure RPC authentication ("SUN-DES-1") should be supported... yes checking for /usr/local/share/sgml/X11/defs.ent... no checking for linuxdoc... no checking for ps2pdf... no checking Whether to build documentation... no checking Whether to build pdf documentation... no checking for DBUS... yes checking for HAL... yes checking for glibc...... no checking for clock_gettime... yes checking for a useful monotonic clock ...... yes checking for XLIB... yes checking for GL... configure: error: Package requirements (glproto >= 1.4.9 gl >= 7.1.0) were not met: gnome-config: not found No package 'gl' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GL_CFLAGS and GL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/x11-servers/xorg-server. *** Error code 1 Stop in /usr/ports/x11-servers/xorg-server. *** Error code 1 Stop in /usr/ports/x11/xorg-minimal. working# exit Script done on Sat Aug 1 11:36:10 2009 [[Follows config.log]] This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by xorg-server configure 1.6.1, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --disable-dmx --disable-xvfb --disable-xnest --localstatedir=/var --without-dtrace --disable-xephyr --enable-record=yes --with-xkb-path=/usr/local/share/X11/xkb --enable-config-hal=yes --enable-aiglx=yes --enable-install-setuid=yes --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=i386-portbld-freebsd7.2 ## --------- ## ## Platform. ## ## --------- ## hostname = working.potentialtech.com uname -m = i386 uname -r = 7.2-RELEASE-p1 uname -s = FreeBSD uname -v = FreeBSD 7.2-RELEASE-p1 #6: Mon Jun 15 23:06:16 EDT 2009 wmoran@working.potentialtech.com:/usr/obj/usr/src/sys/GENERIC /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2766: checking for a BSD-compatible install configure:2834: result: /usr/bin/install -c -o root -g wheel configure:2845: checking whether build environment is sane configure:2888: result: yes configure:2913: checking for a thread-safe mkdir -p configure:2952: result: ./install-sh -c -d configure:2965: checking for gawk configure:2995: result: no configure:2965: checking for mawk configure:2995: result: no configure:2965: checking for nawk configure:2981: found /usr/bin/nawk configure:2992: result: nawk configure:3003: checking whether make sets $(MAKE) configure:3025: result: yes configure:3209: checking whether to enable maintainer-specific portions of Makefiles configure:3218: result: no configure:3297: checking for gcc configure:3324: result: cc configure:3556: checking for C compiler version configure:3564: cc --version >&5 cc (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3568: $? = 0 configure:3575: cc -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070719 [FreeBSD] configure:3579: $? = 0 configure:3586: cc -V >&5 cc: '-V' option must have argument configure:3590: $? = 1 configure:3613: checking for C compiler default output file name configure:3635: cc -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3639: $? = 0 configure:3677: result: a.out configure:3696: checking whether the C compiler works configure:3706: ./a.out configure:3710: $? = 0 configure:3729: result: yes configure:3736: checking whether we are cross compiling configure:3738: result: no configure:3741: checking for suffix of executables configure:3748: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3752: $? = 0 configure:3778: result: configure:3784: checking for suffix of object files configure:3810: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3814: $? = 0 configure:3839: result: o configure:3843: checking whether we are using the GNU C compiler configure:3872: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3879: $? = 0 configure:3896: result: yes configure:3905: checking whether cc accepts -g configure:3935: cc -c -g conftest.c >&5 configure:3942: $? = 0 configure:4043: result: yes configure:4060: checking for cc option to accept ISO C89 configure:4134: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:4141: $? = 0 configure:4164: result: none needed configure:4193: checking for style of include used by make configure:4221: result: GNU configure:4246: checking dependency style of cc configure:4337: result: gcc3 configure:4361: checking dependency style of cc configure:4452: result: gcc3 configure:4481: checking for a BSD-compatible install configure:4549: result: /usr/bin/install -c -o root -g wheel configure:4560: checking whether ln -s works configure:4564: result: yes configure:4577: checking build system type configure:4595: result: i386-portbld-freebsd7.2 configure:4617: checking host system type configure:4632: result: i386-portbld-freebsd7.2 configure:5013: checking for a sed that does not truncate output configure:5079: result: /usr/bin/sed configure:5097: checking for grep that handles long lines and -e configure:5157: result: /usr/bin/grep configure:5162: checking for egrep configure:5226: result: /usr/bin/grep -E configure:5231: checking for fgrep configure:5295: result: /usr/bin/grep -F configure:5330: checking for ld used by cc configure:5397: result: /usr/bin/ld configure:5406: checking if the linker (/usr/bin/ld) is GNU ld configure:5421: result: yes configure:5433: checking for BSD- or MS-compatible name lister (nm) configure:5482: result: /usr/bin/nm -B configure:5600: checking the name lister (/usr/bin/nm -B) interface configure:5607: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:5610: /usr/bin/nm -B "conftest.o" configure:5613: output 00000000 B some_variable configure:5620: result: BSD nm configure:5624: checking the maximum length of command line arguments configure:5744: result: 262144 configure:5761: checking whether the shell understands some XSI constructs configure:5771: result: yes configure:5775: checking whether the shell understands "+=" configure:5781: result: no configure:5816: checking for /usr/bin/ld option to reload object files configure:5823: result: -r configure:5892: checking for objdump configure:5919: result: objdump configure:5948: checking how to recognize dependent libraries configure:6144: result: pass_all configure:6204: checking for ar configure:6220: found /usr/bin/ar configure:6231: result: ar configure:6309: checking for strip configure:6325: found /usr/bin/strip configure:6336: result: strip configure:6408: checking for ranlib configure:6424: found /usr/bin/ranlib configure:6435: result: ranlib configure:6525: checking command to parse /usr/bin/nm -B output from cc object configure:6643: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6646: $? = 0 configure:6650: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:6653: $? = 0 configure:6707: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c conftstm.o >&5 configure:6710: $? = 0 configure:6748: result: ok configure:7615: checking how to run the C preprocessor configure:7655: cc -E conftest.c configure:7662: $? = 0 configure:7693: cc -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:7700: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | /* end confdefs.h. */ | #include configure:7733: result: cc -E configure:7762: cc -E conftest.c configure:7769: $? = 0 configure:7800: cc -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:7807: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | /* end confdefs.h. */ | #include configure:7847: checking for ANSI C header files configure:7877: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:7884: $? = 0 configure:7983: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:7987: $? = 0 configure:7993: ./conftest configure:7997: $? = 0 configure:8015: result: yes configure:8039: checking for sys/types.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for sys/stat.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for stdlib.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for string.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for memory.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for strings.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for inttypes.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for stdint.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8039: checking for unistd.h configure:8060: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8067: $? = 0 configure:8084: result: yes configure:8102: checking for dlfcn.h configure:8123: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:8130: $? = 0 configure:8147: result: yes configure:8301: checking for objdir configure:8316: result: .libs configure:8608: checking if cc supports -fno-rtti -fno-exceptions configure:8626: cc -c -O2 -fno-strict-aliasing -pipe -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:8630: $? = 0 configure:8643: result: no configure:8663: checking for cc option to produce PIC configure:8935: result: -fPIC -DPIC configure:8947: checking if cc PIC flag -fPIC -DPIC works configure:8965: cc -c -O2 -fno-strict-aliasing -pipe -fPIC -DPIC -DPIC conftest.c >&5 configure:8969: $? = 0 configure:8982: result: yes configure:9006: checking if cc static flag -static works configure:9034: result: yes configure:9049: checking if cc supports -c -o file.o configure:9070: cc -c -O2 -fno-strict-aliasing -pipe -o out/conftest2.o conftest.c >&5 configure:9074: $? = 0 configure:9096: result: yes configure:9104: checking if cc supports -c -o file.o configure:9151: result: yes configure:9184: checking whether the cc linker (/usr/bin/ld) supports shared libraries configure:10258: result: yes configure:10295: checking whether -lc should be explicitly linked in configure:10300: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:10303: $? = 0 configure:10318: cc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 configure:10321: $? = 0 configure:10333: result: no configure:10497: checking dynamic linker characteristics configure:11183: result: freebsd7.2 ld.so configure:11285: checking how to hardcode library paths into programs configure:11310: result: immediate configure:12143: checking whether stripping libraries is possible configure:12148: result: yes configure:12183: checking if libtool supports shared libraries configure:12185: result: yes configure:12188: checking whether to build shared libraries configure:12209: result: yes configure:12212: checking whether to build static libraries configure:12216: result: no configure:12257: checking for bash configure:12290: result: no configure:12295: checking if dolt supports this host configure:12317: result: no, falling back to libtool configure:12448: checking whether make sets $(MAKE) configure:12470: result: yes configure:12528: checking for pkg-config configure:12546: found /usr/local/bin/pkg-config configure:12558: result: /usr/local/bin/pkg-config configure:12583: checking pkg-config is at least version 0.9.0 configure:12586: result: yes configure:12599: checking for flex configure:12615: found /usr/bin/flex configure:12626: result: flex configure:12663: flex conftest.l configure:12667: $? = 0 configure:12669: checking lex output file root configure:12685: result: lex.yy configure:12690: checking lex library configure:12709: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.l: In function 'yylex': conftest.l:6: warning: comparison between pointer and integer conftest.l:6: warning: assignment makes pointer from integer without a cast /var/tmp//cc1i7V5s.o(.text+0x846): In function `input': : undefined reference to `yywrap' /var/tmp//cc1i7V5s.o(.text+0xc9f): In function `yylex': : undefined reference to `yywrap' /var/tmp//cc1i7V5s.o(.text+0xe2f): In function `main': : undefined reference to `yywrap' configure:12716: $? = 1 configure: failed program was: | /* A lexical scanner generated by flex */ | | /* Scanner skeleton version: | * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ | * $FreeBSD: src/usr.bin/lex/flex.skl,v 1.8.28.1 2009/04/15 03:14:26 kensmith Exp $ | */ | | #if defined(__FreeBSD__) | #include | #else | #define __unused | #endif | | #define FLEX_SCANNER | #define YY_FLEX_MAJOR_VERSION 2 | #define YY_FLEX_MINOR_VERSION 5 | | #include | | | /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ | #ifdef c_plusplus | #ifndef __cplusplus | #define __cplusplus | #endif | #endif | | | #ifdef __cplusplus | | #include | #include | | /* Use prototypes in function declarations. */ | #define YY_USE_PROTOS | | /* The "const" storage-class-modifier is valid. */ | #define YY_USE_CONST | | #else /* ! __cplusplus */ | | #if __STDC__ | | #define YY_USE_PROTOS | #define YY_USE_CONST | | #endif /* __STDC__ */ | #endif /* ! __cplusplus */ | | #ifdef __TURBOC__ | #pragma warn -rch | #pragma warn -use | #include | #include | #define YY_USE_CONST | #define YY_USE_PROTOS | #endif | | #ifdef YY_USE_CONST | #define yyconst const | #else | #define yyconst | #endif | | | #ifdef YY_USE_PROTOS | #define YY_PROTO(proto) proto | #else | #define YY_PROTO(proto) () | #endif | | /* Returned upon end-of-file. */ | #define YY_NULL 0 | | /* Promotes a possibly negative, possibly signed char to an unsigned | * integer for use as an array index. If the signed char is negative, | * we want to instead treat it as an 8-bit unsigned char, hence the | * double cast. | */ | #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) | | /* Enter a start condition. This macro really ought to take a parameter, | * but we do it the disgusting crufty way forced on us by the ()-less | * definition of BEGIN. | */ | #define BEGIN yy_start = 1 + 2 * | | /* Translate the current start state into a value that can be later handed | * to BEGIN to return to the state. The YYSTATE alias is for lex | * compatibility. | */ | #define YY_START ((yy_start - 1) / 2) | #define YYSTATE YY_START | | /* Action number for EOF rule of a given start state. */ | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) | | /* Special action meaning "start processing a new file". */ | #define YY_NEW_FILE yyrestart( yyin ) | | #define YY_END_OF_BUFFER_CHAR 0 | | /* Size of default input buffer. */ | #define YY_BUF_SIZE 16384 | | typedef struct yy_buffer_state *YY_BUFFER_STATE; | | extern int yyleng; | extern FILE *yyin, *yyout; | | #define EOB_ACT_CONTINUE_SCAN 0 | #define EOB_ACT_END_OF_FILE 1 | #define EOB_ACT_LAST_MATCH 2 | | /* The funky do-while in the following #define is used to turn the definition | * int a single C statement (which needs a semi-colon terminator). This | * avoids problems with code like: | * | * if ( condition_holds ) | * yyless( 5 ); | * else | * do_something_else(); | * | * Prior to using the do-while the compiler would get upset at the | * "else" because it interpreted the "if" statement as being all | * done when it reached the ';' after the yyless() call. | */ | | /* Return all but the first 'n' matched characters back to the input stream. */ | | #define yyless(n) \ | do \ | { \ | /* Undo effects of setting up yytext. */ \ | *yy_cp = yy_hold_char; \ | YY_RESTORE_YY_MORE_OFFSET \ | yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ | } \ | while ( 0 ) | | #define unput(c) yyunput( c, yytext_ptr ) | | /* The following is because we cannot portably get our hands on size_t | * (without autoconf's help, which isn't available because we want | * flex-generated scanners to compile on their own). | */ | typedef unsigned int yy_size_t; | | | struct yy_buffer_state | { | FILE *yy_input_file; | | char *yy_ch_buf; /* input buffer */ | char *yy_buf_pos; /* current position in input buffer */ | | /* Size of input buffer in bytes, not including room for EOB | * characters. | */ | yy_size_t yy_buf_size; | | /* Number of characters read into yy_ch_buf, not including EOB | * characters. | */ | int yy_n_chars; | | /* Whether we "own" the buffer - i.e., we know we created it, | * and can realloc() it to grow it, and should free() it to | * delete it. | */ | int yy_is_our_buffer; | | /* Whether this is an "interactive" input source; if so, and | * if we're using stdio for input, then we want to use getc() | * instead of fread(), to make sure we stop fetching input after | * each newline. | */ | int yy_is_interactive; | | /* Whether we're considered to be at the beginning of a line. | * If so, '^' rules will be active on the next match, otherwise | * not. | */ | int yy_at_bol; | | /* Whether to try to fill the input buffer when we reach the | * end of it. | */ | int yy_fill_buffer; | | int yy_buffer_status; | #define YY_BUFFER_NEW 0 | #define YY_BUFFER_NORMAL 1 | /* When an EOF's been seen but there's still some text to process | * then we mark the buffer as YY_EOF_PENDING, to indicate that we | * shouldn't try reading from the input source any more. We might | * still have a bunch of tokens to match, though, because of | * possible backing-up. | * | * When we actually see the EOF, we change the status to "new" | * (via yyrestart()), so that the user can continue scanning by | * just pointing yyin at a new input file. | */ | #define YY_BUFFER_EOF_PENDING 2 | }; | | static YY_BUFFER_STATE yy_current_buffer = 0; | | /* We provide macros for accessing buffer states in case in the | * future we want to put the buffer states in a more general | * "scanner state". | */ | #define YY_CURRENT_BUFFER yy_current_buffer | | | /* yy_hold_char holds the character lost when yytext is formed. */ | static char yy_hold_char; | | static int yy_n_chars; /* number of characters read into yy_ch_buf */ | | | int yyleng; | | /* Points to current character in buffer. */ | static char *yy_c_buf_p = (char *) 0; | static int yy_init = 1; /* whether we need to initialize */ | static int yy_start = 0; /* start state number */ | | /* Flag which is used to allow yywrap()'s to do buffer switches | * instead of setting up a fresh yyin. A bit of a hack ... | */ | static int yy_did_buffer_switch_on_eof; | | void yyrestart YY_PROTO(( FILE *input_file )); | | void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); | void yy_load_buffer_state YY_PROTO(( void )); | YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); | void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); | void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); | void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); | #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) | | YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); | YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); | YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); | | static void *yy_flex_alloc YY_PROTO(( yy_size_t )); | static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )) __unused; | static void yy_flex_free YY_PROTO(( void * )); | | #define yy_new_buffer yy_create_buffer | | #define yy_set_interactive(is_interactive) \ | { \ | if ( ! yy_current_buffer ) \ | yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ | yy_current_buffer->yy_is_interactive = is_interactive; \ | } | | #define yy_set_bol(at_bol) \ | { \ | if ( ! yy_current_buffer ) \ | yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ | yy_current_buffer->yy_at_bol = at_bol; \ | } | | #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) | | | #define YY_USES_REJECT | typedef unsigned char YY_CHAR; | FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; | typedef int yy_state_type; | extern char *yytext; | #define yytext_ptr yytext | | static yy_state_type yy_get_previous_state YY_PROTO(( void )); | static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); | static int yy_get_next_buffer YY_PROTO(( void )); | static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); | | /* Done after the current pattern has been matched and before the | * corresponding action - sets up yytext. | */ | #define YY_DO_BEFORE_ACTION \ | yytext_ptr = yy_bp; \ | yytext_ptr -= yy_more_len; \ | yyleng = (int) (yy_cp - yytext_ptr); \ | yy_hold_char = *yy_cp; \ | *yy_cp = '\0'; \ | yy_c_buf_p = yy_cp; | | #define YY_NUM_RULES 8 | #define YY_END_OF_BUFFER 9 | static yyconst short int yy_acclist[23] = | { 0, | 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, | 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, | 7, 8 | } ; | | static yyconst short int yy_accept[14] = | { 0, | 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, | 20, 23, 23 | } ; | | static yyconst int yy_ec[256] = | { 0, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, | | 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | 1, 1, 1, 1, 1 | } ; | | static yyconst int yy_meta[9] = | { 0, | 1, 1, 1, 1, 1, 1, 1, 1 | } ; | | static yyconst short int yy_base[13] = | { 0, | 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, | 10, 10 | } ; | | static yyconst short int yy_def[13] = | { 0, | 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, | 12, 0 | } ; | | static yyconst short int yy_nxt[19] = | { 0, | 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, | 12, 12, 12, 12, 12, 12, 12, 12 | } ; | | static yyconst short int yy_chk[19] = | { 0, | 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, | 12, 12, 12, 12, 12, 12, 12, 12 | } ; | | static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; | static char *yy_full_match; | static int yy_lp; | #define REJECT \ | { \ | *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ | yy_cp = yy_full_match; /* restore poss. backed-over text */ \ | ++yy_lp; \ | goto find_rule; \ | } | static int yy_more_flag = 0; | static int yy_more_len = 0; | #define yymore() (yy_more_flag = 1) | #define YY_MORE_ADJ yy_more_len | #define YY_RESTORE_YY_MORE_OFFSET | char *yytext; | #line 1 "conftest.l" | #define INITIAL 0 | #line 390 "lex.yy.c" | | /* Macros after this point can all be overridden by user definitions in | * section 1. | */ | | #ifndef YY_SKIP_YYWRAP | #ifdef __cplusplus | extern "C" int yywrap YY_PROTO(( void )); | #else | extern int yywrap YY_PROTO(( void )); | #endif | #endif | | #ifndef YY_NO_UNPUT | static void yyunput YY_PROTO(( int c, char *buf_ptr )); | #endif | | #ifndef yytext_ptr | static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); | #endif | | #ifdef YY_NEED_STRLEN | static int yy_flex_strlen YY_PROTO(( yyconst char * )); | #endif | | #ifndef YY_NO_INPUT | #ifdef __cplusplus | static int yyinput YY_PROTO(( void )); | #else | static int input YY_PROTO(( void )); | #endif | #endif | | #if YY_STACK_USED | static int yy_start_stack_ptr = 0; | static int yy_start_stack_depth = 0; | static int *yy_start_stack = 0; | #ifndef YY_NO_PUSH_STATE | static void yy_push_state YY_PROTO(( int new_state )); | #endif | #ifndef YY_NO_POP_STATE | static void yy_pop_state YY_PROTO(( void )); | #endif | #ifndef YY_NO_TOP_STATE | static int yy_top_state YY_PROTO(( void )); | #endif | | #else | #define YY_NO_PUSH_STATE 1 | #define YY_NO_POP_STATE 1 | #define YY_NO_TOP_STATE 1 | #endif | | #ifdef YY_MALLOC_DECL | YY_MALLOC_DECL | #else | #if __STDC__ | #ifndef __cplusplus | #include | #endif | #else | /* Just try to get by without declaring the routines. This will fail | * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) | * or sizeof(void*) != sizeof(int). | */ | #endif | #endif | | /* Amount of stuff to slurp up with each read. */ | #ifndef YY_READ_BUF_SIZE | #define YY_READ_BUF_SIZE 8192 | #endif | | /* Copy whatever the last rule matched to the standard output. */ | | #ifndef ECHO | /* This used to be an fputs(), but since the string might contain NUL's, | * we now use fwrite(). | */ | #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) | #endif | | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, | * is returned in "result". | */ | #ifndef YY_INPUT | #define YY_INPUT(buf,result,max_size) \ | if ( yy_current_buffer->yy_is_interactive ) \ | { \ | int c = '*', n; \ | for ( n = 0; n < max_size && \ | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ | buf[n] = (char) c; \ | if ( c == '\n' ) \ | buf[n++] = (char) c; \ | if ( c == EOF && ferror( yyin ) ) \ | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | result = n; \ | } \ | else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ | && ferror( yyin ) ) \ | YY_FATAL_ERROR( "input in flex scanner failed" ); | #endif | | /* No semi-colon after return; correct usage is to write "yyterminate();" - | * we don't want an extra ';' after the "return" because that will cause | * some compilers to complain about unreachable statements. | */ | #ifndef yyterminate | #define yyterminate() return YY_NULL | #endif | | /* Number of entries by which start-condition stack grows. */ | #ifndef YY_START_STACK_INCR | #define YY_START_STACK_INCR 25 | #endif | | /* Report a fatal error. */ | #ifndef YY_FATAL_ERROR | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) | #endif | | /* Default declaration of generated scanner - a define so the user can | * easily add parameters. | */ | #ifndef YY_DECL | #define YY_DECL int yylex YY_PROTO(( void )) | #endif | | /* Code executed at the beginning of each rule, after yytext and yyleng | * have been set up. | */ | #ifndef YY_USER_ACTION | #define YY_USER_ACTION | #endif | | /* Code executed at the end of each rule. */ | #ifndef YY_BREAK | #define YY_BREAK break; | #endif | | #define YY_RULE_SETUP \ | YY_USER_ACTION | | YY_DECL | { | register yy_state_type yy_current_state; | register char *yy_cp, *yy_bp; | register int yy_act; | | #line 1 "conftest.l" | | #line 543 "lex.yy.c" | | if ( yy_init ) | { | yy_init = 0; | | #ifdef YY_USER_INIT | YY_USER_INIT; | #endif | | if ( ! yy_start ) | yy_start = 1; /* first start state */ | | if ( ! yyin ) | yyin = stdin; | | if ( ! yyout ) | yyout = stdout; | | if ( ! yy_current_buffer ) | yy_current_buffer = | yy_create_buffer( yyin, YY_BUF_SIZE ); | | yy_load_buffer_state(); | } | | while ( 1 ) /* loops until end-of-file is reached */ | { | yy_more_len = 0; | if ( yy_more_flag ) | { | yy_more_len = yy_c_buf_p - yytext_ptr; | yy_more_flag = 0; | } | yy_cp = yy_c_buf_p; | | /* Support of yytext. */ | *yy_cp = yy_hold_char; | | /* yy_bp points to the position in yy_ch_buf of the start of | * the current run. | */ | yy_bp = yy_cp; | | yy_current_state = yy_start; | yy_state_ptr = yy_state_buf; | *yy_state_ptr++ = yy_current_state; | yy_match: | do | { | register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | { | yy_current_state = (int) yy_def[yy_current_state]; | if ( yy_current_state >= 13 ) | yy_c = yy_meta[(unsigned int) yy_c]; | } | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | *yy_state_ptr++ = yy_current_state; | ++yy_cp; | } | while ( yy_base[yy_current_state] != 10 ); | | yy_find_action: | yy_current_state = *--yy_state_ptr; | yy_lp = yy_accept[yy_current_state]; | goto find_rule; /* avoid `defined but not used' warning */ | find_rule: /* we branch to this label when backing up */ | for ( ; ; ) /* until we find what rule we matched */ | { | if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) | { | yy_act = yy_acclist[yy_lp]; | { | yy_full_match = yy_cp; | break; | } | } | --yy_cp; | yy_current_state = *--yy_state_ptr; | yy_lp = yy_accept[yy_current_state]; | } | | YY_DO_BEFORE_ACTION; | | | do_action: /* This label is used only to access EOF actions. */ | | | switch ( yy_act ) | { /* beginning of action switch */ | case 1: | YY_RULE_SETUP | #line 2 "conftest.l" | { ECHO; } | YY_BREAK | case 2: | YY_RULE_SETUP | #line 3 "conftest.l" | { REJECT; } | YY_BREAK | case 3: | YY_RULE_SETUP | #line 4 "conftest.l" | { yymore (); } | YY_BREAK | case 4: | YY_RULE_SETUP | #line 5 "conftest.l" | { yyless (1); } | YY_BREAK | case 5: | YY_RULE_SETUP | #line 6 "conftest.l" | { yyless (input () != 0); } | YY_BREAK | case 6: | YY_RULE_SETUP | #line 7 "conftest.l" | { unput (yytext[0]); } | YY_BREAK | case 7: | YY_RULE_SETUP | #line 8 "conftest.l" | { BEGIN INITIAL; } | YY_BREAK | case 8: | YY_RULE_SETUP | #line 9 "conftest.l" | ECHO; | YY_BREAK | #line 674 "lex.yy.c" | case YY_STATE_EOF(INITIAL): | yyterminate(); | | case YY_END_OF_BUFFER: | { | /* Amount of text matched not including the EOB char. */ | int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; | | /* Undo the effects of YY_DO_BEFORE_ACTION. */ | *yy_cp = yy_hold_char; | YY_RESTORE_YY_MORE_OFFSET | | if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) | { | /* We're scanning a new file or input source. It's | * possible that this happened because the user | * just pointed yyin at a new source and called | * yylex(). If so, then we have to assure | * consistency between yy_current_buffer and our | * globals. Here is the right place to do so, because | * this is the first action (other than possibly a | * back-up) that will match for the new input source. | */ | yy_n_chars = yy_current_buffer->yy_n_chars; | yy_current_buffer->yy_input_file = yyin; | yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; | } | | /* Note that here we test for yy_c_buf_p "<=" to the position | * of the first EOB in the buffer, since yy_c_buf_p will | * already have been incremented past the NUL character | * (since all states make transitions on EOB to the | * end-of-buffer state). Contrast this with the test | * in input(). | */ | if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) | { /* This was really a NUL. */ | yy_state_type yy_next_state; | | yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; | | yy_current_state = yy_get_previous_state(); | | /* Okay, we're now positioned to make the NUL | * transition. We couldn't have | * yy_get_previous_state() go ahead and do it | * for us because it doesn't know how to deal | * with the possibility of jamming (and we don't | * want to build jamming into it because then it | * will run more slowly). | */ | | yy_next_state = yy_try_NUL_trans( yy_current_state ); | | yy_bp = yytext_ptr + YY_MORE_ADJ; | | if ( yy_next_state ) | { | /* Consume the NUL. */ | yy_cp = ++yy_c_buf_p; | yy_current_state = yy_next_state; | goto yy_match; | } | | else | { | yy_cp = yy_c_buf_p; | goto yy_find_action; | } | } | | else switch ( yy_get_next_buffer() ) | { | case EOB_ACT_END_OF_FILE: | { | yy_did_buffer_switch_on_eof = 0; | | if ( yywrap() ) | { | /* Note: because we've taken care in | * yy_get_next_buffer() to have set up | * yytext, we can now set up | * yy_c_buf_p so that if some total | * hoser (like flex itself) wants to | * call the scanner after we return the | * YY_NULL, it'll still work - another | * YY_NULL will get returned. | */ | yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; | | yy_act = YY_STATE_EOF(YY_START); | goto do_action; | } | | else | { | if ( ! yy_did_buffer_switch_on_eof ) | YY_NEW_FILE; | } | break; | } | | case EOB_ACT_CONTINUE_SCAN: | yy_c_buf_p = | yytext_ptr + yy_amount_of_matched_text; | | yy_current_state = yy_get_previous_state(); | | yy_cp = yy_c_buf_p; | yy_bp = yytext_ptr + YY_MORE_ADJ; | goto yy_match; | | case EOB_ACT_LAST_MATCH: | yy_c_buf_p = | &yy_current_buffer->yy_ch_buf[yy_n_chars]; | | yy_current_state = yy_get_previous_state(); | | yy_cp = yy_c_buf_p; | yy_bp = yytext_ptr + YY_MORE_ADJ; | goto yy_find_action; | } | break; | } | | default: | YY_FATAL_ERROR( | "fatal flex scanner internal error--no action found" ); | } /* end of action switch */ | } /* end of scanning one token */ | } /* end of yylex */ | | | /* yy_get_next_buffer - try to read in a new buffer | * | * Returns a code representing an action: | * EOB_ACT_LAST_MATCH - | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position | * EOB_ACT_END_OF_FILE - end of file | */ | | static int yy_get_next_buffer() | { | register char *dest = yy_current_buffer->yy_ch_buf; | register char *source = yytext_ptr; | register int number_to_move, i; | int ret_val; | | if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) | YY_FATAL_ERROR( | "fatal flex scanner internal error--end of buffer missed" ); | | if ( yy_current_buffer->yy_fill_buffer == 0 ) | { /* Don't try to fill the buffer, so this is an EOF. */ | if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) | { | /* We matched a single character, the EOB, so | * treat this as a final EOF. | */ | return EOB_ACT_END_OF_FILE; | } | | else | { | /* We matched some text prior to the EOB, first | * process it. | */ | return EOB_ACT_LAST_MATCH; | } | } | | /* Try to read more data. */ | | /* First move last chars to start of buffer. */ | number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; | | for ( i = 0; i < number_to_move; ++i ) | *(dest++) = *(source++); | | if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) | /* don't do the read, it's not guaranteed to return an EOF, | * just force an EOF | */ | yy_current_buffer->yy_n_chars = yy_n_chars = 0; | | else | { | int num_to_read = | yy_current_buffer->yy_buf_size - number_to_move - 1; | | while ( num_to_read <= 0 ) | { /* Not enough room in the buffer - grow it. */ | #ifdef YY_USES_REJECT | YY_FATAL_ERROR( | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); | #else | | /* just a shorter name for the current buffer */ | YY_BUFFER_STATE b = yy_current_buffer; | | int yy_c_buf_p_offset = | (int) (yy_c_buf_p - b->yy_ch_buf); | | if ( b->yy_is_our_buffer ) | { | int new_size = b->yy_buf_size * 2; | | if ( new_size <= 0 ) | b->yy_buf_size += b->yy_buf_size / 8; | else | b->yy_buf_size *= 2; | | b->yy_ch_buf = (char *) | /* Include room in for 2 EOB chars. */ | yy_flex_realloc( (void *) b->yy_ch_buf, | b->yy_buf_size + 2 ); | } | else | /* Can't grow it, we don't own it. */ | b->yy_ch_buf = 0; | | if ( ! b->yy_ch_buf ) | YY_FATAL_ERROR( | "fatal error - scanner input buffer overflow" ); | | yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; | | num_to_read = yy_current_buffer->yy_buf_size - | number_to_move - 1; | #endif | } | | if ( num_to_read > YY_READ_BUF_SIZE ) | num_to_read = YY_READ_BUF_SIZE; | | /* Read in more data. */ | YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), | yy_n_chars, num_to_read ); | | yy_current_buffer->yy_n_chars = yy_n_chars; | } | | if ( yy_n_chars == 0 ) | { | if ( number_to_move == YY_MORE_ADJ ) | { | ret_val = EOB_ACT_END_OF_FILE; | yyrestart( yyin ); | } | | else | { | ret_val = EOB_ACT_LAST_MATCH; | yy_current_buffer->yy_buffer_status = | YY_BUFFER_EOF_PENDING; | } | } | | else | ret_val = EOB_ACT_CONTINUE_SCAN; | | yy_n_chars += number_to_move; | yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; | yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; | | yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; | | return ret_val; | } | | | /* yy_get_previous_state - get the state just before the EOB char was reached */ | | static yy_state_type yy_get_previous_state() | { | register yy_state_type yy_current_state; | register char *yy_cp; | | yy_current_state = yy_start; | yy_state_ptr = yy_state_buf; | *yy_state_ptr++ = yy_current_state; | | for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) | { | register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | { | yy_current_state = (int) yy_def[yy_current_state]; | if ( yy_current_state >= 13 ) | yy_c = yy_meta[(unsigned int) yy_c]; | } | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | *yy_state_ptr++ = yy_current_state; | } | | return yy_current_state; | } | | | /* yy_try_NUL_trans - try to make a transition on the NUL character | * | * synopsis | * next_state = yy_try_NUL_trans( current_state ); | */ | | #ifdef YY_USE_PROTOS | static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) | #else | static yy_state_type yy_try_NUL_trans( yy_current_state ) | yy_state_type yy_current_state; | #endif | { | register int yy_is_jam; | | register YY_CHAR yy_c = 1; | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | { | yy_current_state = (int) yy_def[yy_current_state]; | if ( yy_current_state >= 13 ) | yy_c = yy_meta[(unsigned int) yy_c]; | } | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; | yy_is_jam = (yy_current_state == 12); | if ( ! yy_is_jam ) | *yy_state_ptr++ = yy_current_state; | | return yy_is_jam ? 0 : yy_current_state; | } | | | #ifndef YY_NO_UNPUT | #ifdef YY_USE_PROTOS | static void yyunput( int c, register char *yy_bp ) | #else | static void yyunput( c, yy_bp ) | int c; | register char *yy_bp; | #endif | { | register char *yy_cp = yy_c_buf_p; | | /* undo effects of setting up yytext */ | *yy_cp = yy_hold_char; | | if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) | { /* need to shift things up to make room */ | /* +2 for EOB chars. */ | register int number_to_move = yy_n_chars + 2; | register char *dest = &yy_current_buffer->yy_ch_buf[ | yy_current_buffer->yy_buf_size + 2]; | register char *source = | &yy_current_buffer->yy_ch_buf[number_to_move]; | | while ( source > yy_current_buffer->yy_ch_buf ) | *--dest = *--source; | | yy_cp += (int) (dest - source); | yy_bp += (int) (dest - source); | yy_current_buffer->yy_n_chars = | yy_n_chars = yy_current_buffer->yy_buf_size; | | if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) | YY_FATAL_ERROR( "flex scanner push-back overflow" ); | } | | *--yy_cp = (char) c; | | | yytext_ptr = yy_bp; | yy_hold_char = *yy_cp; | yy_c_buf_p = yy_cp; | } | #endif /* ifndef YY_NO_UNPUT */ | | | #ifdef __cplusplus | static int yyinput() | #else | static int input() | #endif | { | int c; | | *yy_c_buf_p = yy_hold_char; | | if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) | { | /* yy_c_buf_p now points to the character we want to return. | * If this occurs *before* the EOB characters, then it's a | * valid NUL; if not, then we've hit the end of the buffer. | */ | if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) | /* This was really a NUL. */ | *yy_c_buf_p = '\0'; | | else | { /* need more input */ | int offset = yy_c_buf_p - yytext_ptr; | ++yy_c_buf_p; | | switch ( yy_get_next_buffer() ) | { | case EOB_ACT_LAST_MATCH: | /* This happens because yy_g_n_b() | * sees that we've accumulated a | * token and flags that we need to | * try matching the token before | * proceeding. But for input(), | * there's no matching to consider. | * So convert the EOB_ACT_LAST_MATCH | * to EOB_ACT_END_OF_FILE. | */ | | /* Reset buffer status. */ | yyrestart( yyin ); | | /* fall through */ | | case EOB_ACT_END_OF_FILE: | { | if ( yywrap() ) | return EOF; | | if ( ! yy_did_buffer_switch_on_eof ) | YY_NEW_FILE; | #ifdef __cplusplus | return yyinput(); | #else | return input(); | #endif | } | | case EOB_ACT_CONTINUE_SCAN: | yy_c_buf_p = yytext_ptr + offset; | break; | } | } | } | | c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ | *yy_c_buf_p = '\0'; /* preserve yytext */ | yy_hold_char = *++yy_c_buf_p; | | | return c; | } | | | #ifdef YY_USE_PROTOS | void yyrestart( FILE *input_file ) | #else | void yyrestart( input_file ) | FILE *input_file; | #endif | { | if ( ! yy_current_buffer ) | yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); | | yy_init_buffer( yy_current_buffer, input_file ); | yy_load_buffer_state(); | } | | | #ifdef YY_USE_PROTOS | void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) | #else | void yy_switch_to_buffer( new_buffer ) | YY_BUFFER_STATE new_buffer; | #endif | { | if ( yy_current_buffer == new_buffer ) | return; | | if ( yy_current_buffer ) | { | /* Flush out information for old buffer. */ | *yy_c_buf_p = yy_hold_char; | yy_current_buffer->yy_buf_pos = yy_c_buf_p; | yy_current_buffer->yy_n_chars = yy_n_chars; | } | | yy_current_buffer = new_buffer; | yy_load_buffer_state(); | | /* We don't actually know whether we did this switch during | * EOF (yywrap()) processing, but the only time this flag | * is looked at is after yywrap() is called, so it's safe | * to go ahead and always set it. | */ | yy_did_buffer_switch_on_eof = 1; | } | | | #ifdef YY_USE_PROTOS | void yy_load_buffer_state( void ) | #else | void yy_load_buffer_state() | #endif | { | yy_n_chars = yy_current_buffer->yy_n_chars; | yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; | yyin = yy_current_buffer->yy_input_file; | yy_hold_char = *yy_c_buf_p; | } | | | #ifdef YY_USE_PROTOS | YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) | #else | YY_BUFFER_STATE yy_create_buffer( file, size ) | FILE *file; | int size; | #endif | { | YY_BUFFER_STATE b; | | b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); | if ( ! b ) | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | b->yy_buf_size = size; | | /* yy_ch_buf has to be 2 characters longer than the size given because | * we need to put in 2 end-of-buffer characters. | */ | b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); | if ( ! b->yy_ch_buf ) | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | b->yy_is_our_buffer = 1; | | yy_init_buffer( b, file ); | | return b; | } | | | #ifdef YY_USE_PROTOS | void yy_delete_buffer( YY_BUFFER_STATE b ) | #else | void yy_delete_buffer( b ) | YY_BUFFER_STATE b; | #endif | { | if ( ! b ) | return; | | if ( b == yy_current_buffer ) | yy_current_buffer = (YY_BUFFER_STATE) 0; | | if ( b->yy_is_our_buffer ) | yy_flex_free( (void *) b->yy_ch_buf ); | | yy_flex_free( (void *) b ); | } | | | #ifndef YY_ALWAYS_INTERACTIVE | #ifndef YY_NEVER_INTERACTIVE | extern int isatty YY_PROTO(( int )); | #endif | #endif | | #ifdef YY_USE_PROTOS | void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) | #else | void yy_init_buffer( b, file ) | YY_BUFFER_STATE b; | FILE *file; | #endif | | | { | yy_flush_buffer( b ); | | b->yy_input_file = file; | b->yy_fill_buffer = 1; | | #if YY_ALWAYS_INTERACTIVE | b->yy_is_interactive = 1; | #else | #if YY_NEVER_INTERACTIVE | b->yy_is_interactive = 0; | #else | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; | #endif | #endif | } | | | #ifdef YY_USE_PROTOS | void yy_flush_buffer( YY_BUFFER_STATE b ) | #else | void yy_flush_buffer( b ) | YY_BUFFER_STATE b; | #endif | | { | if ( ! b ) | return; | | b->yy_n_chars = 0; | | /* We always need two end-of-buffer characters. The first causes | * a transition to the end-of-buffer state. The second causes | * a jam in that state. | */ | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; | | b->yy_buf_pos = &b->yy_ch_buf[0]; | | b->yy_at_bol = 1; | b->yy_buffer_status = YY_BUFFER_NEW; | | if ( b == yy_current_buffer ) | yy_load_buffer_state(); | } | | | #ifndef YY_NO_SCAN_BUFFER | #ifdef YY_USE_PROTOS | YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) | #else | YY_BUFFER_STATE yy_scan_buffer( base, size ) | char *base; | yy_size_t size; | #endif | { | YY_BUFFER_STATE b; | | if ( size < 2 || | base[size-2] != YY_END_OF_BUFFER_CHAR || | base[size-1] != YY_END_OF_BUFFER_CHAR ) | /* They forgot to leave room for the EOB's. */ | return 0; | | b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); | if ( ! b ) | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); | | b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ | b->yy_buf_pos = b->yy_ch_buf = base; | b->yy_is_our_buffer = 0; | b->yy_input_file = 0; | b->yy_n_chars = b->yy_buf_size; | b->yy_is_interactive = 0; | b->yy_at_bol = 1; | b->yy_fill_buffer = 0; | b->yy_buffer_status = YY_BUFFER_NEW; | | yy_switch_to_buffer( b ); | | return b; | } | #endif | | | #ifndef YY_NO_SCAN_STRING | #ifdef YY_USE_PROTOS | YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) | #else | YY_BUFFER_STATE yy_scan_string( yy_str ) | yyconst char *yy_str; | #endif | { | int len; | for ( len = 0; yy_str[len]; ++len ) | ; | | return yy_scan_bytes( yy_str, len ); | } | #endif | | | #ifndef YY_NO_SCAN_BYTES | #ifdef YY_USE_PROTOS | YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) | #else | YY_BUFFER_STATE yy_scan_bytes( bytes, len ) | yyconst char *bytes; | int len; | #endif | { | YY_BUFFER_STATE b; | char *buf; | yy_size_t n; | int i; | | /* Get memory for full buffer, including space for trailing EOB's. */ | n = len + 2; | buf = (char *) yy_flex_alloc( n ); | if ( ! buf ) | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); | | for ( i = 0; i < len; ++i ) | buf[i] = bytes[i]; | | buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; | | b = yy_scan_buffer( buf, n ); | if ( ! b ) | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); | | /* It's okay to grow etc. this buffer, and we should throw it | * away when we're done. | */ | b->yy_is_our_buffer = 1; | | return b; | } | #endif | | | #ifndef YY_NO_PUSH_STATE | #ifdef YY_USE_PROTOS | static void yy_push_state( int new_state ) | #else | static void yy_push_state( new_state ) | int new_state; | #endif | { | if ( yy_start_stack_ptr >= yy_start_stack_depth ) | { | yy_size_t new_size; | | yy_start_stack_depth += YY_START_STACK_INCR; | new_size = yy_start_stack_depth * sizeof( int ); | | if ( ! yy_start_stack ) | yy_start_stack = (int *) yy_flex_alloc( new_size ); | | else | yy_start_stack = (int *) yy_flex_realloc( | (void *) yy_start_stack, new_size ); | | if ( ! yy_start_stack ) | YY_FATAL_ERROR( | "out of memory expanding start-condition stack" ); | } | | yy_start_stack[yy_start_stack_ptr++] = YY_START; | | BEGIN(new_state); | } | #endif | | | #ifndef YY_NO_POP_STATE | static void yy_pop_state() | { | if ( --yy_start_stack_ptr < 0 ) | YY_FATAL_ERROR( "start-condition stack underflow" ); | | BEGIN(yy_start_stack[yy_start_stack_ptr]); | } | #endif | | | #ifndef YY_NO_TOP_STATE | static int yy_top_state() | { | return yy_start_stack[yy_start_stack_ptr - 1]; | } | #endif | | #ifndef YY_EXIT_FAILURE | #define YY_EXIT_FAILURE 2 | #endif | | #ifdef YY_USE_PROTOS | static void yy_fatal_error( yyconst char msg[] ) | #else | static void yy_fatal_error( msg ) | char msg[]; | #endif | { | (void) fprintf( stderr, "%s\n", msg ); | exit( YY_EXIT_FAILURE ); | } | | | | /* Redefine yyless() so it works in section 3 code. */ | | #undef yyless | #define yyless(n) \ | do \ | { \ | /* Undo effects of setting up yytext. */ \ | yytext[yyleng] = yy_hold_char; \ | yy_c_buf_p = yytext + n; \ | yy_hold_char = *yy_c_buf_p; \ | *yy_c_buf_p = '\0'; \ | yyleng = n; \ | } \ | while ( 0 ) | | | /* Internal utility routines. */ | | #ifndef yytext_ptr | #ifdef YY_USE_PROTOS | static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) | #else | static void yy_flex_strncpy( s1, s2, n ) | char *s1; | yyconst char *s2; | int n; | #endif | { | register int i; | for ( i = 0; i < n; ++i ) | s1[i] = s2[i]; | } | #endif | | #ifdef YY_NEED_STRLEN | #ifdef YY_USE_PROTOS | static int yy_flex_strlen( yyconst char *s ) | #else | static int yy_flex_strlen( s ) | yyconst char *s; | #endif | { | register int n; | for ( n = 0; s[n]; ++n ) | ; | | return n; | } | #endif | | | #ifdef YY_USE_PROTOS | static void *yy_flex_alloc( yy_size_t size ) | #else | static void *yy_flex_alloc( size ) | yy_size_t size; | #endif | { | return (void *) malloc( size ); | } | | #ifdef YY_USE_PROTOS | static void *yy_flex_realloc( void *ptr, yy_size_t size ) | #else | static void *yy_flex_realloc( ptr, size ) | void *ptr; | yy_size_t size; | #endif | { | /* The cast to (char *) in the following accommodates both | * implementations that use char* generic pointers, and those | * that use void* generic pointers. It works with the latter | * because both ANSI C and C++ allow castless assignment from | * any pointer type to void*, and deal with argument conversions | * as though doing an assignment. | */ | return (void *) realloc( (char *) ptr, size ); | } | | #ifdef YY_USE_PROTOS | static void yy_flex_free( void *ptr ) | #else | static void yy_flex_free( ptr ) | void *ptr; | #endif | { | free( ptr ); | } | | #if YY_MAIN | int main() | { | yylex(); | return 0; | } | #endif | #line 9 "conftest.l" | | #ifdef YYTEXT_POINTER | extern char *yytext; | #endif | int | main (void) | { | return ! yylex () + ! yywrap (); | } configure:12709: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lfl >&5 conftest.l: In function 'yylex': conftest.l:6: warning: comparison between pointer and integer conftest.l:6: warning: assignment makes pointer from integer without a cast configure:12716: $? = 0 configure:12740: result: -lfl configure:12746: checking whether yytext is a pointer configure:12767: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lfl >&5 conftest.l: In function 'yylex': conftest.l:6: warning: comparison between pointer and integer conftest.l:6: warning: assignment makes pointer from integer without a cast configure:12774: $? = 0 configure:12796: result: yes configure:12812: checking for bison configure:12842: result: no configure:12812: checking for byacc configure:12828: found /usr/bin/byacc configure:12839: result: byacc configure:12858: checking for special C compiler options needed for large files configure:12953: result: no configure:12959: checking for _FILE_OFFSET_BITS value needed for large files configure:12994: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:13001: $? = 0 configure:13070: result: no configure:13213: checking for cpp configure:13232: found /usr/bin/cpp configure:13244: result: /usr/bin/cpp configure:13260: checking if /usr/bin/cpp requires -undef configure:13271: result: yes configure:13286: checking if /usr/bin/cpp requires -traditional configure:13297: result: yes configure:13310: checking for sed configure:13340: result: /usr/bin/sed configure:13585: checking for dirent.h that defines DIR configure:13614: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:13621: $? = 0 configure:13638: result: yes configure:13653: checking for library containing opendir configure:13694: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:13701: $? = 0 configure:13732: result: none required configure:13830: checking for ANSI C header files configure:13998: result: yes configure:14027: checking fcntl.h usability configure:14044: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:14051: $? = 0 configure:14065: result: yes configure:14069: checking fcntl.h presence configure:14084: cc -E conftest.c configure:14091: $? = 0 configure:14105: result: yes configure:14138: checking for fcntl.h configure:14147: result: yes configure:14016: checking for stdlib.h configure:14023: result: yes configure:14016: checking for string.h configure:14023: result: yes configure:14016: checking for unistd.h configure:14023: result: yes configure:14163: checking for an ANSI C-conforming const configure:14238: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:14245: $? = 0 configure:14260: result: yes configure:14271: checking whether byte ordering is bigendian configure:14296: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:30: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'a' configure:14303: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:14353: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:14360: $? = 0 configure:14392: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c: In function 'main': conftest.c:36: error: 'not' undeclared (first use in this function) conftest.c:36: error: (Each undeclared identifier is reported only once conftest.c:36: error: for each function it appears in.) conftest.c:36: error: expected ';' before 'big' configure:14399: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include | #include | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:14651: result: no configure:14678: checking size of unsigned long configure:14983: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:14987: $? = 0 configure:14993: ./conftest configure:14997: $? = 0 configure:15023: result: 4 configure:15041: checking for pid_t configure:15069: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:15076: $? = 0 configure:15103: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c: In function 'main': conftest.c:66: error: expected expression before ')' token configure:15110: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((pid_t))) | return 0; | ; | return 0; | } configure:15133: result: yes configure:15170: checking byteswap.h usability configure:15187: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:63:22: error: byteswap.h: No such file or directory configure:15194: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:15208: result: no configure:15212: checking byteswap.h presence configure:15227: cc -E conftest.c conftest.c:30:22: error: byteswap.h: No such file or directory configure:15234: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | /* end confdefs.h. */ | #include configure:15248: result: no configure:15281: checking for byteswap.h configure:15290: result: no configure:15317: checking sys/endian.h usability configure:15334: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:15341: $? = 0 configure:15355: result: yes configure:15359: checking sys/endian.h presence configure:15374: cc -E conftest.c configure:15381: $? = 0 configure:15395: result: yes configure:15428: checking for sys/endian.h configure:15435: result: yes configure:15448: checking for __swap16 variant of byteswapping macros configure:15478: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//ccQGrTs0.o(.text+0x19): In function `main': : undefined reference to `__swap16' configure:15485: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | /* end confdefs.h. */ | | #include | #include | | int | main () | { | | int a = 1, b; | b = __swap16(a); | | ; | return 0; | } | configure:15504: result: no configure:15507: checking for bswap16 variant of byteswapping macros configure:15537: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:15544: $? = 0 configure:15563: result: yes configure:15602: checking for dlopen configure:15658: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:15665: $? = 0 configure:15685: result: yes configure:15766: checking for vprintf configure:15822: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:57: warning: conflicting types for built-in function 'vprintf' configure:15829: $? = 0 configure:15851: result: yes configure:15860: checking for _doprnt configure:15916: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//ccuisRkv.o(.text+0x12): In function `main': : undefined reference to `_doprnt' configure:15923: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | /* end confdefs.h. */ | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | For example, HP-UX 11i declares gettimeofday. */ | #define _doprnt innocuous__doprnt | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char _doprnt (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef _doprnt | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char _doprnt (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub__doprnt || defined __stub____doprnt | choke me | #endif | | int | main () | { | return _doprnt (); | ; | return 0; | } configure:15943: result: no configure:15981: checking for geteuid configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for getuid configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for link configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for memmove configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:61: warning: conflicting types for built-in function 'memmove' configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for memset configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:62: warning: conflicting types for built-in function 'memset' configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for mkstemp configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for strchr configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:64: warning: conflicting types for built-in function 'strchr' configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for strrchr configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:65: warning: conflicting types for built-in function 'strrchr' configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for strtol configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for getopt configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for getopt_long configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for vsnprintf configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:69: warning: conflicting types for built-in function 'vsnprintf' configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for walkcontext configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//cc2nmQ05.o(.text+0x12): In function `main': : undefined reference to `walkcontext' configure:16044: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | /* end confdefs.h. */ | /* Define walkcontext to an innocuous variant, in case declares walkcontext. | For example, HP-UX 11i declares gettimeofday. */ | #define walkcontext innocuous_walkcontext | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char walkcontext (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef walkcontext | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char walkcontext (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_walkcontext || defined __stub___walkcontext | choke me | #endif | | int | main () | { | return walkcontext (); | ; | return 0; | } configure:16066: result: no configure:15981: checking for backtrace configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//ccXOEBhb.o(.text+0x12): In function `main': : undefined reference to `backtrace' configure:16044: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | /* end confdefs.h. */ | /* Define backtrace to an innocuous variant, in case declares backtrace. | For example, HP-UX 11i declares gettimeofday. */ | #define backtrace innocuous_backtrace | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char backtrace (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef backtrace | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char backtrace (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_backtrace || defined __stub___backtrace | choke me | #endif | | int | main () | { | return backtrace (); | ; | return 0; | } configure:16066: result: no configure:15981: checking for getisax configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//ccCdD6Me.o(.text+0x12): In function `main': : undefined reference to `getisax' configure:16044: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | /* end confdefs.h. */ | /* Define getisax to an innocuous variant, in case declares getisax. | For example, HP-UX 11i declares gettimeofday. */ | #define getisax innocuous_getisax | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getisax (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getisax | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char getisax (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_getisax || defined __stub___getisax | choke me | #endif | | int | main () | { | return getisax (); | ; | return 0; | } configure:16066: result: no configure:15981: checking for getzoneid configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//ccKtQ41t.o(.text+0x12): In function `main': : undefined reference to `getzoneid' configure:16044: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | /* end confdefs.h. */ | /* Define getzoneid to an innocuous variant, in case declares getzoneid. | For example, HP-UX 11i declares gettimeofday. */ | #define getzoneid innocuous_getzoneid | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getzoneid (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getzoneid | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char getzoneid (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_getzoneid || defined __stub___getzoneid | choke me | #endif | | int | main () | { | return getzoneid (); | ; | return 0; | } configure:16066: result: no configure:15981: checking for shmctl64 configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//cc7QQ3LB.o(.text+0x12): In function `main': : undefined reference to `shmctl64' configure:16044: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | /* end confdefs.h. */ | /* Define shmctl64 to an innocuous variant, in case declares shmctl64. | For example, HP-UX 11i declares gettimeofday. */ | #define shmctl64 innocuous_shmctl64 | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char shmctl64 (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef shmctl64 | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shmctl64 (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_shmctl64 || defined __stub___shmctl64 | choke me | #endif | | int | main () | { | return shmctl64 (); | ; | return 0; | } configure:16066: result: no configure:15981: checking for strcasestr configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16044: $? = 0 configure:16066: result: yes configure:15981: checking for ffs configure:16037: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:71: warning: conflicting types for built-in function 'ffs' configure:16044: $? = 0 configure:16066: result: yes configure:16080: checking for working alloca.h configure:16107: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:49:20: error: alloca.h: No such file or directory conftest.c: In function 'main': conftest.c:53: warning: incompatible implicit declaration of built-in function 'alloca' configure:16114: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | /* end confdefs.h. */ | #include | int | main () | { | char *p = (char *) alloca (2 * sizeof (int)); | if (p) return 0; | ; | return 0; | } configure:16134: result: no configure:16144: checking for alloca configure:16191: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16198: $? = 0 configure:16218: result: yes configure:16455: checking for getdtablesize configure:16511: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16518: $? = 0 configure:16538: result: yes configure:16548: checking for getifaddrs configure:16604: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16611: $? = 0 configure:16631: result: yes configure:16641: checking for getpeereid configure:16697: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16704: $? = 0 configure:16724: result: yes configure:16734: checking for getpeerucred configure:16790: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 /var/tmp//cchPAG5q.o(.text+0x12): In function `main': : undefined reference to `getpeerucred' configure:16797: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | /* end confdefs.h. */ | /* Define getpeerucred to an innocuous variant, in case declares getpeerucred. | For example, HP-UX 11i declares gettimeofday. */ | #define getpeerucred innocuous_getpeerucred | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char getpeerucred (); below. | Prefer to if __STDC__ is defined, since | exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include | #else | # include | #endif | | #undef getpeerucred | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char getpeerucred (); | /* The GNU C library defines this for functions which it implements | to always fail with ENOSYS. Some functions are actually named | something starting with __ and the normal name is an alias. */ | #if defined __stub_getpeerucred || defined __stub___getpeerucred | choke me | #endif | | int | main () | { | return getpeerucred (); | ; | return 0; | } configure:16817: result: no configure:16827: checking for strlcat configure:16883: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16890: $? = 0 configure:16910: result: yes configure:16926: checking for strlcpy configure:16982: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:16989: $? = 0 configure:17009: result: yes configure:17029: checking for mmap configure:17085: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:17092: $? = 0 configure:17112: result: yes configure:17124: checking for sqrt in -lm configure:17159: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 conftest.c:62: warning: conflicting types for built-in function 'sqrt' configure:17166: $? = 0 configure:17187: result: yes configure:17198: checking for cbrt in -lm configure:17233: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm -lm >&5 conftest.c:63: warning: conflicting types for built-in function 'cbrt' configure:17240: $? = 0 configure:17261: result: yes configure:17290: checking ndbm.h usability configure:17307: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:17314: $? = 0 configure:17328: result: yes configure:17332: checking ndbm.h presence configure:17347: cc -E conftest.c configure:17354: $? = 0 configure:17368: result: yes configure:17401: checking for ndbm.h configure:17410: result: yes configure:17290: checking dbm.h usability configure:17307: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:91:17: error: dbm.h: No such file or directory configure:17314: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17328: result: no configure:17332: checking dbm.h presence configure:17347: cc -E conftest.c conftest.c:58:17: error: dbm.h: No such file or directory configure:17354: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | /* end confdefs.h. */ | #include configure:17368: result: no configure:17401: checking for dbm.h configure:17410: result: no configure:17290: checking rpcsvc/dbm.h usability configure:17307: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:91:24: error: rpcsvc/dbm.h: No such file or directory configure:17314: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17328: result: no configure:17332: checking rpcsvc/dbm.h presence configure:17347: cc -E conftest.c conftest.c:58:24: error: rpcsvc/dbm.h: No such file or directory configure:17354: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | /* end confdefs.h. */ | #include configure:17368: result: no configure:17401: checking for rpcsvc/dbm.h configure:17410: result: no configure:17443: checking linux/agpgart.h usability configure:17460: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:91:27: error: linux/agpgart.h: No such file or directory configure:17467: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17481: result: no configure:17485: checking linux/agpgart.h presence configure:17500: cc -E conftest.c conftest.c:58:27: error: linux/agpgart.h: No such file or directory configure:17507: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | /* end confdefs.h. */ | #include configure:17521: result: no configure:17554: checking for linux/agpgart.h configure:17563: result: no configure:17443: checking sys/agpio.h usability configure:17460: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:17467: $? = 0 configure:17481: result: yes configure:17485: checking sys/agpio.h presence configure:17500: cc -E conftest.c configure:17507: $? = 0 configure:17521: result: yes configure:17554: checking for sys/agpio.h configure:17563: result: yes configure:17603: checking linux/apm_bios.h usability configure:17620: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:92:28: error: linux/apm_bios.h: No such file or directory configure:17627: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17641: result: no configure:17645: checking linux/apm_bios.h presence configure:17660: cc -E conftest.c conftest.c:59:28: error: linux/apm_bios.h: No such file or directory configure:17667: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | /* end confdefs.h. */ | #include configure:17681: result: no configure:17714: checking for linux/apm_bios.h configure:17723: result: no configure:17763: checking linux/fb.h usability configure:17780: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:92:22: error: linux/fb.h: No such file or directory configure:17787: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17801: result: no configure:17805: checking linux/fb.h presence configure:17820: cc -E conftest.c conftest.c:59:22: error: linux/fb.h: No such file or directory configure:17827: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | /* end confdefs.h. */ | #include configure:17841: result: no configure:17874: checking for linux/fb.h configure:17883: result: no configure:17923: checking asm/mtrr.h usability configure:17940: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:92:22: error: asm/mtrr.h: No such file or directory configure:17947: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:17961: result: no configure:17965: checking asm/mtrr.h presence configure:17980: cc -E conftest.c conftest.c:59:22: error: asm/mtrr.h: No such file or directory configure:17987: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | /* end confdefs.h. */ | #include configure:18001: result: no configure:18034: checking for asm/mtrr.h configure:18043: result: no configure:18078: checking sys/memrange.h usability configure:18095: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:18102: $? = 0 configure:18116: result: yes configure:18120: checking sys/memrange.h presence configure:18135: cc -E conftest.c configure:18142: $? = 0 configure:18156: result: yes configure:18189: checking for sys/memrange.h configure:18198: result: yes configure:18241: checking machine/mtrr.h usability configure:18258: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:94:26: error: machine/mtrr.h: No such file or directory configure:18265: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:18279: result: no configure:18283: checking machine/mtrr.h presence configure:18298: cc -E conftest.c conftest.c:61:26: error: machine/mtrr.h: No such file or directory configure:18305: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | /* end confdefs.h. */ | #include configure:18319: result: no configure:18352: checking for machine/mtrr.h configure:18361: result: no configure:18388: checking for sys/linker.h configure:18409: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:18416: $? = 0 configure:18433: result: yes configure:18457: checking for SYSV IPC configure:18493: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 configure:18500: $? = 0 configure:18520: result: yes configure:18548: checking machine/apmvar.h usability configure:18565: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:96:28: error: machine/apmvar.h: No such file or directory configure:18572: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | #define HAVE_SYS_LINKER_H 1 | #define HAVE_SYSV_IPC 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:18586: result: no configure:18590: checking machine/apmvar.h presence configure:18605: cc -E conftest.c conftest.c:63:28: error: machine/apmvar.h: No such file or directory configure:18612: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | #define HAVE_SYS_LINKER_H 1 | #define HAVE_SYSV_IPC 1 | /* end confdefs.h. */ | #include configure:18626: result: no configure:18659: checking for machine/apmvar.h configure:18666: result: no configure:18842: checking execinfo.h usability configure:18859: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c:96:22: error: execinfo.h: No such file or directory configure:18866: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | #define HAVE_SYS_LINKER_H 1 | #define HAVE_SYSV_IPC 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:18880: result: no configure:18884: checking execinfo.h presence configure:18899: cc -E conftest.c conftest.c:63:22: error: execinfo.h: No such file or directory configure:18906: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | #define HAVE_SYS_LINKER_H 1 | #define HAVE_SYSV_IPC 1 | /* end confdefs.h. */ | #include configure:18920: result: no configure:18953: checking for execinfo.h configure:18960: result: no configure:19841: checking to see if we can install the Xorg server as root configure:19858: result: yes configure:19886: checking if Xtrans should support UNIX socket connections configure:19895: result: yes configure:19904: checking if Xtrans should support TCP socket connections configure:19906: result: yes configure:19916: checking for library containing socket configure:19957: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 configure:19964: $? = 0 configure:19995: result: none required configure:20003: checking for library containing gethostbyname configure:20044: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 configure:20051: $? = 0 configure:20082: result: none required configure:20096: checking for getaddrinfo configure:20152: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 configure:20159: $? = 0 configure:20179: result: yes configure:20189: checking if IPv6 support should be built configure:20198: result: yes configure:20202: checking for struct sockaddr_in.sin_len configure:20235: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:20242: $? = 0 configure:20305: result: yes configure:20317: checking for socklen_t configure:20348: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:20355: $? = 0 configure:20385: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 conftest.c: In function 'main': conftest.c:114: error: expected expression before ')' token configure:20392: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | #define HAVE_SYS_LINKER_H 1 | #define HAVE_SYSV_IPC 1 | #define USE_DEV_IO 1 | #define CSRG_BASED 1 | #define PCCONS_SUPPORT 1 | #define PCVT_SUPPORT 1 | #define SYSCONS_SUPPORT 1 | #define PACKAGE_VERSION_MAJOR 1 | #define PACKAGE_VERSION_MINOR 6 | #define PACKAGE_VERSION_PATCHLEVEL 1 | #define UNIXCONN 1 | #define TCPCONN 1 | #define IPv6 1 | #define BSD44SOCKETS 1 | /* end confdefs.h. */ | | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include | | int | main () | { | if (sizeof ((socklen_t))) | return 0; | ; | return 0; | } configure:20415: result: yes configure:20440: checking if Xtrans should support os-specific local connections configure:20442: result: no configure:20471: checking for authdes_seccreate configure:20527: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 configure:20534: $? = 0 configure:20556: result: yes configure:20471: checking for authdes_create configure:20527: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 configure:20534: $? = 0 configure:20556: result: yes configure:20576: checking for library containing getsecretkey configure:20617: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lm >&5 /var/tmp//ccMYJAet.o(.text+0x12): In function `main': : undefined reference to `getsecretkey' configure:20624: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "xorg-server" | #define PACKAGE_TARNAME "xorg-server" | #define PACKAGE_VERSION "1.6.1" | #define PACKAGE_STRING "xorg-server 1.6.1" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "xorg-server" | #define VERSION "1.6.1" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_DIRENT_H 1 | #define STDC_HEADERS 1 | #define HAVE_FCNTL_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_UNISTD_H 1 | #define SIZEOF_UNSIGNED_LONG 4 | #define USE_SYS_ENDIAN_H 1 | #define bswap_16 bswap16 | #define bswap_32 bswap32 | #define bswap_64 bswap64 | #define HAVE_VPRINTF 1 | #define HAVE_GETEUID 1 | #define HAVE_GETUID 1 | #define HAVE_LINK 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_MKSTEMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETOPT 1 | #define HAVE_GETOPT_LONG 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STRCASESTR 1 | #define HAVE_FFS 1 | #define HAVE_ALLOCA 1 | #define HAS_GETDTABLESIZE 1 | #define HAS_GETIFADDRS 1 | #define HAS_GETPEEREID 1 | #define HAS_STRLCPY 1 | #define HAS_MMAP 1 | #define HAVE_LIBM 1 | #define HAVE_CBRT 1 | #define HAVE_NDBM_H 1 | #define HAVE_SYS_AGPIO_H 1 | #define HAVE_SYS_MEMRANGE_H 1 | #define HAS_MTRR_SUPPORT 1 | #define HAVE_SYS_LINKER_H 1 | #define HAVE_SYSV_IPC 1 | #define USE_DEV_IO 1 | #define CSRG_BASED 1 | #define PCCONS_SUPPORT 1 | #define PCVT_SUPPORT 1 | #define SYSCONS_SUPPORT 1 | #define PACKAGE_VERSION_MAJOR 1 | #define PACKAGE_VERSION_MINOR 6 | #define PACKAGE_VERSION_PATCHLEVEL 1 | #define UNIXCONN 1 | #define TCPCONN 1 | #define IPv6 1 | #define BSD44SOCKETS 1 | #define HAVE_SOCKLEN_T 1 | #define HAVE_AUTHDES_SECCREATE 1 | #define HAVE_AUTHDES_CREATE 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char getsecretkey (); | int | main () | { | return getsecretkey (); | ; | return 0; | } configure:20617: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lrpcsvc -lm >&5 configure:20624: $? = 0 configure:20655: result: -lrpcsvc configure:20666: checking if Secure RPC authentication ("SUN-DES-1") should be supported configure:20675: result: yes configure:20885: checking for /usr/local/share/sgml/X11/defs.ent configure:20902: result: no configure:20914: checking for linuxdoc configure:20947: result: no configure:20954: checking for ps2pdf configure:20987: result: no configure:20993: checking Whether to build documentation configure:21011: result: no configure:21014: checking Whether to build pdf documentation configure:21032: result: no configure:21137: checking for DBUS configure:21144: $PKG_CONFIG --exists --print-errors "dbus-1" configure:21147: $? = 0 configure:21160: $PKG_CONFIG --exists --print-errors "dbus-1" configure:21163: $? = 0 configure:21198: result: yes configure:21246: checking for HAL configure:21253: $PKG_CONFIG --exists --print-errors "hal" configure:21256: $? = 0 configure:21269: $PKG_CONFIG --exists --print-errors "hal" configure:21272: $? = 0 configure:21307: result: yes configure:21356: checking for glibc... configure:21371: cc -E conftest.c conftest.c:2:22: error: features.h: No such file or directory conftest.c:4:2: error: #error configure:21378: $? = 1 configure: failed program was: | | #include | #ifndef __GLIBC__ | #error | #endif | configure:21392: result: no configure:21399: checking for clock_gettime configure:21455: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c -lrpcsvc -lm >&5 configure:21462: $? = 0 configure:21484: result: yes configure:21569: checking for a useful monotonic clock ... configure:21610: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:21614: $? = 0 configure:21620: ./conftest configure:21624: $? = 0 configure:21647: result: yes configure:21810: checking for XLIB configure:21817: $PKG_CONFIG --exists --print-errors "x11" configure:21820: $? = 0 configure:21833: $PKG_CONFIG --exists --print-errors "x11" configure:21836: $? = 0 configure:21913: result: yes configure:21919: checking for GL configure:21926: $PKG_CONFIG --exists --print-errors "glproto >= 1.4.9 gl >= 7.1.0" gnome-config: not found Package gl was not found in the pkg-config search path. Perhaps you should add the directory containing `gl.pc' to the PKG_CONFIG_PATH environment variable No package 'gl' found configure:21929: $? = 1 configure:21942: $PKG_CONFIG --exists --print-errors "glproto >= 1.4.9 gl >= 7.1.0" gnome-config: not found Package gl was not found in the pkg-config search path. Perhaps you should add the directory containing `gl.pc' to the PKG_CONFIG_PATH environment variable No package 'gl' found configure:21945: $? = 1 gnome-config: not found No package 'gl' found configure:21972: error: Package requirements (glproto >= 1.4.9 gl >= 7.1.0) were not met: gnome-config: not found No package 'gl' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GL_CFLAGS and GL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i386-portbld-freebsd7.2 ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_env_CCASFLAGS_set='' ac_cv_env_CCASFLAGS_value='' ac_cv_env_CCAS_set='' ac_cv_env_CCAS_value='' ac_cv_env_CC_set=set ac_cv_env_CC_value=cc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -fno-strict-aliasing -pipe' ac_cv_env_CPPFLAGS_set='' ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_DBUS_CFLAGS_set='' ac_cv_env_DBUS_CFLAGS_value='' ac_cv_env_DBUS_LIBS_set='' ac_cv_env_DBUS_LIBS_value='' ac_cv_env_DGA_CFLAGS_set='' ac_cv_env_DGA_CFLAGS_value='' ac_cv_env_DGA_LIBS_set='' ac_cv_env_DGA_LIBS_value='' ac_cv_env_DMXEXAMPLES_DEP_CFLAGS_set='' ac_cv_env_DMXEXAMPLES_DEP_CFLAGS_value='' ac_cv_env_DMXEXAMPLES_DEP_LIBS_set='' ac_cv_env_DMXEXAMPLES_DEP_LIBS_value='' ac_cv_env_DMXMODULES_CFLAGS_set='' ac_cv_env_DMXMODULES_CFLAGS_value='' ac_cv_env_DMXMODULES_LIBS_set='' ac_cv_env_DMXMODULES_LIBS_value='' ac_cv_env_DMXXIEXAMPLES_DEP_CFLAGS_set='' ac_cv_env_DMXXIEXAMPLES_DEP_CFLAGS_value='' ac_cv_env_DMXXIEXAMPLES_DEP_LIBS_set='' ac_cv_env_DMXXIEXAMPLES_DEP_LIBS_value='' ac_cv_env_DMXXMUEXAMPLES_DEP_CFLAGS_set='' ac_cv_env_DMXXMUEXAMPLES_DEP_CFLAGS_value='' ac_cv_env_DMXXMUEXAMPLES_DEP_LIBS_set='' ac_cv_env_DMXXMUEXAMPLES_DEP_LIBS_value='' ac_cv_env_DRI2PROTO_CFLAGS_set='' ac_cv_env_DRI2PROTO_CFLAGS_value='' ac_cv_env_DRI2PROTO_LIBS_set='' ac_cv_env_DRI2PROTO_LIBS_value='' ac_cv_env_DRIPROTO_CFLAGS_set='' ac_cv_env_DRIPROTO_CFLAGS_value='' ac_cv_env_DRIPROTO_LIBS_set='' ac_cv_env_DRIPROTO_LIBS_value='' ac_cv_env_GL_CFLAGS_set='' ac_cv_env_GL_CFLAGS_value='' ac_cv_env_GL_LIBS_set='' ac_cv_env_GL_LIBS_value='' ac_cv_env_HAL_CFLAGS_set='' ac_cv_env_HAL_CFLAGS_value='' ac_cv_env_HAL_LIBS_set='' ac_cv_env_HAL_LIBS_value='' ac_cv_env_LDFLAGS_set='' ac_cv_env_LDFLAGS_value='' ac_cv_env_LIBDRM_CFLAGS_set='' ac_cv_env_LIBDRM_CFLAGS_value='' ac_cv_env_LIBDRM_LIBS_set='' ac_cv_env_LIBDRM_LIBS_value='' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_PCIACCESS_CFLAGS_set='' ac_cv_env_PCIACCESS_CFLAGS_value='' ac_cv_env_PCIACCESS_LIBS_set='' ac_cv_env_PCIACCESS_LIBS_value='' ac_cv_env_PKG_CONFIG_set='' ac_cv_env_PKG_CONFIG_value='' ac_cv_env_TSLIB_CFLAGS_set='' ac_cv_env_TSLIB_CFLAGS_value='' ac_cv_env_TSLIB_LIBS_set='' ac_cv_env_TSLIB_LIBS_value='' ac_cv_env_X11EXAMPLES_DEP_CFLAGS_set='' ac_cv_env_X11EXAMPLES_DEP_CFLAGS_value='' ac_cv_env_X11EXAMPLES_DEP_LIBS_set='' ac_cv_env_X11EXAMPLES_DEP_LIBS_value='' ac_cv_env_XDMCP_CFLAGS_set='' ac_cv_env_XDMCP_CFLAGS_value='' ac_cv_env_XDMCP_LIBS_set='' ac_cv_env_XDMCP_LIBS_value='' ac_cv_env_XDMXCONFIG_DEP_CFLAGS_set='' ac_cv_env_XDMXCONFIG_DEP_CFLAGS_value='' ac_cv_env_XDMXCONFIG_DEP_LIBS_set='' ac_cv_env_XDMXCONFIG_DEP_LIBS_value='' ac_cv_env_XEPHYR_CFLAGS_set='' ac_cv_env_XEPHYR_CFLAGS_value='' ac_cv_env_XEPHYR_LIBS_set='' ac_cv_env_XEPHYR_LIBS_value='' ac_cv_env_XF86VIDMODE_CFLAGS_set='' ac_cv_env_XF86VIDMODE_CFLAGS_value='' ac_cv_env_XF86VIDMODE_LIBS_set='' ac_cv_env_XF86VIDMODE_LIBS_value='' ac_cv_env_XLIB_CFLAGS_set='' ac_cv_env_XLIB_CFLAGS_value='' ac_cv_env_XLIB_LIBS_set='' ac_cv_env_XLIB_LIBS_value='' ac_cv_env_XNESTMODULES_CFLAGS_set='' ac_cv_env_XNESTMODULES_CFLAGS_value='' ac_cv_env_XNESTMODULES_LIBS_set='' ac_cv_env_XNESTMODULES_LIBS_value='' ac_cv_env_XORG_MODULES_CFLAGS_set='' ac_cv_env_XORG_MODULES_CFLAGS_value='' ac_cv_env_XORG_MODULES_LIBS_set='' ac_cv_env_XORG_MODULES_LIBS_value='' ac_cv_env_XPBPROXY_CFLAGS_set='' ac_cv_env_XPBPROXY_CFLAGS_value='' ac_cv_env_XPBPROXY_LIBS_set='' ac_cv_env_XPBPROXY_LIBS_value='' ac_cv_env_XRESEXAMPLES_DEP_CFLAGS_set='' ac_cv_env_XRESEXAMPLES_DEP_CFLAGS_value='' ac_cv_env_XRESEXAMPLES_DEP_LIBS_set='' ac_cv_env_XRESEXAMPLES_DEP_LIBS_value='' ac_cv_env_XSERVERCFLAGS_CFLAGS_set='' ac_cv_env_XSERVERCFLAGS_CFLAGS_value='' ac_cv_env_XSERVERCFLAGS_LIBS_set='' ac_cv_env_XSERVERCFLAGS_LIBS_value='' ac_cv_env_XSERVERLIBS_CFLAGS_set='' ac_cv_env_XSERVERLIBS_CFLAGS_value='' ac_cv_env_XSERVERLIBS_LIBS_set='' ac_cv_env_XSERVERLIBS_LIBS_value='' ac_cv_env_XTSTEXAMPLES_DEP_CFLAGS_set='' ac_cv_env_XTSTEXAMPLES_DEP_CFLAGS_value='' ac_cv_env_XTSTEXAMPLES_DEP_LIBS_set='' ac_cv_env_XTSTEXAMPLES_DEP_LIBS_value='' ac_cv_env_XWINMODULES_CFLAGS_set='' ac_cv_env_XWINMODULES_CFLAGS_value='' ac_cv_env_XWINMODULES_LIBS_set='' ac_cv_env_XWINMODULES_LIBS_value='' ac_cv_env_YACC_set='' ac_cv_env_YACC_value='' ac_cv_env_YFLAGS_set='' ac_cv_env_YFLAGS_value='' ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i386-portbld-freebsd7.2 ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_file__usr_local_share_sgml_X11_defs_ent=no ac_cv_func__doprnt=no ac_cv_func_alloca_works=yes ac_cv_func_authdes_create=yes ac_cv_func_authdes_seccreate=yes ac_cv_func_backtrace=no ac_cv_func_clock_gettime=yes ac_cv_func_dlopen=yes ac_cv_func_ffs=yes ac_cv_func_getaddrinfo=yes ac_cv_func_getdtablesize=yes ac_cv_func_geteuid=yes ac_cv_func_getifaddrs=yes ac_cv_func_getisax=no ac_cv_func_getopt=yes ac_cv_func_getopt_long=yes ac_cv_func_getpeereid=yes ac_cv_func_getpeerucred=no ac_cv_func_getuid=yes ac_cv_func_getzoneid=no ac_cv_func_link=yes ac_cv_func_memmove=yes ac_cv_func_memset=yes ac_cv_func_mkstemp=yes ac_cv_func_mmap=yes ac_cv_func_shmctl64=no ac_cv_func_strcasestr=yes ac_cv_func_strchr=yes ac_cv_func_strlcat=yes ac_cv_func_strlcpy=yes ac_cv_func_strrchr=yes ac_cv_func_strtol=yes ac_cv_func_vprintf=yes ac_cv_func_vsnprintf=yes ac_cv_func_walkcontext=no ac_cv_header_asm_mtrr_h=no ac_cv_header_byteswap_h=no ac_cv_header_dbm_h=no ac_cv_header_dirent_dirent_h=yes ac_cv_header_dlfcn_h=yes ac_cv_header_execinfo_h=no ac_cv_header_fcntl_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_linux_agpgart_h=no ac_cv_header_linux_apm_bios_h=no ac_cv_header_linux_fb_h=no ac_cv_header_machine_apmvar_h=no ac_cv_header_machine_mtrr_h=no ac_cv_header_memory_h=yes ac_cv_header_ndbm_h=yes ac_cv_header_rpcsvc_dbm_h=no ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_agpio_h=yes ac_cv_header_sys_endian_h=yes ac_cv_header_sys_linker_h=yes ac_cv_header_sys_memrange_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=i386-portbld-freebsd7.2 ac_cv_lib_lex=-lfl ac_cv_lib_m_cbrt=yes ac_cv_lib_m_sqrt=yes ac_cv_member_struct_sockaddr_in_sin_len=yes ac_cv_memrange_h=yes ac_cv_objext=o ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_FGREP='/usr/bin/grep -F' ac_cv_path_GREP=/usr/bin/grep ac_cv_path_RAWCPP=/usr/bin/cpp ac_cv_path_SED=/usr/bin/sed ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config ac_cv_prog_AWK=nawk ac_cv_prog_CPP='cc -E' ac_cv_prog_LEX=flex ac_cv_prog_YACC=byacc ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=cc ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89='' ac_cv_prog_cc_g=yes ac_cv_prog_lex_root=lex.yy ac_cv_prog_lex_yytext_pointer=yes ac_cv_prog_make_make_set=yes ac_cv_search_gethostbyname='none required' ac_cv_search_getsecretkey=-lrpcsvc ac_cv_search_opendir='none required' ac_cv_search_socket='none required' ac_cv_sizeof_unsigned_long=4 ac_cv_sys_file_offset_bits=no ac_cv_sys_largefile_CC=no ac_cv_sys_linker_h=yes ac_cv_sysv_ipc=yes ac_cv_type_pid_t=yes ac_cv_type_socklen_t=yes ac_cv_working_alloca_h=no am_cv_CCAS_dependencies_compiler_type=gcc3 am_cv_CC_dependencies_compiler_type=gcc3 lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file='' lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_gnu_ld=yes lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_max_cmd_len=262144 pkg_cv_DBUS_CFLAGS='-I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include ' pkg_cv_DBUS_LIBS='-L/usr/local/lib -ldbus-1 ' pkg_cv_HAL_CFLAGS='-DDBUS_API_SUBJECT_TO_CHANGE -I/usr/local/include/hal -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include ' pkg_cv_HAL_LIBS='-L/usr/local/lib -lhal -ldbus-1 ' pkg_cv_XLIB_CFLAGS='-D_THREAD_SAFE -I/usr/local/include ' pkg_cv_XLIB_LIBS='-L/usr/local/lib -lX11 ' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/missing --run aclocal-1.10' ADMIN_MAN_DIR='' ADMIN_MAN_SUFFIX='' AGP_FALSE='#' AGP_TRUE='' AIGLX_FALSE='' AIGLX_TRUE='' ALLOCA='' ALPHA_VIDEO_FALSE='' ALPHA_VIDEO_TRUE='#' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/missing --run tar' APPLE_APPLICATIONS_DIR='/Applications/Utilities' APPLE_APPLICATION_ID='org.x.X11' APPLE_APPLICATION_NAME='X11' APP_MAN_DIR='' APP_MAN_SUFFIX='' AR='ar' ARM_VIDEO_FALSE='' ARM_VIDEO_TRUE='#' AS='as' AUTOCONF='${SHELL} /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/missing --run autoconf' AUTOHEADER='${SHELL} /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/missing --run autoheader' AUTOMAKE='${SHELL} /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/missing --run automake-1.10' AWK='nawk' BASE_FONT_PATH='' BSD_APM_FALSE='' BSD_APM_TRUE='#' BSD_KQUEUE_APM_FALSE='' BSD_KQUEUE_APM_TRUE='#' BUILDDOCS_FALSE='' BUILDDOCS_TRUE='#' BUILD_DATE='' BUILD_KDRIVEFBDEVLIB_FALSE='' BUILD_KDRIVEFBDEVLIB_TRUE='' BUILD_LINUXDOC_FALSE='' BUILD_LINUXDOC_TRUE='#' BUILD_PDFDOC_FALSE='' BUILD_PDFDOC_TRUE='#' BUILD_TIME='' CC='cc' CCAS='cc' CCASDEPMODE='depmode=gcc3' CCASFLAGS='-O2 -fno-strict-aliasing -pipe' CCDEPMODE='depmode=gcc3' CFLAGS='-O2 -fno-strict-aliasing -pipe' COMPILEDDEFAULTFONTPATH='' COMPOSITE_FALSE='#' COMPOSITE_TRUE='' CONFIG_DBUS_API_FALSE='' CONFIG_DBUS_API_TRUE='#' CONFIG_HAL_FALSE='#' CONFIG_HAL_TRUE='' CONFIG_NEED_DBUS_FALSE='#' CONFIG_NEED_DBUS_TRUE='' CPP='cc -E' CPPFLAGS='' CYGPATH_W='echo' DARWIN_LIBS='' DBE_FALSE='' DBE_TRUE='' DBUS_CFLAGS='-I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include ' DBUS_LIBS='-L/usr/local/lib -ldbus-1 ' DEBUG_FALSE='' DEBUG_TRUE='' DEFAULT_LIBRARY_PATH='' DEFAULT_LOGPREFIX='' DEFAULT_MODULE_PATH='' DEFS='' DEPDIR='.deps' DGA_CFLAGS='' DGA_FALSE='' DGA_LIBS='' DGA_TRUE='' DIX_CFLAGS='' DLLTOOL='dlltool' DMXEXAMPLES_DEP_CFLAGS='' DMXEXAMPLES_DEP_LIBS='' DMXMODULES_CFLAGS='' DMXMODULES_LIBS='' DMXXIEXAMPLES_DEP_CFLAGS='' DMXXIEXAMPLES_DEP_LIBS='' DMXXMUEXAMPLES_DEP_CFLAGS='' DMXXMUEXAMPLES_DEP_LIBS='' DMX_BUILD_LNX_FALSE='' DMX_BUILD_LNX_TRUE='' DMX_BUILD_USB_FALSE='' DMX_BUILD_USB_TRUE='' DMX_FALSE='' DMX_TRUE='' DOLT_BASH='' DPMSExtension_FALSE='' DPMSExtension_TRUE='' DRI2PROTO_CFLAGS='' DRI2PROTO_LIBS='' DRI2_AIGLX_FALSE='' DRI2_AIGLX_TRUE='' DRI2_FALSE='' DRI2_TRUE='' DRIPROTO_CFLAGS='' DRIPROTO_LIBS='' DRIVER_MAN_DIR='' DRIVER_MAN_SUFFIX='' DRI_DRIVER_PATH='${exec_prefix}/lib/dri' DRI_FALSE='' DRI_TRUE='' DSYMUTIL='' DTRACE='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/bin/grep -E' EXEEXT='' FBDEVHW_FALSE='' FBDEVHW_TRUE='#' FGREP='/usr/bin/grep -F' FILE_MAN_DIR='' FILE_MAN_SUFFIX='' FREEBSD_KLDLOAD_FALSE='#' FREEBSD_KLDLOAD_TRUE='' GLX_ARCH_DEFINES='' GLX_DEFINES='' GLX_FALSE='' GLX_TRUE='' GL_CFLAGS='' GL_LIBS='' GREP='/usr/bin/grep' HAL_CFLAGS='-DDBUS_API_SUBJECT_TO_CHANGE -I/usr/local/include/hal -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include ' HAL_LIBS='-L/usr/local/lib -lhal -ldbus-1 ' HAVE_AGL_FRAMEWORK_FALSE='' HAVE_AGL_FRAMEWORK_TRUE='' HAVE_DBUS_FALSE='#' HAVE_DBUS_TRUE='' HAVE_XPLUGIN_FALSE='' HAVE_XPLUGIN_TRUE='' I386_VIDEO_FALSE='#' I386_VIDEO_TRUE='' INSTALL_DATA='install -o root -g wheel -m 444' INSTALL_LIBXF86CONFIG_FALSE='' INSTALL_LIBXF86CONFIG_TRUE='#' INSTALL_PROGRAM='install -s -o root -g wheel -m 555' INSTALL_SCRIPT='install -o root -g wheel -m 555' INSTALL_SETUID_FALSE='#' INSTALL_SETUID_TRUE='' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' INT10_STUB_FALSE='' INT10_STUB_TRUE='#' INT10_VM86_FALSE='' INT10_VM86_TRUE='#' INT10_X86EMU_FALSE='#' INT10_X86EMU_TRUE='' KDRIVEFBDEV_FALSE='' KDRIVEFBDEV_TRUE='' KDRIVELINUX_FALSE='' KDRIVELINUX_TRUE='' KDRIVEVESA_FALSE='' KDRIVEVESA_TRUE='' KDRIVE_CFLAGS='' KDRIVE_FALSE='' KDRIVE_HW_FALSE='' KDRIVE_HW_TRUE='#' KDRIVE_INCS='' KDRIVE_LIBS='' KDRIVE_LOCAL_LIBS='' KDRIVE_PURE_INCS='' KDRIVE_PURE_LIBS='' KDRIVE_TRUE='' LD='/usr/bin/ld' LDFLAGS='' LD_EXPORT_SYMBOLS_FLAG='' LEX='flex' LEXLIB='-lfl' LEX_OUTPUT_ROOT='lex.yy' LIBDRM_CFLAGS='' LIBDRM_LIBS='' LIBOBJS='' LIBS='-lrpcsvc -lm ' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIB_MAN_DIR='' LIB_MAN_SUFFIX='' LINUXDOC='' LINUX_ALPHA_FALSE='' LINUX_ALPHA_TRUE='' LINUX_IA64_FALSE='' LINUX_IA64_TRUE='' LIPO='' LNXACPI_FALSE='' LNXACPI_TRUE='' LNXAPM_FALSE='' LNXAPM_TRUE='#' LN_S='ln -s' LTCOMPILE='$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(COMPILE)' LTCXXCOMPILE='$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXXCOMPILE)' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/missing --run makeinfo' MAKE_HTML='SGML_SEARCH_PATH=/usr/local/share/sgml -B html --split=0' MAKE_PDF='' MAKE_PS='SGML_SEARCH_PATH=/usr/local/share/sgml -B latex --papersize=letter --output=ps' MAKE_TEXT='SGML_SEARCH_PATH=/usr/local/share/sgml GROFF_NO_SGR=y -B txt' MESA_SOURCE='' MISC_MAN_DIR='' MISC_MAN_SUFFIX='' MITSHM_FALSE='#' MITSHM_TRUE='' MKDIR_P='./install-sh -c -d' MULTIBUFFER_FALSE='' MULTIBUFFER_TRUE='' NEED_STRLCAT_FALSE='' NEED_STRLCAT_TRUE='#' NEED_VSNPRINTF_FALSE='' NEED_VSNPRINTF_TRUE='#' NM='/usr/bin/nm -B' NMEDIT='' OBJC='' OBJCCLD='' OBJCDEPMODE='' OBJCFLAGS='' OBJCLINK='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='xorg-server' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' PACKAGE_NAME='xorg-server' PACKAGE_STRING='xorg-server 1.6.1' PACKAGE_TARNAME='xorg-server' PACKAGE_VERSION='1.6.1' PATH_SEPARATOR=':' PCIACCESS_CFLAGS='' PCIACCESS_LIBS='' PCI_TXT_IDS_PATH='' PERL='' PKG_CONFIG='/usr/local/bin/pkg-config' PPC_VIDEO_FALSE='' PPC_VIDEO_TRUE='#' PROJECTROOT='' PS2PDF='' RANLIB='ranlib' RAWCPP='/usr/bin/cpp' RAWCPPFLAGS='-undef -traditional' RECORD_FALSE='#' RECORD_TRUE='' RES_FALSE='#' RES_TRUE='' SCREENSAVER_FALSE='#' SCREENSAVER_TRUE='' SECURE_RPC_FALSE='#' SECURE_RPC_TRUE='' SED='/usr/bin/sed' SERVER_MISC_CONFIG_PATH='' SET_MAKE='' SHELL='/bin/sh' SOLARIS_ASM_CFLAGS='' SOLARIS_ASM_INLINE_FALSE='' SOLARIS_ASM_INLINE_TRUE='' SOLARIS_INOUT_ARCH='' SOLARIS_USL_CONSOLE_FALSE='' SOLARIS_USL_CONSOLE_TRUE='' SPARC64_VIDEO_FALSE='' SPARC64_VIDEO_TRUE='#' STANDALONE_XPBPROXY_FALSE='' STANDALONE_XPBPROXY_TRUE='' STRIP='strip' TSLIB_CFLAGS='' TSLIB_FALSE='' TSLIB_LIBS='' TSLIB_TRUE='' UTILS_SYS_LIBS='' VENDOR_MAN_VERSION='Version 1.6.1' VENDOR_NAME='The X.Org Foundation' VENDOR_NAME_SHORT='X.Org' VENDOR_RELEASE='(((1) * 10000000) + ((6) * 100000) + ((1) * 1000) + 0)' VERSION='1.6.1' X11EXAMPLES_DEP_CFLAGS='' X11EXAMPLES_DEP_LIBS='' XACE_FALSE='' XACE_TRUE='' XCALIBRATE_FALSE='' XCALIBRATE_TRUE='' XCSECURITY_FALSE='' XCSECURITY_TRUE='' XDMAUTH_FALSE='' XDMAUTH_TRUE='' XDMCP_CFLAGS='' XDMCP_FALSE='' XDMCP_LIBS='' XDMCP_TRUE='' XDMXCONFIG_DEP_CFLAGS='' XDMXCONFIG_DEP_LIBS='' XDMX_CFLAGS='' XDMX_LIBS='' XDMX_SYS_LIBS='' XEPHYR_CFLAGS='' XEPHYR_FALSE='' XEPHYR_INCS='' XEPHYR_LIBS='' XEPHYR_TRUE='' XF86BIGFONT_FALSE='' XF86BIGFONT_TRUE='' XF86CONFIGFILE='' XF86UTILS_FALSE='' XF86UTILS_TRUE='' XF86VIDMODE_CFLAGS='' XF86VIDMODE_FALSE='' XF86VIDMODE_LIBS='' XF86VIDMODE_TRUE='' XFAKESERVER_FALSE='' XFAKESERVER_TRUE='' XINERAMA_FALSE='' XINERAMA_TRUE='' XKB_BASE_DIRECTORY='' XKB_BIN_DIRECTORY='' XKB_COMPILED_DIR='' XKM_OUTPUT_DIR='' XLIB_CFLAGS='-D_THREAD_SAFE -I/usr/local/include ' XLIB_LIBS='-L/usr/local/lib -lX11 ' XNESTMODULES_CFLAGS='' XNESTMODULES_LIBS='' XNEST_FALSE='' XNEST_LIBS='' XNEST_SYS_LIBS='' XNEST_TRUE='' XORG_BUS_BSDPCI_FALSE='' XORG_BUS_BSDPCI_TRUE='' XORG_BUS_LINUXPCI_FALSE='' XORG_BUS_LINUXPCI_TRUE='' XORG_BUS_SPARC_FALSE='' XORG_BUS_SPARC_TRUE='' XORG_CFLAGS='' XORG_FALSE='' XORG_INCS='' XORG_LIBS='' XORG_MODULES_CFLAGS='' XORG_MODULES_LIBS='' XORG_OS='' XORG_OS_SUBDIR='' XORG_SYS_LIBS='' XORG_TRUE='' XPBPROXY_CFLAGS='' XPBPROXY_LIBS='' XQUARTZ_FALSE='' XQUARTZ_TRUE='' XREGISTRY_FALSE='#' XREGISTRY_TRUE='' XRESEXAMPLES_DEP_CFLAGS='' XRESEXAMPLES_DEP_LIBS='' XSDLSERVER_FALSE='' XSDLSERVER_TRUE='' XSDL_INCS='' XSDL_LIBS='' XSELINUX_FALSE='' XSELINUX_TRUE='' XSERVERCFLAGS_CFLAGS='' XSERVERCFLAGS_LIBS='' XSERVERLIBS_CFLAGS='' XSERVERLIBS_LIBS='' XSERVER_DTRACE_FALSE='' XSERVER_DTRACE_TRUE='#' XSERVER_LIBS='' XSERVER_SYS_LIBS='' XTSTEXAMPLES_DEP_CFLAGS='' XTSTEXAMPLES_DEP_LIBS='' XVFB_FALSE='' XVFB_LIBS='' XVFB_SYS_LIBS='' XVFB_TRUE='' XVMC_FALSE='#' XVMC_TRUE='' XV_FALSE='#' XV_TRUE='' XWINMODULES_CFLAGS='' XWINMODULES_LIBS='' XWIN_CLIPBOARD_FALSE='' XWIN_CLIPBOARD_TRUE='' XWIN_FALSE='' XWIN_GLX_WINDOWS_FALSE='' XWIN_GLX_WINDOWS_TRUE='' XWIN_LIBS='' XWIN_MULTIWINDOWEXTWM_FALSE='' XWIN_MULTIWINDOWEXTWM_TRUE='' XWIN_MULTIWINDOW_FALSE='' XWIN_MULTIWINDOW_TRUE='' XWIN_NATIVEGDI_FALSE='' XWIN_NATIVEGDI_TRUE='' XWIN_PRIMARYFB_FALSE='' XWIN_PRIMARYFB_TRUE='' XWIN_RANDR_FALSE='' XWIN_RANDR_TRUE='' XWIN_SERVER_NAME='' XWIN_SYS_LIBS='' XWIN_TRUE='' XWIN_XV_FALSE='' XWIN_XV_TRUE='' YACC='byacc' YFLAGS='' __XCONFIGFILE__='' abi_ansic='' abi_extension='' abi_font='' abi_videodrv='' abi_xinput='' ac_ct_CC='cc' ac_ct_DUMPBIN='' am__fastdepCCAS_FALSE='#' am__fastdepCCAS_TRUE='' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepOBJC_FALSE='' am__fastdepOBJC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='i386-portbld-freebsd7.2' build_alias='i386-portbld-freebsd7.2' build_cpu='i386' build_os='freebsd7.2' build_vendor='portbld' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' driverdir='' dvidir='${docdir}' exec_prefix='NONE' extdir='' host='i386-portbld-freebsd7.2' host_alias='' host_cpu='i386' host_os='freebsd7.2' host_vendor='portbld' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/local/info' install_sh='$(SHELL) /usr/ports/x11-servers/xorg-server/work/xorg-server-1.6.1/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='/var' logdir='/var/log' lt_ECHO='echo' mandir='/usr/local/man' mkdir_p='$(top_builddir)/./install-sh -c -d' moduledir='${exec_prefix}/lib/xorg/modules' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sdkdir='' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "xorg-server" #define PACKAGE_TARNAME "xorg-server" #define PACKAGE_VERSION "1.6.1" #define PACKAGE_STRING "xorg-server 1.6.1" #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" #define PACKAGE "xorg-server" #define VERSION "1.6.1" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define YYTEXT_POINTER 1 #define HAVE_DIRENT_H 1 #define STDC_HEADERS 1 #define HAVE_FCNTL_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_UNISTD_H 1 #define SIZEOF_UNSIGNED_LONG 4 #define USE_SYS_ENDIAN_H 1 #define bswap_16 bswap16 #define bswap_32 bswap32 #define bswap_64 bswap64 #define HAVE_VPRINTF 1 #define HAVE_GETEUID 1 #define HAVE_GETUID 1 #define HAVE_LINK 1 #define HAVE_MEMMOVE 1 #define HAVE_MEMSET 1 #define HAVE_MKSTEMP 1 #define HAVE_STRCHR 1 #define HAVE_STRRCHR 1 #define HAVE_STRTOL 1 #define HAVE_GETOPT 1 #define HAVE_GETOPT_LONG 1 #define HAVE_VSNPRINTF 1 #define HAVE_STRCASESTR 1 #define HAVE_FFS 1 #define HAVE_ALLOCA 1 #define HAS_GETDTABLESIZE 1 #define HAS_GETIFADDRS 1 #define HAS_GETPEEREID 1 #define HAS_STRLCPY 1 #define HAS_MMAP 1 #define HAVE_LIBM 1 #define HAVE_CBRT 1 #define HAVE_NDBM_H 1 #define HAVE_SYS_AGPIO_H 1 #define HAVE_SYS_MEMRANGE_H 1 #define HAS_MTRR_SUPPORT 1 #define HAVE_SYS_LINKER_H 1 #define HAVE_SYSV_IPC 1 #define USE_DEV_IO 1 #define CSRG_BASED 1 #define PCCONS_SUPPORT 1 #define PCVT_SUPPORT 1 #define SYSCONS_SUPPORT 1 #define PACKAGE_VERSION_MAJOR 1 #define PACKAGE_VERSION_MINOR 6 #define PACKAGE_VERSION_PATCHLEVEL 1 #define UNIXCONN 1 #define TCPCONN 1 #define IPv6 1 #define BSD44SOCKETS 1 #define HAVE_SOCKLEN_T 1 #define HAVE_AUTHDES_SECCREATE 1 #define HAVE_AUTHDES_CREATE 1 #define SECURE_RPC 1 #define HAVE_DBUS 1 #define CONFIG_HAL 1 #define CONFIG_NEED_DBUS 1 #define HAVE_CLOCK_GETTIME 1 #define MONOTONIC_CLOCK 1 #define XV 1 #define XvExtension 1 #define XvMCExtension 1 #define XREGISTRY 1 #define COMPOSITE 1 #define MITSHM 1 #define HAS_SHM 1 #define XRECORD 1 #define SCREENSAVER 1 #define RES 1 configure: exit 1 From dfilter at FreeBSD.ORG Sat Aug 1 17:40:11 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sat Aug 1 17:40:18 2009 Subject: ports/136806: commit references a PR Message-ID: <200908011740.n71HeBM7054853@freefall.freebsd.org> The following reply was made to PR ports/136806; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136806: commit references a PR Date: Sat, 1 Aug 2009 17:39:36 +0000 (UTC) rnoland 2009-08-01 17:39:21 UTC FreeBSD ports repository Modified files: graphics/libdrm Makefile distinfo Log: Update to 2.4.12 PR: 136806 Submitted by: Anonymous Revision Changes Path 1.17 +1 -1 ports/graphics/libdrm/Makefile 1.13 +3 -3 ports/graphics/libdrm/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From rnoland at FreeBSD.org Sat Aug 1 17:46:15 2009 From: rnoland at FreeBSD.org (rnoland@FreeBSD.org) Date: Sat Aug 1 17:46:24 2009 Subject: ports/136806: [patch] graphics/libdrm: update to 2.4.12; Message-ID: <200908011746.n71HkDpV062072@freefall.freebsd.org> Synopsis: [patch] graphics/libdrm: update to 2.4.12; State-Changed-From-To: open->closed State-Changed-By: rnoland State-Changed-When: Sat Aug 1 17:46:13 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=136806 From romain at blogreen.org Sat Aug 1 17:47:18 2009 From: romain at blogreen.org (Romain =?iso-8859-1?Q?Tarti=E8re?=) Date: Sat Aug 1 17:47:24 2009 Subject: Has anyone managed to get xorg to compile recently? In-Reply-To: <20090801114329.39e835b8.wmoran@potentialtech.com> References: <20090801114329.39e835b8.wmoran@potentialtech.com> Message-ID: <20090801174716.GA2297@blogreen.org> Hi On Sat, Aug 01, 2009 at 11:43:29AM -0400, Bill Moran wrote: > checking for GL... configure: error: Package requirements (glproto >= 1.4.9 gl >= 7.1.0) were not met: > > gnome-config: not found > No package 'gl' found /usr/local/libdata/pkgconfig/gl.pc if provided by graphics/libGL, and you don't have libGL-* in your package list. Maybe you have leftovers in your /usr/local directory (did you removed it when you deinstalled all your ports?). -- Romain Tarti?re http://romain.blogreen.org/ pgp: 8DAB A124 0DA4 7024 F82A E748 D8E9 A33F FF56 FF43 (ID: 0xFF56FF43) (plain text =non-HTML= PGP/GPG encrypted/signed e-mail much appreciated) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090801/b0f22754/attachment.pgp From dfilter at FreeBSD.ORG Sat Aug 1 17:50:04 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Sat Aug 1 17:50:10 2009 Subject: ports/136806: commit references a PR Message-ID: <200908011750.n71Ho47Q062369@freefall.freebsd.org> The following reply was made to PR ports/136806; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/136806: commit references a PR Date: Sat, 1 Aug 2009 17:42:54 +0000 (UTC) rnoland 2009-08-01 17:42:44 UTC FreeBSD ports repository Modified files: x11-drivers/xf86-video-nouveau Makefile distinfo Added files: x11-drivers/xf86-video-nouveau Makefile.rev pkg-message Log: Update to newer snapshot. This and the updated libdrm bump the API version to 0.0.14 which requires an updated kernel patch. See pkg-message for details. PR: 136806 Submitted by: Anonymous Revision Changes Path 1.7 +18 -9 ports/x11-drivers/xf86-video-nouveau/Makefile 1.1 +2 -0 ports/x11-drivers/xf86-video-nouveau/Makefile.rev (new) 1.4 +3 -3 ports/x11-drivers/xf86-video-nouveau/distinfo 1.1 +15 -0 ports/x11-drivers/xf86-video-nouveau/pkg-message (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From wmoran at potentialtech.com Sat Aug 1 18:39:23 2009 From: wmoran at potentialtech.com (Bill Moran) Date: Sat Aug 1 18:39:30 2009 Subject: Has anyone managed to get xorg to compile recently? In-Reply-To: <20090801174716.GA2297@blogreen.org> References: <20090801114329.39e835b8.wmoran@potentialtech.com> <20090801174716.GA2297@blogreen.org> Message-ID: <20090801144423.e9434ef6.wmoran@potentialtech.com> On Sat, 1 Aug 2009 19:47:16 +0200 Romain Tarti?re wrote: > > On Sat, Aug 01, 2009 at 11:43:29AM -0400, Bill Moran wrote: > > checking for GL... configure: error: Package requirements (glproto >= 1.4.9 gl >= 7.1.0) were not met: > > > > gnome-config: not found > > No package 'gl' found > /usr/local/libdata/pkgconfig/gl.pc if provided by graphics/libGL, and > you don't have libGL-* in your package list. Maybe you have leftovers > in your /usr/local directory (did you removed it when you deinstalled > all your ports?). No, I trusted the package system to take care of it. I've cleaned out /usr/local and have restarted the build. We'll see how it goes. Thanks for the help! -Bill From kstewart at owt.com Sat Aug 1 20:29:33 2009 From: kstewart at owt.com (Kent Stewart) Date: Sat Aug 1 20:29:45 2009 Subject: Has anyone managed to get xorg to compile recently? In-Reply-To: <20090801144423.e9434ef6.wmoran@potentialtech.com> References: <20090801114329.39e835b8.wmoran@potentialtech.com> <20090801174716.GA2297@blogreen.org> <20090801144423.e9434ef6.wmoran@potentialtech.com> Message-ID: <200908011315.00213.kstewart@owt.com> On Saturday 01 August 2009 11:44:23 am Bill Moran wrote: > On Sat, 1 Aug 2009 19:47:16 +0200 > > Romain Tarti?re wrote: > > On Sat, Aug 01, 2009 at 11:43:29AM -0400, Bill Moran wrote: > > > checking for GL... configure: error: Package requirements (glproto >= > > > 1.4.9 gl >= 7.1.0) were not met: > > > > > > gnome-config: not found > > > No package 'gl' found > > > > /usr/local/libdata/pkgconfig/gl.pc if provided by graphics/libGL, and > > you don't have libGL-* in your package list. Maybe you have leftovers > > in your /usr/local directory (did you removed it when you deinstalled > > all your ports?). > > No, I trusted the package system to take care of it. > > I've cleaned out /usr/local and have restarted the build. We'll see how > it goes. Thanks for the help! I have done it several times lately. I found that some packages that I had built for use in a slower computer were old and not current, so, I did a portupgrade -pfR xorg. Portupgrade had no problem with the dependancy build. I had also done a "-pfr jpeg", a "-pfr perl", and a "-pfr python". The perl update to .10 fixed a sticky problem that had just developed with kde. It was acting like there was glue between the keyboard and the system. It was a nice side effect :). The upgrade to tidy caused more trouble than all of the others combined. The port system still points to the old version of tidy but pkgdb will fix the links. In this process, I had to use pkgdb -L to get the links back and -F to fix things. Doing an forced update from packages would add both versions of tidy to my system. I did the pkgdb thing so many times before I figured out that I had to manually build tidy that I don't remember the order they were done in. I think I also used "portmanager -s" to tell me of ports that had old links. When I got through things worked much better :). Kent > > -Bill > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From kstewart at owt.com Sat Aug 1 20:29:33 2009 From: kstewart at owt.com (Kent Stewart) Date: Sat Aug 1 20:29:46 2009 Subject: Has anyone managed to get xorg to compile recently? In-Reply-To: <20090801144423.e9434ef6.wmoran@potentialtech.com> References: <20090801114329.39e835b8.wmoran@potentialtech.com> <20090801174716.GA2297@blogreen.org> <20090801144423.e9434ef6.wmoran@potentialtech.com> Message-ID: <200908011315.00213.kstewart@owt.com> On Saturday 01 August 2009 11:44:23 am Bill Moran wrote: > On Sat, 1 Aug 2009 19:47:16 +0200 > > Romain Tarti?re wrote: > > On Sat, Aug 01, 2009 at 11:43:29AM -0400, Bill Moran wrote: > > > checking for GL... configure: error: Package requirements (glproto >= > > > 1.4.9 gl >= 7.1.0) were not met: > > > > > > gnome-config: not found > > > No package 'gl' found > > > > /usr/local/libdata/pkgconfig/gl.pc if provided by graphics/libGL, and > > you don't have libGL-* in your package list. Maybe you have leftovers > > in your /usr/local directory (did you removed it when you deinstalled > > all your ports?). > > No, I trusted the package system to take care of it. > > I've cleaned out /usr/local and have restarted the build. We'll see how > it goes. Thanks for the help! I have done it several times lately. I found that some packages that I had built for use in a slower computer were old and not current, so, I did a portupgrade -pfR xorg. Portupgrade had no problem with the dependancy build. I had also done a "-pfr jpeg", a "-pfr perl", and a "-pfr python". The perl update to .10 fixed a sticky problem that had just developed with kde. It was acting like there was glue between the keyboard and the system. It was a nice side effect :). The upgrade to tidy caused more trouble than all of the others combined. The port system still points to the old version of tidy but pkgdb will fix the links. In this process, I had to use pkgdb -L to get the links back and -F to fix things. Doing an forced update from packages would add both versions of tidy to my system. I did the pkgdb thing so many times before I figured out that I had to manually build tidy that I don't remember the order they were done in. I think I also used "portmanager -s" to tell me of ports that had old links. When I got through things worked much better :). Kent > > -Bill > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From vitaly.it at gmail.com Sat Aug 1 21:51:13 2009 From: vitaly.it at gmail.com (Vitaly Vasilenko) Date: Sat Aug 1 21:51:19 2009 Subject: libGLU Message-ID: <4A74B392.1050601@gmail.com> Cheking for LIBDRM ... configure: errore: Package requirements (libdrm >= 2.4.3) were not met; Requested 'libdrm >= 2.4.3' but version for libdrm is 2.3.1 . Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standart prefix. Altematively , you may set the envirament variables LIBDRM_CFLAGS and LIBDRM_LIBS to avoid the need to call pkg_config. See the pkg_config man page for more details. ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/graphics/libGLU/work/Mesa-7.4.4/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an 'ls /var/db/pkg'). From swell.k at gmail.com Sun Aug 2 10:05:28 2009 From: swell.k at gmail.com (Anonymous) Date: Sun Aug 2 10:05:35 2009 Subject: libGLU In-Reply-To: <4A74B392.1050601@gmail.com> (Vitaly Vasilenko's message of "Sat, 01 Aug 2009 23:28:50 +0200") References: <4A74B392.1050601@gmail.com> Message-ID: <86zlai8ra4.fsf@gmail.com> Vitaly Vasilenko writes: > Cheking for LIBDRM ... configure: errore: Package requirements > (libdrm >= 2.4.3) were not met; > > Requested 'libdrm >= 2.4.3' but version for libdrm is 2.3.1 . > Consider adjusting the PKG_CONFIG_PATH environment variable if > you installed software in a non-standart prefix. > Why are you trying to install/update libGLU prior to libdrm? The dependencies are libdrm -> libGL -> libGLU. I believe even `portupgrade -a' without `-r' would do it right. From edwin at FreeBSD.org Sun Aug 2 23:50:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun Aug 2 23:50:24 2009 Subject: ports/137373: x11/libX11: make dependance on x11/libxcb Message-ID: <200908022350.n72NoCjV087196@freefall.freebsd.org> Synopsis: x11/libX11: make dependance on x11/libxcb Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 2 23:50:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137373 From bugmaster at FreeBSD.org Mon Aug 3 11:07:13 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 3 11:10:30 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200908031107.n73B7AX7088842@freefall.freebsd.org> 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 ports/137373 x11 x11/libX11: make dependance on x11/libxcb o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134194 x11 graphics/dri fail on 7.2-RELEASE amd64 o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133419 x11 Unable to build x11-drivers/xf86-video-nsc o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132041 x11 x11/xorg: Broken Intel video driver o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts f ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke 28 problems total. From jakub_lach at mailplus.pl Mon Aug 3 12:26:36 2009 From: jakub_lach at mailplus.pl (=?UTF-8?Q?Jakub_Lach?=) Date: Mon Aug 3 12:26:46 2009 Subject: Minor xcalc dependency problem. Message-ID: <64ea390e.dfd34b8.4a76d38e.5180@o2.pl> Hello. Without font-adobe-*dpi port there is warning about adobe-symbol font and some glyphs (e.g. square root) are not displayed correctly, without xbitmaps there is also harmless (?) but annoying warning: "Warning: Cannot convert string "calculator" to type Pixmap" -best regards, Jakub Lach From olgeni at freebsd.org Mon Aug 3 13:46:08 2009 From: olgeni at freebsd.org (Jimmy Olgeni) Date: Mon Aug 3 13:46:39 2009 Subject: [PATCH] x11/xdm: remove xdm-config from plist Message-ID: <200908031334.n73DY8iN015578@backoffice.colby.local> >Submitter-Id: current-users >Originator: Jimmy Olgeni >Organization: >Confidential: no >Synopsis: [PATCH] x11/xdm: remove xdm-config from plist >Severity: serious >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 7.2-RELEASE-p1 i386 >Environment: System: FreeBSD backoffice 7.2-RELEASE-p1 FreeBSD 7.2-RELEASE-p1 #3: Wed Jun 24 11:25:23 CEST 2009 >Description: xdm-config is a configuration file handled by @exec and @unexec; as such it should not be listed in pkg-plist, else it will be removed by pkg_delete during upgrades. Port maintainer (x11@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xdm-1.1.8_2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/x11/xdm/Makefile,v retrieving revision 1.8 diff -u -u -r1.8 Makefile --- Makefile 23 Jan 2009 16:28:18 -0000 1.8 +++ Makefile 3 Aug 2009 13:30:53 -0000 @@ -7,7 +7,7 @@ PORTNAME= xdm PORTVERSION= 1.1.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/x11/xdm/pkg-plist,v retrieving revision 1.3 diff -u -u -r1.3 pkg-plist --- pkg-plist 2 Jul 2007 17:35:12 -0000 1.3 +++ pkg-plist 3 Aug 2009 13:30:53 -0000 @@ -6,7 +6,6 @@ lib/X11/xdm/libXdmGreet.so lib/X11/xdm/pixmaps/xorg-bw.xpm lib/X11/xdm/pixmaps/xorg.xpm -lib/X11/xdm/xdm-config share/X11/app-defaults/Chooser @unexec if cmp -s %D/%%EXAMPLESDIR%%/GiveConsole %D/lib/X11/xdm/GiveConsole; then rm -f %D/lib/X11/xdm/GiveConsole; fi @unexec if cmp -s %D/%%EXAMPLESDIR%%/TakeConsole %D/lib/X11/xdm/TakeConsole; then rm -f %D/lib/X11/xdm/TakeConsole; fi --- xdm-1.1.8_2.patch ends here --- From edwin at FreeBSD.org Mon Aug 3 14:00:33 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon Aug 3 14:01:17 2009 Subject: ports/137391: [PATCH] x11/xdm: remove xdm-config from plist Message-ID: <200908031400.n73E0W5n030201@freefall.freebsd.org> Synopsis: [PATCH] x11/xdm: remove xdm-config from plist Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Mon Aug 3 14:00:32 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137391 From Wade at StreamingFREE.TV Mon Aug 3 19:14:52 2009 From: Wade at StreamingFREE.TV (StreamingFREE) Date: Mon Aug 3 19:14:59 2009 Subject: StreamingFREE.TV $449 Sale... This Week Only Message-ID: <10242ea3eef7aa4c9a1aca2178bce74c@fanbridge.com> Your Email client is not formatted to view HTML emails. We have included the text email of the message. [1] Links: ------ [1] http://fburls.com/7-vfH5euk6/t/s/txt/cid/541578/sid/102908344 ---------------------------------------- StreamingFREE sent this email to x11@FreeBSD.ORG Questions? Contact Wade@StreamingFREE.TV or StreamingFREE, c/o FanBridge, Inc. - 14525 SW Millikan Way, #16910, Beaverton, Oregon 97005, United States Privacy Policy - http://www.FanBridge.com/learn/privacy.php Unsubscribe - http://fburls.com/35-IKRDPX8w Update Your Information - http://fburls.com/63-zbJceZXU Forward to a friend - http://fburls.com/17-2WpimJZs This email message is powered by FanBridge: http://www.FanBridge.com/b.php?id=124748 Free Email and Mobile fan list management for bands. From bogorodskiy at gmail.com Thu Aug 6 16:47:26 2009 From: bogorodskiy at gmail.com (Roman Bogorodskiy) Date: Thu Aug 6 16:47:33 2009 Subject: libX11 build fail Message-ID: <20090806161535.GA40476@underworld.novel.ru> Trying to build x11/libX11 (cvsuped an hour ago) and have the following problem: ./configure: 2767: Syntax error: word unexpected (expecting ")") ===> Script "configure" failed unexpectedly. Line 2767 of configure being: 2767 _LT_DECL(build_libtool_libs, enable_shared, 0, 2768 Whether or not to build shared libraries) config.log attached. Roman Bogorodskiy -------------- next part -------------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by libX11 configure 1.2.1, which was generated by GNU Autoconf 2.62. Invocation command line was $ ./configure --datadir=/usr/local/lib --with-xcb=yes --enable-malloc0returnsnull --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=amd64-portbld-freebsd8.0 ## --------- ## ## Platform. ## ## --------- ## hostname = underworld.novel.ru uname -m = amd64 uname -r = 8.0-CURRENT uname -s = FreeBSD uname -v = FreeBSD 8.0-CURRENT #48: Sat Mar 21 19:51:11 MSK 2009 root@underworld.novel.ru:/usr/obj/usr/src/sys/UNDERWORLD /usr/bin/uname -p = amd64 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /home/novel/bin PATH: /usr/lib/jvm/java-1.5.0-sun/bin PATH: /home/novel/opt/apache-maven-2.0.9/bin PATH: /home/novel/bin PATH: /usr/lib/jvm/java-1.5.0-sun/bin PATH: /home/novel/opt/apache-maven-2.0.9/bin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /home/novel/bin PATH: /usr/local/libexec/git-core/ PATH: /usr/local/libexec/git-core/ ## ----------- ## ## Core tests. ## ## ----------- ## configure:2241: checking for a BSD-compatible install configure:2309: result: /usr/bin/install -c -o root -g wheel configure:2320: checking whether build environment is sane configure:2363: result: yes configure:2388: checking for a thread-safe mkdir -p configure:2427: result: /usr/local/bin/gmkdir -p configure:2440: checking for gawk configure:2456: found /usr/local/bin/gawk configure:2467: result: gawk configure:2478: checking whether make sets $(MAKE) configure:2500: result: yes configure:2689: checking whether to enable maintainer-specific portions of Makefiles configure:2698: result: no configure:2723: checking if xorg-macros used to generate configure is at least 1.2 configure:2738: result: yes, 1.2.1 ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_env_BIGFONT_CFLAGS_set='' ac_cv_env_BIGFONT_CFLAGS_value='' ac_cv_env_BIGFONT_LIBS_set='' ac_cv_env_BIGFONT_LIBS_value='' ac_cv_env_CCC_set='' ac_cv_env_CCC_value='' ac_cv_env_CC_set=set ac_cv_env_CC_value=cc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -pipe -march=k8 -fno-strict-aliasing' ac_cv_env_CPPFLAGS_set='' ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_CXXCPP_set='' ac_cv_env_CXXCPP_value='' ac_cv_env_CXXFLAGS_set=set ac_cv_env_CXXFLAGS_value='-O2 -pipe -march=k8 -fno-strict-aliasing' ac_cv_env_CXX_set=set ac_cv_env_CXX_value=c++ ac_cv_env_F77_set='' ac_cv_env_F77_value='' ac_cv_env_FFLAGS_set='' ac_cv_env_FFLAGS_value='' ac_cv_env_LDFLAGS_set='' ac_cv_env_LDFLAGS_value='' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_PKG_CONFIG_set='' ac_cv_env_PKG_CONFIG_value='' ac_cv_env_X11_CFLAGS_set='' ac_cv_env_X11_CFLAGS_value='' ac_cv_env_X11_LIBS_set='' ac_cv_env_X11_LIBS_value='' ac_cv_env_XDMCP_CFLAGS_set='' ac_cv_env_XDMCP_CFLAGS_value='' ac_cv_env_XDMCP_LIBS_set='' ac_cv_env_XDMCP_LIBS_value='' ac_cv_env_XKBPROTO_CFLAGS_set='' ac_cv_env_XKBPROTO_CFLAGS_value='' ac_cv_env_XKBPROTO_LIBS_set='' ac_cv_env_XKBPROTO_LIBS_value='' ac_cv_env_XPROTO_CFLAGS_set='' ac_cv_env_XPROTO_CFLAGS_value='' ac_cv_env_XPROTO_LIBS_set='' ac_cv_env_XPROTO_LIBS_value='' ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=amd64-portbld-freebsd8.0 ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_path_mkdir=/usr/local/bin/gmkdir ac_cv_prog_AWK=gawk ac_cv_prog_make_make_set=yes lt_cv_sys_max_cmd_len=262144 ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='/usr/local/bin/aclocal-1.10' ADMIN_MAN_DIR='' ADMIN_MAN_SUFFIX='' AMDEPBACKSLASH='' AMDEP_FALSE='' AMDEP_TRUE='' AMTAR='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run tar' APP_MAN_DIR='' APP_MAN_SUFFIX='' AR='' AUTOCONF='/usr/local/bin/autoconf-2.62' AUTOHEADER='/usr/local/bin/autoheader-2.62' AUTOMAKE='/usr/local/bin/automake-1.10' AWK='gawk' BIGFONT_CFLAGS='' BIGFONT_LIBS='' CC='cc' CCDEPMODE='' CC_FOR_BUILD='' CFLAGS='-O2 -pipe -march=k8 -fno-strict-aliasing' CHANGELOG_CMD='' CPP='' CPPFLAGS='' CWARNFLAGS='' CXX='c++' CXXCPP='' CXXDEPMODE='' CXXFLAGS='-O2 -pipe -march=k8 -fno-strict-aliasing' CYGPATH_W='echo' DEFS='' DEPDIR='' DRIVER_MAN_DIR='' DRIVER_MAN_SUFFIX='' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='' EXEEXT='' F77='' FFLAGS='' FILE_MAN_DIR='' FILE_MAN_SUFFIX='' GREP='' I18N_MODULE_LIBS='' INSTALL_DATA='install -o root -g wheel -m 444' INSTALL_PROGRAM='install -s -o root -g wheel -m 555' INSTALL_SCRIPT='install -o root -g wheel -m 555' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' KEYSYMDEF='' LAUNCHD='' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='/usr/local/bin/libtool' LIB_MAN_DIR='' LIB_MAN_SUFFIX='' LINT='' LINTLIB='' LINT_FALSE='' LINT_FLAGS='' LINT_TRUE='' LN_S='' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run makeinfo' MAKE_LINT_LIB_FALSE='' MAKE_LINT_LIB_TRUE='' MALLOC_ZERO_CFLAGS='' MANPAGES_FALSE='' MANPAGES_TRUE='' MISC_MAN_DIR='' MISC_MAN_SUFFIX='' MKDIR_P='/usr/local/bin/gmkdir -p' OBJEXT='' OS2_FALSE='' OS2_TRUE='' PACKAGE='libX11' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' PACKAGE_NAME='libX11' PACKAGE_STRING='libX11 1.2.1' PACKAGE_TARNAME='libX11' PACKAGE_VERSION='1.2.1' PATH_SEPARATOR=':' PKG_CONFIG='' RANLIB='' RAWCPP='' RAWCPPFLAGS='' SET_MAKE='' SHELL='/bin/sh' STRIP='' THRSTUBS_FALSE='' THRSTUBS_TRUE='' UDC_FALSE='' UDC_TRUE='' VERSION='1.2.1' WCHAR32='' X11_CFLAGS='' X11_DATADIR='' X11_EXTRA_DEPS='' X11_LIBDIR='' X11_LIBS='' X11_LOCALEDATADIR='' X11_LOCALEDIR='' X11_LOCALELIBDIR='' XCB_FALSE='' XCB_TRUE='' XCMS_FALSE='' XCMS_TRUE='' XDMCP_CFLAGS='' XDMCP_LIBS='' XERRORDB='' XKBPROTO_CFLAGS='' XKBPROTO_LIBS='' XKBPROTO_REQUIRES='' XKB_FALSE='' XKB_TRUE='' XKEYSYMDB='' XLIB_LOADABLE_I18N_FALSE='' XLIB_LOADABLE_I18N_TRUE='' XLOCALEDATADIR='' XLOCALEDIR='' XLOCALELIBDIR='' XLOCALE_FALSE='' XLOCALE_TRUE='' XMALLOC_ZERO_CFLAGS='' XPROTO_CFLAGS='' XPROTO_LIBS='' XTHREADLIB='' XTHREAD_CFLAGS='' XTMALLOC_ZERO_CFLAGS='' ac_ct_CC='' ac_ct_CXX='' ac_ct_F77='' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='' am__fastdepCXX_TRUE='' am__include='' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='amd64-portbld-freebsd8.0' build_alias='amd64-portbld-freebsd8.0' build_cpu='' build_os='' build_vendor='' datadir='/usr/local/lib' datarootdir='${prefix}/share' distcleancheck_listfiles='' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='NONE' host='' host_alias='' host_cpu='' host_os='' host_vendor='' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/local/info' install_sh='$(SHELL) /usr/ports/x11/libX11/work/libX11-1.2.1/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='/usr/local/man' mkdir_p='/usr/local/bin/gmkdir -p' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "libX11" #define PACKAGE_TARNAME "libX11" #define PACKAGE_VERSION "1.2.1" #define PACKAGE_STRING "libX11 1.2.1" #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" #define PACKAGE "libX11" #define VERSION "1.2.1" configure: exit 2 From linimon at FreeBSD.org Fri Aug 7 06:28:48 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Aug 7 06:28:59 2009 Subject: FreeBSD ports that you maintain which are currently marked broken Message-ID: <20090807062847.2E6391CCCE@mail.droso.net> Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 6.x/7.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: x11-drivers/xf86-video-nsc broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-drivers&portname=xf86-video-nsc If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From bogorodskiy at gmail.com Fri Aug 7 17:14:17 2009 From: bogorodskiy at gmail.com (Roman Bogorodskiy) Date: Fri Aug 7 17:14:23 2009 Subject: libX11 build fail In-Reply-To: <20090806161535.GA40476@underworld.novel.ru> References: <20090806161535.GA40476@underworld.novel.ru> Message-ID: <20090807171321.GA1337@underworld.novel.ru> Roman Bogorodskiy wrote: > Trying to build x11/libX11 (cvsuped an hour ago) and have the following > problem: > > ./configure: 2767: Syntax error: word unexpected (expecting ")") > ===> Script "configure" failed unexpectedly. > > Line 2767 of configure being: > > 2767 _LT_DECL(build_libtool_libs, enable_shared, 0, > 2768 Whether or not to build shared libraries) > > config.log attached. I've managed to compile it (see the patch attached). Also, I don't see a point to bring in so much autotools stuff just to change pkgconfig files location while we can just patch Makefile.in before running configure. Roman Bogorodskiy From kohi at iri.co.jp Mon Aug 10 04:12:33 2009 From: kohi at iri.co.jp (Koh-ichi Ito) Date: Mon Aug 10 04:12:42 2009 Subject: [ports] makeing libGLU failure Message-ID: <200908100412.n7A4CIOc087314@alphonse.himoo.iri.co.jp> Hello team, Let me inform you the failure of making libGLU ports. While installing gimp port, I got the following message. Speaking shortly, I can't find x11-xcb directory under my /usr/ports tree which is obtained with csup. I show the result of ls /usr/ports/x11*/*xcb* at the tail of this mail. I also attach Mesa-7.4.4/config.log which is required. I hope this problem to be solved. If the information in this mail is not enough, please let me known about it. Thanks in advance. Koh-ichi Ito ----- 8< -------------------------------------------------- Script started on Mon Aug 10 13:00:15 2009 kohi@alphonse[1]% /usr/bin/su Password: alphonse# pwd /u/FreeBSD7/usr/ports/graphics/libGLU alphonse# make clean; make ===> Cleaning for libGLU-7.4.4 ===> Extracting for libGLU-7.4.4 => MD5 Checksum OK for MesaLib-7.4.4.tar.bz2. => SHA256 Checksum OK for MesaLib-7.4.4.tar.bz2. ===> Patching for libGLU-7.4.4 ===> Applying FreeBSD patches for libGLU-7.4.4 ===> libGLU-7.4.4 depends on executable: gmake - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/xext.pc - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/xxf86vm.pc - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/xdamage.pc - found ===> libGLU-7.4.4 depends on file: /usr/local/libdata/pkgconfig/xfixes.pc - found ===> libGLU-7.4.4 depends on shared library: GL.1 - found ===> Configuring for libGLU-7.4.4 checking build system type... i386-portbld-freebsd7.2 checking host system type... i386-portbld-freebsd7.2 checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking how to run the C preprocessor... cc -E checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for gmake... gmake checking for makedepend... /usr/local/bin/makedepend checking for sed... /usr/bin/sed checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking whether to enable assembly... yes, x86 checking for cc option to produce PIC... -fPIC checking for dlopen... yes checking for posix_memalign... yes checking pkg-config files for X11 are available... yes checking for LIBDRM... yes checking for DRI2PROTO... yes checking for DRIGL... configure: error: Package requirements (x11 xext xxf86vm xdamage xfixes x11-xcb xcb-glx) were not met: gnome-config: not found No package 'x11-xcb' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables DRIGL_CFLAGS and DRIGL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/u/FreeBSD7/usr/ports/graphics/libGLU/work/Mesa-7.4.4/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /u/FreeBSD7/usr/ports/graphics/libGLU. alphonse# ls /var/db/pkg OpenSSH-askpass-1.2.4.1 p5-ExtUtils-CBuilder-0.24 aalib-1.4.r5_4 p5-ExtUtils-ParseXS-2.19 amspsfnt-1.0_5 p5-GD-2.41 apache-2.2.11_7 p5-GraphViz-2.03_2 apel-emacs22-10.7_3 p5-HTML-Parser-3.60 appres-1.0.1 p5-HTML-Tagset-3.20 asciidoc-8.4.4 p5-HTML-Tree-3.23 atk-1.24.0 p5-HTTP-Lite-2.1.6 autoconf-2.62 p5-IO-Compress-Base-2.015 autoconf-wrapper-20071109 p5-IO-Compress-Bzip2-2.015 bash-4.0.24 p5-IO-Compress-Zlib-2.015 bdftopcf-1.0.1 p5-IO-Socket-INET6-2.56 beforelight-1.0.2 p5-IO-Socket-SSL-1.23 bigreqsproto-1.0.2 p5-IO-String-1.08 bison-2.4.1,1 p5-IO-Tty-1.08 bitmap-1.0.3 p5-IO-Zlib-1.09 bitmap-emacs22-8.5_7 p5-IPC-Run-0.82 bitmap-fonts-1.0_2 p5-MIME-Base64-3.07 bitstream-vera-1.10_4 p5-Mail-SpamAssassin-3.2.5_2 bsdpan-Graphics-ColorObject-0.5.0 p5-Mail-Tools-2.04 bsdpan-Module-Load-0.16 p5-Math-BigInt-1.89 bsdpan-Module-Loaded-0.02 p5-Module-Build-0.32 ca_root_nss-3.11.9_2 p5-Net-DNS-0.65 cairo-1.8.6_1,1 p5-Net-IP-1.25 cclient-2007e,1 p5-Net-LibIDN-0.10_1 cmpsfont-1.0_6 p5-Net-SSLeay-1.35_1 compositeproto-0.4 p5-Package-Constants-0.02 consolekit-0.2.10_2 p5-Parse-RecDescent-1.96.0_2 curl-7.19.4 p5-Pod-Parser-1.38 damageproto-1.1.0_2 p5-SNMP_Session-1.12 dbus-1.2.1 p5-SVG-2.49 dbus-glib-0.76 p5-Socket6-0.23 desktop-file-utils-0.15_1 p5-Storable-2.18 dmidecode-2.9 p5-Text-Iconv-1.7 dmxproto-2.2.2 p5-Tie-IxHash-1.21 dri-7.0.3_1,2 p5-TimeDate-1.16,1 dri2proto-2.0 p5-Tk-804.028.501 editres-1.0.3 p5-URI-1.37 emacs-22.3_1 p5-XML-Filter-BufferText-1.01 encodings-1.0.2,1 p5-XML-Handler-YAWriter-0.23 expat-2.0.1 p5-XML-NamespaceSupport-1.09_1 faces-1.7.7_9 p5-XML-Parser-2.36 fixesproto-4.0 p5-XML-SAX-0.96 flim-emacs22-1.14.8_2,1 p5-XML-SAX-Expat-0.40 font-adobe-100dpi-1.0.0_1 p5-XML-SAX-Writer-0.52 font-adobe-75dpi-1.0.0 p5-XML-Simple-2.18 font-adobe-utopia-100dpi-1.0.1 p5-XML-Twig-3.32 font-adobe-utopia-75dpi-1.0.1 p5-XML-XPath-1.13 font-adobe-utopia-type1-1.0.1 p5-YAML-0.68 font-alias-1.0.1 p5-gettext-1.05_2 font-arabic-misc-1.0.0 p5-libwww-5.825 font-bh-100dpi-1.0.0 p5-libxml-0.08 font-bh-75dpi-1.0.0 p5-type1inst-0.6.1_5 font-bh-lucidatypewriter-100dpi-1.0.0 p5-version-0.76 font-bh-lucidatypewriter-75dpi-1.0.0 pango-1.24.2 font-bh-ttf-1.0.0 pciids-20080901 font-bh-type1-1.0.0 pcre-7.7_1 font-bitstream-100dpi-1.0.0 pdflib-7.0.3 font-bitstream-75dpi-1.0.0 perl-5.8.9_2 font-bitstream-type1-1.0.0 pixman-0.14.0 font-cronyx-cyrillic-1.0.0 pkg-config-0.23_1 font-cursor-misc-1.0.0 platex-japanese-1.3 font-daewoo-misc-1.0.0 plotutils-2.5,1 font-dec-misc-1.0.0 png-1.2.35 font-ibm-type1-1.0.0 policykit-0.9_1 font-isas-misc-1.0.0 poppler-0.10.6 font-jis-misc-1.0.0 poppler-data-0.2.1 font-micro-misc-1.0.0 poppler-gtk-0.10.6 font-misc-cyrillic-1.0.0 popt-1.7_5 font-misc-ethiopic-1.0.0 portaudit-0.5.12 font-misc-meltho-1.0.0_1 postgresql-client-8.3.7 font-misc-misc-1.0.0 postgresql-server-8.3.7 font-mutt-misc-1.0.0 printproto-1.0.3 font-schumacher-misc-1.0.0 procmail-3.22_6 font-screen-cyrillic-1.0.1 pth-2.0.7 font-sony-misc-1.0.0 py25-xml-0.8.4_1 font-sun-misc-1.0.0 python25-2.5.2_3 font-util-1.0.1 randrproto-1.2.1 font-winitzki-cyrillic-1.0.0 razor-agents-2.84 font-xfree86-type1-1.0.0 recordproto-1.13.2 fontcacheproto-0.1.2 renderproto-0.9.3 fontconfig-2.5.0,1 resourceproto-1.0.2 fontsproto-2.0.2 rgb-1.0.1 fonttosfnt-1.0.3 rrdtool-1.3.7 freetype2-2.3.9_1 rstart-1.0.2 fslsfonts-1.0.1 ruby-1.8.7.160_1,1 fstobdf-1.0.2 samba-3.3.2 fvwm2-i18n-imlib-2.4.20_2 scim-1.4.7_3 gamin-0.1.9_2 screen-4.0.3_6 gccmakedep-1.0.2 scripts-1.0.1 gd-2.0.35_1,1 scrnsaverproto-1.1.0 gettext-0.17_1 semi-emacs22-1.14.6_3 ghostscript8-8.64_6 sessreg-1.0.3 gio-fam-backend-2.16.5 setxkbmap-1.0.4 glib-1.2.10_12 shared-mime-info-0.60 glib-2.18.4 showfont-1.0.1_1 glproto-1.4.8 smartmontools-5.38_3 gmake-3.81_3 smproxy-1.0.2 gnome_subr-1.0 swig-1.3.39 gnomehier-2.3_11 t1lib-5.1.2_1,1 gnupg-2.0.11 teTeX-base-3.0_14 gnuplot-4.2.5_1 teTeX-texmf-3.0_5 gperf-3.0.3 tex-texmflocal-1.9 graphviz-2.22.2 texi2html-1.76_1,1 gsfonts-8.11_5 tgif-4.1.45_4 gtk-1.2.10_20 tiff-3.8.2_4 gtk-2.14.7_1 trapproto-3.4.3 hal-0.5.11_1 twm-1.0.3_3 help2man-1.36.4_2 unzip-5.52_5 hicolor-icon-theme-0.10_2 v4l_compat-1.0.20060801 iceauth-1.0.2 videoproto-2.2.2 ico-1.0.2 viewres-1.0.1 imake-1.0.2_4,1 vnc-4.1.3_1 imap-uw-2007e,1 wanderlust-emacs22-2.14.0_2 inputproto-1.4.2.1 x11perf-1.4.1 intltool-0.40.6 xauth-1.0.2 isc-dhcp30-server-3.0.7_4 xbacklight-1.1 iso-codes-3.10 xbiff-1.0.1 ja-anthy-9100h xbitmaps-1.0.1 ja-dvipsk-tetex-5.95b_9 xcalc-1.0.2 ja-font-ipa-00301_1 xcb-proto-1.4 ja-font-std-0.0.20090602 xcb-util-0.3.3 ja-k20fonts-0.396_5 xclipboard-1.0.1 ja-kasumi-2.3_1 xclock-1.0.3 ja-kterm-6.2.0_11 xcmiscproto-1.1.2 ja-less+iso-382.262 xcmsdb-1.0.1 ja-nkf-2.0.7,1 xconsole-1.0.3 ja-p5-Jcode-2.07 xcursor-themes-1.0.1_1 ja-platex-jsclasses-1.0.20060212_2 xcursorgen-1.0.2 ja-ptex-tetex-3.1.10 xdbedizzy-1.0.2 ja-scim-anthy-1.2.4_1 xditview-1.0.1 jasper-1.900.1_8 xdm-1.1.6_3 jbigkit-1.6 xdpyinfo-1.0.2_1 jpeg-7 xdriinfo-1.0.2 kbproto-1.0.3 xedit-1.0.2 lcms-1.18a_1,1 xev-1.0.2 libFS-1.0.0_1 xextproto-7.0.2 libGL-7.0.3 xeyes-1.0.1 libICE-1.0.4_1,1 xf86-input-keyboard-1.2.2_2 libSM-1.0.3_1,1 xf86-input-mouse-1.2.3_2 libX11-1.1.3_1,1 xf86-video-ati-6.9.0 libXScrnSaver-1.1.2 xf86-video-intel-2.4.2 libXTrap-1.0.0 xf86-video-mach64-6.8.0 libXau-1.0.3_2 xf86-video-nv-2.1.12 libXaw-1.0.4_1,1 xf86-video-r128-6.8.0 libXcomposite-0.4.0,1 xf86-video-radeonhd-1.2.1_1 libXcursor-1.1.9_1 xf86-video-vesa-1.3.0_2 libXdamage-1.1.1 xf86-video-vga-4.1.0_2 libXdmcp-1.0.2_1 xf86-video-via-0.2.2_3 libXevie-1.0.2 xf86bigfontproto-1.1.2 libXext-1.0.3,1 xf86dga-1.0.2 libXfixes-4.0.3_1 xf86dgaproto-2.0.3 libXfont-1.3.1_3,1 xf86driproto-2.0.3 libXfontcache-1.0.4 xf86miscproto-0.9.2 libXft-2.1.13 xf86rushproto-1.1.2 libXi-1.1.3,1 xf86vidmodeproto-2.2.2 libXinerama-1.0.2,1 xfd-1.0.1 libXmu-1.0.3,1 xfindproxy-1.0.1 libXp-1.0.0,1 xfontsel-1.0.2 libXpm-3.5.7 xfs-1.0.5_1,1 libXprintAppUtil-1.0.1 xfsinfo-1.0.1 libXprintUtil-1.0.1 xfwp-1.0.1 libXrandr-1.2.2_1 xgamma-1.0.2 libXrender-0.9.4_1 xgc-1.0.1 libXres-1.0.3_3 xhost-1.0.2 libXt-1.0.5_1 xineramaproto-1.1.2 libXtst-1.0.3_1 xinit-1.0.7 libXv-1.0.3_1,1 xkbcomp-1.0.3 libXvMC-1.0.4_1 xkbevd-1.0.2 libXxf86dga-1.0.2 xkbprint-1.0.1 libXxf86misc-1.0.1 xkbutils-1.0.1_1 libXxf86vm-1.0.1 xkeyboard-config-1.3 libassuan-1.0.5 xkill-1.0.1 libcheck-0.9.6 xload-1.0.2 libdmx-1.0.2_1 xlogo-1.0.1 libdrm-2.4.12 xlsatoms-1.0.1 libexecinfo-1.1_3 xlsclients-1.0.1 libexif-0.6.17 xlsfonts-1.0.2 libfontenc-1.0.4 xmag-1.0.2 libgcrypt-1.4.4 xman-1.0.3 libgpg-error-1.7 xmessage-1.0.2 libiconv-1.11_1 xmodmap-1.0.3 libidn-1.13 xmore-1.0.1 libksba-1.0.5 xorg-7.3_2 libltdl-1.5.26 xorg-apps-7.3 libmng-1.0.10 xorg-cf-files-1.0.2_3 liboldX-1.0.1 xorg-docs-1.4,1 libpthread-stubs-0.1 xorg-drivers-7.3_3 libtool-1.5.26 xorg-fonts-100dpi-7.3 libungif-4.1.4_5 xorg-fonts-7.3_1 libutempter-1.1.5_1 xorg-fonts-75dpi-7.3 libvolume_id-0.81.0 xorg-fonts-cyrillic-7.3 libwmf-0.2.8.4_4 xorg-fonts-miscbitmaps-7.3 libwww-5.4.0_4 xorg-fonts-truetype-7.3 libxcb-1.2 xorg-fonts-type1-7.3 libxkbfile-1.0.4 xorg-libraries-7.3_2 libxkbui-1.0.2_1 xorg-protos-7.3_2 libxml2-2.7.3 xorg-server-1.4.2,1 libxslt-1.1.24_2 xphelloworld-1.0.1_1 listres-1.0.1 xplsprinters-1.0.1 luit-1.0.2_2 xpr-1.0.2 m4-1.4.12,1 xprehashprinterlist-1.0.1 makedepend-1.0.1,1 xprop-1.0.3 mbmon-205_4 xproto-7.0.10_1 mkbold-mkitalic-0.11_1 xproxymanagementprotocol-1.0.2 mkcomposecache-1.2_1 xrandr-1.2.2 mkfontdir-1.0.3_1 xrdb-1.0.4 mkfontscale-1.0.3 xrefresh-1.0.2 mrtg-2.16.2,1 xrx-1.0.1_1 nasm-2.05.01,1 xset-1.0.3 netpbm-10.26.63_1 xsetmode-1.0.0 nmh-1.2_2 xsetpointer-1.0.1 oclock-1.0.1 xsetroot-1.0.2 open-motif-2.2.3_6 xsm-1.0.1 p5-Archive-Tar-1.46 xstdcmap-1.0.1 p5-Compress-Raw-Bzip2-2.015 xterm-242 p5-Compress-Raw-Zlib-2.015 xtrans-1.0.4 p5-Compress-Zlib-2.015 xtrap-1.0.2 p5-DBD-Pg-2.11.8 xvidtune-1.0.1 p5-DBI-1.60.7 xvinfo-1.0.2 p5-Digest-HMAC-1.01 xwd-1.0.1 p5-Digest-SHA1-2.11 xwininfo-1.0.3 p5-Encode-Detect-1.01 xwud-1.0.1 alphonse# alphonse# ls -d /usr/ports/x11*/*xcb* /usr/ports/x11/libxcb /usr/ports/x11/xcb-proto /usr/ports/x11/ooxcb /usr/ports/x11/xcb-util /usr/ports/x11/xcb alphonse# exit exit kohi@alphonse[2]% exit Script done on Mon Aug 10 13:01:29 2009 ----- 8< -------------------------------------------------- -------------- next part -------------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by Mesa configure 7.4.2, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --disable-glut --disable-glw --with-demos=no --with-dri-drivers=no --enable-xcb --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=i386-portbld-freebsd7.2 ## --------- ## ## Platform. ## ## --------- ## hostname = alphonse.himoo.iri.co.jp uname -m = i386 uname -r = 7.2-RELEASE-p2 uname -s = FreeBSD uname -v = FreeBSD 7.2-RELEASE-p2 #1: Thu Jun 25 10:51:44 JST 2009 kohi@alphonse.himoo.iri.co.jp:/usr/src/sys/i386/compile/alphonse /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2043: checking build system type configure:2061: result: i386-portbld-freebsd7.2 configure:2083: checking host system type configure:2098: result: i386-portbld-freebsd7.2 configure:2172: checking for gcc configure:2199: result: cc configure:2431: checking for C compiler version configure:2439: cc --version >&5 cc (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:2443: $? = 0 configure:2450: cc -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070719 [FreeBSD] configure:2454: $? = 0 configure:2461: cc -V >&5 cc: '-V' option must have argument configure:2465: $? = 1 configure:2488: checking for C compiler default output file name configure:2510: cc -O2 -fno-strict-aliasing -pipe -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:2514: $? = 0 configure:2552: result: a.out configure:2571: checking whether the C compiler works configure:2581: ./a.out configure:2585: $? = 0 configure:2604: result: yes configure:2611: checking whether we are cross compiling configure:2613: result: no configure:2616: checking for suffix of executables configure:2623: cc -o conftest -O2 -fno-strict-aliasing -pipe -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:2627: $? = 0 configure:2653: result: configure:2659: checking for suffix of object files configure:2685: cc -c -O2 -fno-strict-aliasing -pipe -I/usr/local/include conftest.c >&5 configure:2689: $? = 0 configure:2714: result: o configure:2718: checking whether we are using the GNU C compiler configure:2747: cc -c -O2 -fno-strict-aliasing -pipe -I/usr/local/include conftest.c >&5 configure:2754: $? = 0 configure:2771: result: yes configure:2780: checking whether cc accepts -g configure:2810: cc -c -g -I/usr/local/include conftest.c >&5 configure:2817: $? = 0 configure:2918: result: yes configure:2935: checking for cc option to accept ISO C89 configure:3009: cc -c -O2 -fno-strict-aliasing -pipe -I/usr/local/include conftest.c >&5 configure:3016: $? = 0 configure:3039: result: none needed configure:3062: checking how to run the C preprocessor configure:3102: cc -E -I/usr/local/include conftest.c configure:3109: $? = 0 configure:3140: cc -E -I/usr/local/include conftest.c conftest.c:8:28: error: ac_nonexistent.h: No such file or directory configure:3147: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Mesa" | #define PACKAGE_TARNAME "mesa" | #define PACKAGE_VERSION "7.4.2" | #define PACKAGE_STRING "Mesa 7.4.2" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa" | /* end confdefs.h. */ | #include configure:3180: result: cc -E configure:3209: cc -E -I/usr/local/include conftest.c configure:3216: $? = 0 configure:3247: cc -E -I/usr/local/include conftest.c conftest.c:8:28: error: ac_nonexistent.h: No such file or directory configure:3254: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "Mesa" | #define PACKAGE_TARNAME "mesa" | #define PACKAGE_VERSION "7.4.2" | #define PACKAGE_STRING "Mesa 7.4.2" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa" | /* end confdefs.h. */ | #include configure:3341: checking for gcc configure:3368: result: cc configure:3600: checking for C compiler version configure:3608: cc --version >&5 cc (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3612: $? = 0 configure:3619: cc -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070719 [FreeBSD] configure:3623: $? = 0 configure:3630: cc -V >&5 cc: '-V' option must have argument configure:3634: $? = 1 configure:3637: checking whether we are using the GNU C compiler configure:3690: result: yes configure:3699: checking whether cc accepts -g configure:3837: result: yes configure:3854: checking for cc option to accept ISO C89 configure:3958: result: none needed configure:4088: checking for C++ compiler version configure:4096: c++ --version >&5 c++ (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4100: $? = 0 configure:4107: c++ -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070719 [FreeBSD] configure:4111: $? = 0 configure:4118: c++ -V >&5 c++: '-V' option must have argument configure:4122: $? = 1 configure:4125: checking whether we are using the GNU C++ compiler configure:4154: c++ -c -O2 -fno-strict-aliasing -pipe -I/usr/local/include conftest.cpp >&5 configure:4161: $? = 0 configure:4178: result: yes configure:4187: checking whether c++ accepts -g configure:4217: c++ -c -g -I/usr/local/include conftest.cpp >&5 configure:4224: $? = 0 configure:4325: result: yes configure:4352: checking for gmake configure:4379: result: gmake configure:4392: checking for makedepend configure:4410: found /usr/local/bin/makedepend configure:4422: result: /usr/local/bin/makedepend configure:4432: checking for sed configure:4450: found /usr/bin/sed configure:4462: result: /usr/bin/sed configure:4586: checking for pkg-config configure:4604: found /usr/local/bin/pkg-config configure:4616: result: /usr/local/bin/pkg-config configure:4641: checking pkg-config is at least version 0.9.0 configure:4644: result: yes configure:4830: checking whether to enable assembly configure:4875: result: yes, x86 configure:4916: checking for cc option to produce PIC configure:5002: result: -fPIC configure:5009: checking for dlopen configure:5065: cc -o conftest -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:5072: $? = 0 configure:5092: result: yes configure:5169: checking for posix_memalign configure:5225: cc -o conftest -O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -I/usr/local/include -L/usr/local/lib conftest.c >&5 configure:5232: $? = 0 configure:5252: result: yes configure:5971: checking pkg-config files for X11 are available configure:5974: $PKG_CONFIG --exists --print-errors "x11" configure:5977: $? = 0 configure:5988: result: yes configure:7543: checking for LIBDRM configure:7550: $PKG_CONFIG --exists --print-errors "libdrm >= $LIBDRM_REQUIRED" configure:7553: $? = 0 configure:7566: $PKG_CONFIG --exists --print-errors "libdrm >= $LIBDRM_REQUIRED" configure:7569: $? = 0 configure:7646: result: yes configure:7652: checking for DRI2PROTO configure:7659: $PKG_CONFIG --exists --print-errors "dri2proto >= $DRI2PROTO_REQUIRED" configure:7662: $? = 0 configure:7675: $PKG_CONFIG --exists --print-errors "dri2proto >= $DRI2PROTO_REQUIRED" configure:7678: $? = 0 configure:7755: result: yes configure:7772: checking for DRIGL configure:7779: $PKG_CONFIG --exists --print-errors "$dri_modules" gnome-config: not found Package x11-xcb was not found in the pkg-config search path. Perhaps you should add the directory containing `x11-xcb.pc' to the PKG_CONFIG_PATH environment variable No package 'x11-xcb' found configure:7782: $? = 1 configure:7795: $PKG_CONFIG --exists --print-errors "$dri_modules" gnome-config: not found Package x11-xcb was not found in the pkg-config search path. Perhaps you should add the directory containing `x11-xcb.pc' to the PKG_CONFIG_PATH environment variable No package 'x11-xcb' found configure:7798: $? = 1 gnome-config: not found No package 'x11-xcb' found configure:7825: error: Package requirements (x11 xext xxf86vm xdamage xfixes x11-xcb xcb-glx) were not met: gnome-config: not found No package 'x11-xcb' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables DRIGL_CFLAGS and DRIGL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i386-portbld-freebsd7.2 ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_ARCH_FLAGS_set='' ac_cv_env_ARCH_FLAGS_value='' ac_cv_env_CCC_set='' ac_cv_env_CCC_value='' ac_cv_env_CC_set=set ac_cv_env_CC_value=cc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -fno-strict-aliasing -pipe' ac_cv_env_CPPFLAGS_set=set ac_cv_env_CPPFLAGS_value=-I/usr/local/include ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_CXXFLAGS_set=set ac_cv_env_CXXFLAGS_value='-O2 -fno-strict-aliasing -pipe' ac_cv_env_CXX_set=set ac_cv_env_CXX_value=c++ ac_cv_env_DRI2PROTO_CFLAGS_set='' ac_cv_env_DRI2PROTO_CFLAGS_value='' ac_cv_env_DRI2PROTO_LIBS_set='' ac_cv_env_DRI2PROTO_LIBS_value='' ac_cv_env_DRIGL_CFLAGS_set='' ac_cv_env_DRIGL_CFLAGS_value='' ac_cv_env_DRIGL_LIBS_set='' ac_cv_env_DRIGL_LIBS_value='' ac_cv_env_EXTRA_LIB_PATH_set='' ac_cv_env_EXTRA_LIB_PATH_value='' ac_cv_env_GLUT_CFLAGS_set='' ac_cv_env_GLUT_CFLAGS_value='' ac_cv_env_GLUT_LIBS_set='' ac_cv_env_GLUT_LIBS_value='' ac_cv_env_GLW_CFLAGS_set='' ac_cv_env_GLW_CFLAGS_value='' ac_cv_env_GLW_LIBS_set='' ac_cv_env_GLW_LIBS_value='' ac_cv_env_LDFLAGS_set=set ac_cv_env_LDFLAGS_value=-L/usr/local/lib ac_cv_env_LIBDRM_CFLAGS_set='' ac_cv_env_LIBDRM_CFLAGS_value='' ac_cv_env_LIBDRM_LIBS_set='' ac_cv_env_LIBDRM_LIBS_value='' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_MKLIB_OPTIONS_set='' ac_cv_env_MKLIB_OPTIONS_value='' ac_cv_env_OPT_FLAGS_set='' ac_cv_env_OPT_FLAGS_value='' ac_cv_env_PIC_FLAGS_set='' ac_cv_env_PIC_FLAGS_value='' ac_cv_env_PKG_CONFIG_set='' ac_cv_env_PKG_CONFIG_value='' ac_cv_env_X11_INCLUDES_set='' ac_cv_env_X11_INCLUDES_value='' ac_cv_env_XCB_CFLAGS_set='' ac_cv_env_XCB_CFLAGS_value='' ac_cv_env_XCB_LIBS_set='' ac_cv_env_XCB_LIBS_value='' ac_cv_env_XLIBGL_CFLAGS_set='' ac_cv_env_XLIBGL_CFLAGS_value='' ac_cv_env_XLIBGL_LIBS_set='' ac_cv_env_XLIBGL_LIBS_value='' ac_cv_env_XMKMF_set='' ac_cv_env_XMKMF_value='' ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i386-portbld-freebsd7.2 ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_func_dlopen=yes ac_cv_func_posix_memalign=yes ac_cv_host=i386-portbld-freebsd7.2 ac_cv_objext=o ac_cv_path_MKDEP=/usr/local/bin/makedepend ac_cv_path_SED=/usr/bin/sed ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config ac_cv_prog_CPP='cc -E' ac_cv_prog_MAKE=gmake ac_cv_prog_ac_ct_CC=cc ac_cv_prog_cc_c89='' ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes lt_cv_sys_max_cmd_len=262144 pkg_cv_DRI2PROTO_CFLAGS='-I/usr/local/include ' pkg_cv_DRI2PROTO_LIBS=' ' pkg_cv_LIBDRM_CFLAGS='-I/usr/local/include -I/usr/local/include/drm ' pkg_cv_LIBDRM_LIBS='-L/usr/local/lib -ldrm ' ## ----------------- ## ## Output variables. ## ## ----------------- ## APP_LIB_DEPS='' ARCH_FLAGS='' ASM_API='$(X86_API)' ASM_FLAGS='-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM' ASM_SOURCES='$(X86_SOURCES)' CC='cc' CFLAGS='-O2 -fno-strict-aliasing -pipe -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing' CPP='cc -E' CPPFLAGS='-I/usr/local/include' CXX='c++' CXXFLAGS='-O2 -fno-strict-aliasing -pipe -Wall -fno-strict-aliasing' DEFINES=' -DHAVE_POSIX_MEMALIGN -DUSE_XCB' DEFS='' DRI2PROTO_CFLAGS='-I/usr/local/include ' DRI2PROTO_LIBS=' ' DRIGL_CFLAGS='' DRIGL_LIBS='' DRIVER_DIRS='dri' DRI_DIRS='' DRI_DRIVER_INSTALL_DIR='' DRI_LIB_DEPS='' DRI_PC_REQ_PRIV='libdrm >= 2.4.3' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='' EXEEXT='' EXPAT_INCLUDES='' EXTRA_LIB_PATH='' GLUT_CFLAGS='' GLUT_LIBS='' GLUT_LIB_DEPS='' GLUT_LIB_NAME='lib$(GLUT_LIB).so' GLUT_MESA_DEPS='' GLUT_PC_CFLAGS='' GLUT_PC_LIB_PRIV='' GLUT_PC_REQ_PRIV='' GLU_DIRS='sgi' GLU_LIB_DEPS='' GLU_LIB_NAME='lib$(GLU_LIB).so' GLU_MESA_DEPS='' GLU_PC_CFLAGS='' GLU_PC_LIB_PRIV='' GLU_PC_REQ='' GLU_PC_REQ_PRIV='' GLW_CFLAGS='' GLW_LIBS='' GLW_LIB_DEPS='' GLW_LIB_NAME='lib$(GLW_LIB).so' GLW_MESA_DEPS='' GLW_PC_CFLAGS='' GLW_PC_LIB_PRIV='' GLW_PC_REQ_PRIV='' GLW_SOURCES='' GL_LIB_DEPS='' GL_LIB_NAME='lib$(GL_LIB).so' GL_PC_CFLAGS='' GL_PC_LIB_PRIV='' GL_PC_REQ_PRIV='libdrm >= 2.4.3 dri2proto >= 1.99.3' GREP='' LDFLAGS='-L/usr/local/lib' LIBDRM_CFLAGS='-I/usr/local/include -I/usr/local/include/drm ' LIBDRM_LIBS='-L/usr/local/lib -ldrm ' LIBOBJS='' LIBS='' LIB_DIR='lib' LTLIBOBJS='' MAKE='gmake' MKDEP='/usr/local/bin/makedepend' MKDEP_OPTIONS='-fdepend' MKLIB_OPTIONS='' MOTIF_CFLAGS='' MOTIF_CONFIG='' OBJEXT='o' OPT_FLAGS='' OSMESA_LIB='' OSMESA_LIB_DEPS='' OSMESA_LIB_NAME='lib$(OSMESA_LIB).so' OSMESA_MESA_DEPS='' OSMESA_PC_LIB_PRIV='' OSMESA_PC_REQ='' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa' PACKAGE_NAME='Mesa' PACKAGE_STRING='Mesa 7.4.2' PACKAGE_TARNAME='mesa' PACKAGE_VERSION='7.4.2' PATH_SEPARATOR=':' PIC_FLAGS='-fPIC' PKG_CONFIG='/usr/local/bin/pkg-config' POSIX_SHELL='' PROGRAM_DIRS='' SED='/usr/bin/sed' SHELL='/bin/sh' SRC_DIRS='glx/x11 mesa' USING_EGL='' WINDOW_SYSTEM='dri' X11_INCLUDES='' XCB_CFLAGS='' XCB_LIBS='' XLIBGL_CFLAGS='' XLIBGL_LIBS='' XMKMF='' X_CFLAGS='' X_EXTRA_LIBS='' X_LIBS='' X_PRE_LIBS='' ac_ct_CC='cc' ac_ct_CXX='' bindir='${exec_prefix}/bin' build='i386-portbld-freebsd7.2' build_alias='i386-portbld-freebsd7.2' build_cpu='i386' build_os='freebsd7.2' build_vendor='portbld' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='NONE' host='i386-portbld-freebsd7.2' host_alias='' host_cpu='i386' host_os='freebsd7.2' host_vendor='portbld' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/local/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='/usr/local/man' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "Mesa" #define PACKAGE_TARNAME "mesa" #define PACKAGE_VERSION "7.4.2" #define PACKAGE_STRING "Mesa 7.4.2" #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa" configure: exit 1 From swell.k at gmail.com Mon Aug 10 05:57:31 2009 From: swell.k at gmail.com (Anonymous) Date: Mon Aug 10 05:57:49 2009 Subject: [ports] makeing libGLU failure In-Reply-To: <200908100412.n7A4CIOc087314@alphonse.himoo.iri.co.jp> (Koh-ichi Ito's message of "Mon, 10 Aug 2009 13:12:18 +0900") References: <200908100412.n7A4CIOc087314@alphonse.himoo.iri.co.jp> Message-ID: <86iqgwdxdm.fsf@gmail.com> Koh-ichi Ito writes: > Hello team, > > Let me inform you the failure of making libGLU ports. > > While installing gimp port, I got the following message. > > Speaking shortly, I can't find x11-xcb directory under my > /usr/ports tree which is obtained with csup. I show the > result of ls /usr/ports/x11*/*xcb* at the tail of this mail. > > I also attach Mesa-7.4.4/config.log which is required. > > I hope this problem to be solved. If the information in this > mail is not enough, please let me known about it. > [...] > checking for DRIGL... configure: error: Package requirements (x11 xext xxf86vm xdamage xfixes x11-xcb xcb-glx) were not met: > > gnome-config: not found > No package 'x11-xcb' found > x11-xcb here usually refers to /usr/local/libdata/pkgconfig/x11-xcb.pc which should be installed by x11/libX11 port. Try reinstall that port. From bugmaster at FreeBSD.org Mon Aug 10 11:07:08 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 10 11:09:56 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200908101107.n7AB77u7025361@freefall.freebsd.org> 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 ports/137391 x11 [PATCH] x11/xdm: remove xdm-config from plist o ports/137373 x11 x11/libX11: make dependance on x11/libxcb o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134194 x11 graphics/dri fail on 7.2-RELEASE amd64 o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133419 x11 Unable to build x11-drivers/xf86-video-nsc o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132041 x11 x11/xorg: Broken Intel video driver o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts f ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke 29 problems total. From dfilter at FreeBSD.ORG Wed Aug 12 13:40:07 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Wed Aug 12 13:40:13 2009 Subject: ports/137391: commit references a PR Message-ID: <200908121340.n7CDe6ai055275@freefall.freebsd.org> The following reply was made to PR ports/137391; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/137391: commit references a PR Date: Wed, 12 Aug 2009 13:33:43 +0000 (UTC) olgeni 2009-08-12 13:33:27 UTC FreeBSD ports repository Modified files: x11/xdm Makefile pkg-plist Log: Remove xdm-config, which is already handled by @exec and @unexec. PR: ports/137391 Revision Changes Path 1.9 +1 -1 ports/x11/xdm/Makefile 1.4 +0 -1 ports/x11/xdm/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From olgeni at FreeBSD.org Thu Aug 13 10:03:37 2009 From: olgeni at FreeBSD.org (olgeni@FreeBSD.org) Date: Thu Aug 13 10:03:45 2009 Subject: ports/137391: [PATCH] x11/xdm: remove xdm-config from plist Message-ID: <200908131003.n7DA3beZ038863@freefall.freebsd.org> Synopsis: [PATCH] x11/xdm: remove xdm-config from plist State-Changed-From-To: open->closed State-Changed-By: olgeni State-Changed-When: Thu Aug 13 10:03:27 UTC 2009 State-Changed-Why: Fixed. http://www.freebsd.org/cgi/query-pr.cgi?pr=137391 From edwin at FreeBSD.org Thu Aug 13 16:50:23 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Thu Aug 13 16:50:30 2009 Subject: ports/137731: [patch] x11-drivers/xf86-input-vmmouse Message-ID: <200908131650.n7DGoMtr057244@freefall.freebsd.org> Synopsis: [patch] x11-drivers/xf86-input-vmmouse Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Thu Aug 13 16:50:22 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=137731 From stb at lassitu.de Thu Aug 13 17:30:07 2009 From: stb at lassitu.de (Stefan Bethke) Date: Thu Aug 13 17:30:34 2009 Subject: ports/137731: [patch] x11-drivers/xf86-input-vmmouse Message-ID: <200908131730.n7DHU6Rx084663@freefall.freebsd.org> The following reply was made to PR ports/137731; it has been noted by GNATS. From: Stefan Bethke To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/137731: [patch] x11-drivers/xf86-input-vmmouse Date: Thu, 13 Aug 2009 18:54:07 +0200 See for some context. -- Stefan Bethke Fon +49 151 14070811 From me at jackal.in Thu Aug 13 19:00:37 2009 From: me at jackal.in (jackal) Date: Thu Aug 13 19:00:51 2009 Subject: libkio crash? Message-ID: <200908132219.19646.me@jackal.in> Hello, When I want to show file properties (in any kde3 app), or use sftp (in krusader) etc - application crashes with similar backtrace: [New Thread 2a201140 (LWP 100071)] [Switching to Thread 2a201140 (LWP 100071)] [KCrash handler] #6 0x29ea22a0 in acl_dup () from /lib/libc.so.7 #7 0x29e6f878 in acl_to_text_np () from /lib/libc.so.7 #8 0x29e6fd0b in acl_to_text () from /lib/libc.so.7 #9 0x28ccfb65 in KACL::asString () from /usr/local/lib/libkio.so.6 #10 0x28d4d7ca in KFilePermissionsPropsPlugin::KFilePermissionsPropsPlugin () from /usr/local/lib/libkio.so.6 #11 0x28d5011e in KPropertiesDialog::insertPages () from /usr/local/lib/libkio.so.6 #12 0x28d5027c in KPropertiesDialog::init () from /usr/local/lib/libkio.so.6 #13 0x28d5187a in KPropertiesDialog::KPropertiesDialog () from /usr/local/lib/libkio.so.6 #14 0x081793cb in ListPanelFunc::properties () #15 0x080f9f58 in KRslots::qt_invoke () #16 0x2971241a in QObject::activate_signal () from /usr/local/lib/libqt-mt.so.3 #17 0x29712ee9 in QObject::activate_signal () from /usr/local/lib/libqt-mt.so.3 #18 0x28f26053 in KAction::activated () from /usr/local/lib/libkdeui.so.6 #19 0x28f260a8 in KAction::slotActivated () from /usr/local/lib/libkdeui.so.6 #20 0x28f290db in KAction::qt_invoke () from /usr/local/lib/libkdeui.so.6 #21 0x2971241a in QObject::activate_signal () from /usr/local/lib/libqt-mt.so.3 #22 0x29712ee9 in QObject::activate_signal () from /usr/local/lib/libqt-mt.so.3 #23 0x292046ab in KAccelPrivate::menuItemActivated () from /usr/local/lib/libkdecore.so.6 #24 0x292052e1 in KAccelPrivate::emitActivatedSignal () from /usr/local/lib/libkdecore.so.6 #25 0x29205734 in KAccelPrivate::eventFilter () from /usr/local/lib/libkdecore.so.6 #26 0x29711c02 in QObject::activate_filters () from /usr/local/lib/libqt-mt.so.3 #27 0x29711c69 in QObject::event () from /usr/local/lib/libqt-mt.so.3 #28 0x29747912 in QWidget::event () from /usr/local/lib/libqt-mt.so.3 #29 0x297f6bfe in QMainWindow::event () from /usr/local/lib/libqt-mt.so.3 #30 0x296b82c4 in QApplication::internalNotify () from /usr/local/lib/libqt-mt.so.3 #31 0x296b9589 in QApplication::notify () from /usr/local/lib/libqt-mt.so.3 #32 0x2917f1c1 in KApplication::notify () from /usr/local/lib/libkdecore.so.6 #33 0x29204e60 in KAccelEventHandler::x11Event () from /usr/local/lib/libkdecore.so.6 #34 0x291850d5 in KApplication::x11EventFilter () from /usr/local/lib/libkdecore.so.6 #35 0x080fb4d6 in KrusaderApp::x11EventFilter () #36 0x29649f4c in qt_x11EventFilter () from /usr/local/lib/libqt-mt.so.3 #37 0x29659786 in QApplication::x11ProcessEvent () from /usr/local/lib/libqt-mt.so.3 #38 0x29669eeb in QEventLoop::processEvents () from /usr/local/lib/libqt-mt.so.3 #39 0x296cd9bf in QEventLoop::enterLoop () from /usr/local/lib/libqt-mt.so.3 #40 0x296cd88e in QEventLoop::exec () from /usr/local/lib/libqt-mt.so.3 #41 0x296b7dab in QApplication::exec () from /usr/local/lib/libqt-mt.so.3 #42 0x080e2f40 in main () Help me please. -- Kind regards, Eugeny. From linimon at FreeBSD.org Fri Aug 14 01:32:39 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Aug 14 01:32:50 2009 Subject: ports/137748: x11/xorg: "unprocessed" mouse click results in effective mouse being locked in an area Message-ID: <200908140132.n7E1WdIx058576@freefall.freebsd.org> Old Synopsis: "unprocessed" mouse click results in effective mouse being locked in an area New Synopsis: x11/xorg: "unprocessed" mouse click results in effective mouse being locked in an area Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Fri Aug 14 01:31:26 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=137748 From deeptech71 at gmail.com Fri Aug 14 02:10:04 2009 From: deeptech71 at gmail.com (deeptech71@gmail.com) Date: Fri Aug 14 02:19:05 2009 Subject: ports/137748: "unprocessed" mouse click results in effective mouse being locked in an area Message-ID: <200908140210.n7E2A4RX080117@freefall.freebsd.org> The following reply was made to PR ports/137748; it has been noted by GNATS. From: "deeptech71@gmail.com" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/137748: "unprocessed" mouse click results in effective mouse being locked in an area Date: Fri, 14 Aug 2009 01:46:36 +0000 Edwin Groothuis wrote: > Have you brought this up on the -ports and -x11 (and maybe -usb) mailinglists? No. I should've? Also, I did not find anyone describing these symptoms recently on -x11, -ports and -usb. From miwi at FreeBSD.org Fri Aug 14 13:55:37 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri Aug 14 13:55:43 2009 Subject: ports/134194: graphics/dri fail on 7.2-RELEASE amd64 Message-ID: <200908141355.n7EDtaJg058076@freefall.freebsd.org> Synopsis: graphics/dri fail on 7.2-RELEASE amd64 State-Changed-From-To: open->closed State-Changed-By: miwi State-Changed-When: Fri Aug 14 13:55:36 UTC 2009 State-Changed-Why: problem was solved by set the correct date. http://www.freebsd.org/cgi/query-pr.cgi?pr=134194 From mexas at bristol.ac.uk Fri Aug 14 14:28:16 2009 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri Aug 14 14:28:22 2009 Subject: xdm-config Message-ID: <20090814141128.GA14082@mech-cluster241.men.bris.ac.uk> an update of port x11/xdm overwrites user modified configuration, in particular, xdm-config file, typically /usr/local/lib/X11/xdm/xdm-config In particular, this line: ! SECURITY: do not listen for XDMCP or Chooser requests ! Comment out this line if you want to manage X terminals with xdm !DisplayManager.requestPort: 0 becomes uncommented, and all existing connections are cut. Is it possible to modify this default behaviour, e.g. by comparing new xdm-config with the existing one, and if they differ install the new one into xdm-config.new, or something? Or perhaps ask the user what is to be done about this? Or at least preserve the existing xdm-config in xdm-config.old before installing the new file? Or perhaps I'm missing something very simple? many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From bertheau at informatik.hu-berlin.de Fri Aug 14 19:43:40 2009 From: bertheau at informatik.hu-berlin.de (Martin Bertheau) Date: Fri Aug 14 19:43:46 2009 Subject: libX11 build fail Message-ID: <4A85BADE.2060109@informatik.hu-berlin.de> Hello Roman, I read your post to the freebsd-x11 mailing list: http://lists.freebsd.org/pipermail/freebsd-x11/2009-August/008737.html I have the same problem. You wrote something about a patch, but (at least in the archive) it isn't attached. Would be nice if you can send me the patch. Thanks! bye, Martin From shild at sbcglobal.net Sat Aug 15 01:09:38 2009 From: shild at sbcglobal.net (Scott T. Hildreth) Date: Sat Aug 15 01:09:44 2009 Subject: libX11 build fail In-Reply-To: <4A85BADE.2060109@informatik.hu-berlin.de> References: <4A85BADE.2060109@informatik.hu-berlin.de> Message-ID: <1250296975.5077.10.camel@fbsd1.dyndns.org> On Fri, 2009-08-14 at 21:28 +0200, Martin Bertheau wrote: > Hello Roman, > > I read your post to the freebsd-x11 mailing list: > http://lists.freebsd.org/pipermail/freebsd-x11/2009-August/008737.html > > I have the same problem. You wrote something about a patch, but (at > least in the archive) it isn't attached. Would be nice if you can send > me the patch. Thanks! I had the same problem. I updated libtool to libtool-2.2.6a, but there was a libtool15 and libtdl15 file in /usr/local/share/aclocal dir. I renamed them, re-ran make and the configure worked and all the warnings were gone. > bye, > Martin > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" From info at pleasureholidayz.com Sat Aug 15 09:48:11 2009 From: info at pleasureholidayz.com (pleasureholidayz) Date: Sat Aug 15 09:48:22 2009 Subject: Happy Independence Day Message-ID: <43ad3e58bfbbec9ab5f3a9b3e40714be@pleasureholidayz.com> Dear Friends HAPPY INDEPENDENCE DAY!!! Slums to Skyscrapers... Crowded yet spacious... Where peace entails... Never losing hope...Unity in diversity... Striving for peace...Realzing the dream... Thats Our India... Where enchanment persist against all odds........ Jai Hind ************************** Please contact us at Pleasure Holidayz, 1st Floor, Pallath Business Center, Kurishupally Road, Ravipuram, Cochin, Kerala ? 682 015, India. Mob: +91 9961040050, +91 9539040906 Phone: +91 484 3077234, Fax: +91 484 3061977 Website : www.pleasureholidayz.com email:pleasureholidayz@gmail.com, info@pleasureholidayz.com Chat Id: pleasureholidayz (Msn/Yahoo/gmail/skype) -- If you do not want to receive any more newsletters, http://www.pleasureholidayz.com/phplist/?p=unsubscribe&uid=87353193c8b9796252a4b8cd63865cd3 To update your preferences and to unsubscribe visit http://www.pleasureholidayz.com/phplist/?p=preferences&uid=87353193c8b9796252a4b8cd63865cd3 Forward a Message to Someone http://www.pleasureholidayz.com/phplist/?p=forward&uid=87353193c8b9796252a4b8cd63865cd3&mid=48 -- Powered by PHPlist, www.phplist.com -- From bsam at ipt.ru Sat Aug 15 21:19:22 2009 From: bsam at ipt.ru (Boris Samorodov) Date: Sat Aug 15 21:19:29 2009 Subject: xdm-config In-Reply-To: <20090814141128.GA14082@mech-cluster241.men.bris.ac.uk> (Anton Shterenlikht's message of "Fri\, 14 Aug 2009 15\:11\:28 +0100") References: <20090814141128.GA14082@mech-cluster241.men.bris.ac.uk> Message-ID: <91286129@ipt.ru> Hi, Anton Shterenlikht writes: > an update of port x11/xdm overwrites user modified configuration, > in particular, xdm-config file, typically /usr/local/lib/X11/xdm/xdm-config The port was fixed 3 days ago: http://lists.freebsd.org/pipermail/cvs-ports/2009-August/177910.html -- WBR, bsam From niktychina at gmail.com Sun Aug 16 05:41:12 2009 From: niktychina at gmail.com (Nikolay Tychina) Date: Sun Aug 16 05:41:24 2009 Subject: startx won't start twm with empty xinitrc Message-ID: Hi! I rebuilt whole x11/xorg (due to problem with google earth - it's been missing earth picture) but i didn't solve that problem. Even more, now I'm trying to startx with empty ~/.xinitrc (twm should be run as default WM), but twm won't start. X server just shut down without errors. With "exec twm" defined in ~/.xinitrc something happens, X seems to be running, but screen is just black. Nothing happens. How can I solve this? Nik From villa.alberto at gmail.com Sun Aug 16 10:18:15 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Sun Aug 16 10:18:27 2009 Subject: startx won't start twm with empty xinitrc In-Reply-To: References: Message-ID: <200908161157.39057.villa.alberto@gmail.com> On Sunday 16 August 2009 07:09:20 Nikolay Tychina wrote: > I rebuilt whole x11/xorg (due to problem with google earth - it's been > missing earth picture) > but i didn't solve that problem. hi iirc, google earth depends on qt4. there were similar problems (images not showing) during the upgrade to kde 4.3 for some of us, the solution was to rebuild qt4-imageformats. i don't know if this is your case (i don't even know if you have that package installed), but that's my advice -- Alberto Villa The distinction between true and false appears to become increasingly blurred by... the pollution of the language. -- Arne Tiselius From niktychina at gmail.com Sun Aug 16 11:42:49 2009 From: niktychina at gmail.com (Nikolay Tychina) Date: Sun Aug 16 11:42:55 2009 Subject: startx won't start twm with empty xinitrc In-Reply-To: <200908161157.39057.villa.alberto@gmail.com> References: <200908161157.39057.villa.alberto@gmail.com> Message-ID: Thanks for your reply. Actually, twm starts with "exec twm" in xinitrc (click on black screen opens context menu) I don't know does twm works properly, though. It used to look a bit different :) google-earth port in FreeBSD doesn't require qt4. i just removed linux_base-fc-4 and ports depend on it, and installed linux_base-f8. Everything is ok now :) cheers 2009/8/16 Alberto Villa > On Sunday 16 August 2009 07:09:20 Nikolay Tychina wrote: > > I rebuilt whole x11/xorg (due to problem with google earth - it's been > > missing earth picture) > > but i didn't solve that problem. > > hi > iirc, google earth depends on qt4. there were similar problems (images not > showing) during the upgrade to kde 4.3 for some of us, the solution was to > rebuild qt4-imageformats. i don't know if this is your case (i don't even > know > if you have that package installed), but that's my advice > -- > Alberto Villa > > The distinction between true and false appears to become > increasingly blurred by... the pollution of the language. > -- Arne Tiselius > From bsam at ipt.ru Sun Aug 16 20:49:21 2009 From: bsam at ipt.ru (Boris Samorodov) Date: Sun Aug 16 20:49:27 2009 Subject: startx won't start twm with empty xinitrc In-Reply-To: (Nikolay Tychina's message of "Sun\, 16 Aug 2009 15\:42\:47 +0400") References: <200908161157.39057.villa.alberto@gmail.com> Message-ID: <10953749@ipt.ru> Nikolay Tychina writes: > google-earth port in FreeBSD doesn't require qt4. > i just removed linux_base-fc-4 and ports depend on it, and installed > linux_base-f8. > Everything is ok now :) It's good that everithing is ok, but please keep in mind that linux_base-f8 is not a default for any FreeBSD version and it needs a special treat at /etc/make.conf for other linux ports. Please read carefully /usr/ports/UPDATING. In case you have any questions you are welcome to emulation@ ML. -- WBR, bsam From eitanadlerlist at gmail.com Sun Aug 16 20:52:42 2009 From: eitanadlerlist at gmail.com (Eitan Adler) Date: Sun Aug 16 20:52:48 2009 Subject: X starts; messed up screen In-Reply-To: References: Message-ID: My original message was help for moderation: http://isis.poly.edu/~eitan/files/2009-08-17_1280x800.png is the image referenced below: X is usable, in that I can open programs and use them - but it looks very odd. Look at the screenshot for what my X screen looks like. Attached is Xorg.0.log For HW details I have a Lenovo G530. How do I make X look normal? -------------- next part -------------- A non-text attachment was scrubbed... Name: Xorg.0.log Type: application/octet-stream Size: 26803 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090816/3877f876/Xorg.0.obj From baerks at t-online.de Mon Aug 17 06:38:09 2009 From: baerks at t-online.de (Sabine Baer) Date: Mon Aug 17 06:38:17 2009 Subject: libX11 failure Message-ID: <20090817062036.GA81858@amd.catfish.ddns.org> Hallo, I get this message since days trying to install xorg-server: # portupgrade -N x11-servers/xorg-server gives me this error: [...] checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking if xorg-macros used to generate configure is at least 1.2... yes, 1.2.1 ./configure: 2767: Syntax error: word unexpected (expecting ")") ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/x11/libX11/work/libX11-1.2.1/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/x11/libX11. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20090817-67556-mayyw6-0 env make ** Fix the problem and try again. [...] I would like to that, but I do not know howto. I had a running xorg-7.4, I can't remember why I deinstalled ist, but this failure is now repeted since days (I cvsupped and made rm /usr/ports/distfiles/*/libX11* but it's always the same. I am not an expert at all, just a user, so I am a little desperate... Sabine ___________________________________ Please find attached /usr/ports/x11/libX11/work/libX11-1.2.1/config.log: This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by libX11 configure 1.2.1, which was generated by GNU Autoconf 2.62. Invocation command line was $ ./configure ## --------- ## ## Platform. ## ## --------- ## hostname = amd.catfish.ddns.org uname -m = amd64 uname -r = 7.2-STABLE uname -s = FreeBSD uname -v = FreeBSD 7.2-STABLE #10: Fri Jul 31 11:16:23 CEST 2009 root@amd.catfish.ddns.org:/usr/obj/usr/src/sys/MYKERNEL_7 /usr/bin/uname -p = amd64 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2241: checking for a BSD-compatible install configure:2309: result: /usr/bin/install -c configure:2320: checking whether build environment is sane configure:2363: result: yes configure:2388: checking for a thread-safe mkdir -p configure:2427: result: ./install-sh -c -d configure:2440: checking for gawk configure:2456: found /usr/local/bin/gawk configure:2467: result: gawk configure:2478: checking whether make sets $(MAKE) configure:2500: result: yes configure:2689: checking whether to enable maintainer-specific portions of Makefiles configure:2698: result: no configure:2723: checking if xorg-macros used to generate configure is at least 1.2 configure:2738: result: yes, 1.2.1 ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_env_BIGFONT_CFLAGS_set='' ac_cv_env_BIGFONT_CFLAGS_value='' ac_cv_env_BIGFONT_LIBS_set='' ac_cv_env_BIGFONT_LIBS_value='' ac_cv_env_CCC_set='' ac_cv_env_CCC_value='' ac_cv_env_CC_set='' ac_cv_env_CC_value='' ac_cv_env_CFLAGS_set='' ac_cv_env_CFLAGS_value='' ac_cv_env_CPPFLAGS_set='' ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_CXXCPP_set='' ac_cv_env_CXXCPP_value='' ac_cv_env_CXXFLAGS_set='' ac_cv_env_CXXFLAGS_value='' ac_cv_env_CXX_set='' ac_cv_env_CXX_value='' ac_cv_env_F77_set='' ac_cv_env_F77_value='' ac_cv_env_FFLAGS_set='' ac_cv_env_FFLAGS_value='' ac_cv_env_LDFLAGS_set='' ac_cv_env_LDFLAGS_value='' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_PKG_CONFIG_set='' ac_cv_env_PKG_CONFIG_value='' ac_cv_env_X11_CFLAGS_set='' ac_cv_env_X11_CFLAGS_value='' ac_cv_env_X11_LIBS_set='' ac_cv_env_X11_LIBS_value='' ac_cv_env_XDMCP_CFLAGS_set='' ac_cv_env_XDMCP_CFLAGS_value='' ac_cv_env_XDMCP_LIBS_set='' ac_cv_env_XDMCP_LIBS_value='' ac_cv_env_XKBPROTO_CFLAGS_set='' ac_cv_env_XKBPROTO_CFLAGS_value='' ac_cv_env_XKBPROTO_LIBS_set='' ac_cv_env_XKBPROTO_LIBS_value='' ac_cv_env_XPROTO_CFLAGS_set='' ac_cv_env_XPROTO_CFLAGS_value='' ac_cv_env_XPROTO_LIBS_set='' ac_cv_env_XPROTO_LIBS_value='' ac_cv_env_build_alias_set='' ac_cv_env_build_alias_value='' ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AWK=gawk ac_cv_prog_make_make_set=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run aclocal-1.10' ADMIN_MAN_DIR='' ADMIN_MAN_SUFFIX='' AMDEPBACKSLASH='' AMDEP_FALSE='' AMDEP_TRUE='' AMTAR='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run tar' APP_MAN_DIR='' APP_MAN_SUFFIX='' AR='' AUTOCONF='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run autoconf' AUTOHEADER='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run autoheader' AUTOMAKE='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run automake-1.10' AWK='gawk' BIGFONT_CFLAGS='' BIGFONT_LIBS='' CC='' CCDEPMODE='' CC_FOR_BUILD='' CFLAGS='' CHANGELOG_CMD='' CPP='' CPPFLAGS='' CWARNFLAGS='' CXX='' CXXCPP='' CXXDEPMODE='' CXXFLAGS='' CYGPATH_W='echo' DEFS='' DEPDIR='' DRIVER_MAN_DIR='' DRIVER_MAN_SUFFIX='' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='' EXEEXT='' F77='' FFLAGS='' FILE_MAN_DIR='' FILE_MAN_SUFFIX='' GREP='' I18N_MODULE_LIBS='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' KEYSYMDEF='' LAUNCHD='' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='' LIB_MAN_DIR='' LIB_MAN_SUFFIX='' LINT='' LINTLIB='' LINT_FALSE='' LINT_FLAGS='' LINT_TRUE='' LN_S='' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run makeinfo' MAKE_LINT_LIB_FALSE='' MAKE_LINT_LIB_TRUE='' MALLOC_ZERO_CFLAGS='' MANPAGES_FALSE='' MANPAGES_TRUE='' MISC_MAN_DIR='' MISC_MAN_SUFFIX='' MKDIR_P='./install-sh -c -d' OBJEXT='' OS2_FALSE='' OS2_TRUE='' PACKAGE='libX11' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' PACKAGE_NAME='libX11' PACKAGE_STRING='libX11 1.2.1' PACKAGE_TARNAME='libX11' PACKAGE_VERSION='1.2.1' PATH_SEPARATOR=':' PKG_CONFIG='' RANLIB='' RAWCPP='' RAWCPPFLAGS='' SET_MAKE='' SHELL='/bin/sh' STRIP='' THRSTUBS_FALSE='' THRSTUBS_TRUE='' UDC_FALSE='' UDC_TRUE='' VERSION='1.2.1' WCHAR32='' X11_CFLAGS='' X11_DATADIR='' X11_EXTRA_DEPS='' X11_LIBDIR='' X11_LIBS='' X11_LOCALEDATADIR='' X11_LOCALEDIR='' X11_LOCALELIBDIR='' XCB_FALSE='' XCB_TRUE='' XCMS_FALSE='' XCMS_TRUE='' XDMCP_CFLAGS='' XDMCP_LIBS='' XERRORDB='' XKBPROTO_CFLAGS='' XKBPROTO_LIBS='' XKBPROTO_REQUIRES='' XKB_FALSE='' XKB_TRUE='' XKEYSYMDB='' XLIB_LOADABLE_I18N_FALSE='' XLIB_LOADABLE_I18N_TRUE='' XLOCALEDATADIR='' XLOCALEDIR='' XLOCALELIBDIR='' XLOCALE_FALSE='' XLOCALE_TRUE='' XMALLOC_ZERO_CFLAGS='' XPROTO_CFLAGS='' XPROTO_LIBS='' XTHREADLIB='' XTHREAD_CFLAGS='' XTMALLOC_ZERO_CFLAGS='' ac_ct_CC='' ac_ct_CXX='' ac_ct_F77='' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='' am__fastdepCXX_TRUE='' am__include='' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='' build_alias='' build_cpu='' build_os='' build_vendor='' datadir='${datarootdir}' datarootdir='${prefix}/share' distcleancheck_listfiles='' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='NONE' host='' host_alias='' host_cpu='' host_os='' host_vendor='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='$(SHELL) /usr/ports/x11/libX11/work/libX11-1.2.1/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='$(top_builddir)/./install-sh -c -d' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='NONE' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "libX11" #define PACKAGE_TARNAME "libX11" #define PACKAGE_VERSION "1.2.1" #define PACKAGE_STRING "libX11 1.2.1" #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" #define PACKAGE "libX11" #define VERSION "1.2.1" configure: exit 2 and here ls /var/db/pkg: 44bsd-rdist-20001111 6tunnel-0.11.r2_1 OpenEXR-1.6.1_1 a2ps-a4-4.13b_4 acroreadwrapper-0.0.20090328 amspsfnt-1.0_5 antiword-0.37_1 apache+ssl-1.3.41.1.59_1 aspell-0.60.6_2 autoconf-2.13.000227_6 autoconf-2.62 autoconf-wrapper-20071109 automake-1.10.1 automake-1.4.6_5 automake-1.5_5,1 automake-1.6.3_1 automake-1.9.6_3 automake-wrapper-20071109 babl-0.0.22_1 bash-4.0.24 bdftopcf-1.0.1 bigreqsproto-1.0.2 bison-2.4.1,1 bitstream-vera-1.10_4 boost-jam-1.39.0 boost-libs-1.39.0 bsdstats-5.4_2 ca_root_nss-3.11.9_2 cal3d-0.11.0_1 cd-console-2.4 cdparanoia-3.9.8_8 cdplay-0.92_2 cdrtools-2.01_7 cmake-2.6.4 cmpsfont-1.0_6 compat4x-i386-5.3_9 compat5x-amd64-5.4.0.8_9 compositeproto-0.4 cups-client-1.3.10_3 cups-image-1.3.10_3 curl-7.19.6 cvsup-without-gui-16.1h_4 damageproto-1.1.0_2 db4-4.0.14_1,1 db41-4.1.25_4 dbh-4.5.0 djbfft-0.76_2 dmidecode-2.10 dmxproto-2.2.2 docbook-1.4 docbook-2.4.1_1,1 docbook-3.0_4 docbook-3.1_4 docbook-4.0_3 docbook-4.1_3 docbook-4.3 docbook-4.4_2 docbook-4.5_2 docbook-5.0_1 docbook-sk-4.1.2_4 docbook-xml-4.2_1 docbook-xml-4.3 docbook-xml-4.4_1 docbook-xml-4.5 docbook-xsl-1.75.1 dri2proto-2.0 dvd+rw-tools-7.1 ecore-con-0.9.9.042_3 ecore-file-0.9.9.042_1 ecore-ipc-0.9.9.042_2 ecore-job-0.9.9.042 ecore-main-0.9.9.042 ecore-txt-0.9.9.042 edb-1.0.5.042,2 electricfence-2.2.2_2 embryo-0.9.1.042,2 encodings-1.0.2,1 esound-0.2.41 etl-0.04.12 evieext-1.0.2 exiv2-0.18,1 expat-2.0.1 ezm3-1.1_2 fetchmail-6.3.11 ffcall-1.10_1 fftw3-3.2.2 filtermail-0.8.1 fixesproto-4.0 flac-1.2.1_1 flex-2.5.35_1 font-adobe-100dpi-1.0.0_1 font-adobe-75dpi-1.0.0 font-adobe-utopia-100dpi-1.0.1 font-adobe-utopia-75dpi-1.0.1 font-adobe-utopia-type1-1.0.1 font-alias-1.0.1 font-arabic-misc-1.0.0 font-bh-100dpi-1.0.0 font-bh-75dpi-1.0.0 font-bh-lucidatypewriter-100dpi-1.0.0 font-bh-lucidatypewriter-75dpi-1.0.0 font-bh-ttf-1.0.0 font-bh-type1-1.0.0 font-bitstream-100dpi-1.0.0 font-bitstream-75dpi-1.0.0 font-bitstream-type1-1.0.0 font-cronyx-cyrillic-1.0.0 font-cursor-misc-1.0.0 font-daewoo-misc-1.0.0 font-dec-misc-1.0.0 font-ibm-type1-1.0.0 font-isas-misc-1.0.0 font-jis-misc-1.0.0 font-micro-misc-1.0.0 font-misc-cyrillic-1.0.0 font-misc-ethiopic-1.0.0 font-misc-meltho-1.0.0_1 font-misc-misc-1.0.0 font-mutt-misc-1.0.0 font-schumacher-misc-1.0.0_1 font-screen-cyrillic-1.0.1 font-sony-misc-1.0.0 font-sun-misc-1.0.0 font-util-1.0.1 font-winitzki-cyrillic-1.0.0 font-xfree86-type1-1.0.1 fontcacheproto-0.1.2 fontconfig-2.6.0,1 fontsproto-2.0.2 freebsd-uucp-1.07.3_1 freetype-1.3.1_4 freetype2-2.3.9_1 fribidi-0.10.9 fusefs-kmod-0.3.9.p1.20080208_6 fusefs-libs-2.7.4 gamin-0.1.10_3 gawk-3.1.6_1 gcc-3.4.6_3,1 gcc-4.2.5.20090325 gccmakedep-1.0.2 gd-2.0.35_1,1 gdbm-1.8.3_3 getopt-1.1.4_1 gettext-0.17_1 gio-fam-backend-2.20.4 glib-1.2.10_12 glib-2.20.4 glproto-1.4.10 gmake-3.81_3 gnome-mime-data-2.18.0_3 gnome_subr-1.0 gnomehier-2.3_12 gnutls-2.6.5 gperf-3.0.3 gsfonts-8.11_5 gtar-1.22 guile-1.8.6_2 help2man-1.36.4_3 hicolor-icon-theme-0.10_2 i iceauth-1.0.2 icu-3.8.1_2 ilmbase-1.0.1_1 inadyn-1.96.2_2 inputproto-1.5.0 intltool-0.40.6 isc-dhcp30-server-3.0.7_5 iso-codes-3.10.2 iso8879-1986_2 iw-culmus-0.101_2 jad-1.5.8c javavmwrapper-2.3.3 jbigkit-1.6 jpeg-7 k8temp-0.4.0 kbproto-1.0.3 lame-3.98.2_1 lcms-1.18a_1,1 libFS-1.0.1 libICE-1.0.4_1,1 libSM-1.1.0_1,1 libXau-1.0.4 libXdmcp-1.0.2_1 libXfont-1.3.4,1 liba52-0.7.4_2 libao-0.8.8_1 libarc-2.0.2_1 libart_lgpl-2.3.20,1 libassuan-1.0.5 libaudiofile-0.2.6 libcdaudio-0.99.12p2_2 libcddb-1.3.0 libcdio-0.78.2_2 libcheck-0.9.6 libchk-1.10.1 libdaemon-0.12 libdca-0.0.5 libdnet-1.11_3 libdrm-2.4.12 libdvdcss-1.2.10_1 libdvdnav-0.1.10_4 libdvdread-4.1.3_1 libexecinfo-1.1_3 libexif-0.6.17 libfontenc-1.0.4 libfpx-1.2.0.12_1 libgcrypt-1.4.4 libgmp-4.3.1 libgpg-error-1.7 libgphoto2-2.4.6_1 libiconv-1.13.1 libid3tag-0.15.1b libidn-1.14 libijs-0.35_1 libksba-1.0.7 libltdl-2.2.6a libmad-0.15.1b_2 libmikmod-esound-3.1.11_2 libmng-1.0.10_1 libmpeg2-0.5.1 libmspack-0.0.20060920 libnet113-devel-1.1.3.r1_2 libogg-1.1.4,4 liboil-0.3.16 libpciaccess-0.10.6 libpthread-stubs-0.1 libsigc++-2.2.3 libslang2-2.1.4_1 libspiro-20071029 libtasn1-2.1 libthai-0.1.5_3 libtheora-1.0_1 libtool-2.2.6a libunicode-0.4_9 libusb-0.1.12_4 libutempter-1.1.5_1 libvolume_id-0.81.1 libvorbis-1.2.3,3 libwww-5.4.0_4 libxcb-1.4 libxml2-2.7.3 libxslt-1.1.24_2 libzvbi-0.2.33 linux-aspell-0.50.4.1_4 linux-atk-1.9.1_3 linux-cairo-1.0.2_2 linux-expat-1.95.8_2 linux-flashplugin-9.0r246 linux-fontconfig-2.2.3_9 linux-gtk2-2.6.10_3 linux-jpeg-6b.34_2 linux-openssl-0.9.7f_2 linux-opera-9.64 linux-pango-1.10.2_3 linux-png-1.2.8_4 linux-tiff-3.7.1_2 linux-xorg-libs-6.8.2_7 linux_base-fc6-6_5 linuxdoc-1.1_1 localedata-5.4 lrzsz-0.12.20_1 lsof-4.83A,4 lua-5.1.4 lynx-2.8.6.5_5,1 lzmautils-4.32.7 lzo2-2.03_2 lzop-1.02.r1 m4-1.4.13,1 mDNSResponder-108 makedepend-1.0.1,1 mime-support-3.46.1 minicom-2.3_1 mkfontdir-1.0.4 mkfontscale-1.0.6 mpeg4ip-libmp4v2-1.6.1 mpfr-2.4.1_1 mplayer-skins-1.1.2_6 mutt-1.4.2.3_3 nasm-2.05.01,1 ncftp-3.2.2_1 netpbm-10.26.63_1 nmap-5.00 nspr-4.8 nss-3.11.9_2 obexapp-1.4.11 openldap-client-2.3.43 openobex-1.4 openssl-0.9.8k_3 openvpn-2.0.6_9 p5-Authen-SASL-2.12 p5-Class-Accessor-0.33 p5-Compress-Raw-Zlib-2.020 p5-Compress-Zlib-2.015 p5-Digest-1.16 p5-Digest-HMAC-1.01 p5-Digest-MD5-2.39 p5-Digest-SHA1-2.12 p5-File-Temp-0.22 p5-GSSAPI-0.26 p5-HTML-Parser-3.62 p5-HTML-Tagset-3.20 p5-HTML-Tree-3.23 p5-IO-Compress-Base-2.015 p5-IO-Compress-Zlib-2.015 p5-IO-Socket-SSL-1.27 p5-MIME-Base64-3.08 p5-Net-1.22_1,1 p5-Net-SSLeay-1.35_2 p5-SGML-Parser-OpenSP-0.994 p5-SGMLSpm-1.03_1 p5-String-ShellQuote-1.03 p5-Text-Iconv-1.7 p5-Tie-IxHash-1.21 p5-Time-HiRes-1.9719,1 p5-URI-1.39 p5-XML-Parser-2.36_1 p5-gettext-1.05_2 p5-libwww-5.831 p5-type1inst-0.6.1_5 pccts-1.33.33 pciids-20090807 pcre-7.9 perl-5.8.9_3 pgpin-010323 php4-4.4.9 pixman-0.15.4 pkg-config-0.23_1 pkgdb.db play-1.0_1 png-1.2.38 popd-2.2.2a_5 poppler-data-0.2.1 popt-1.14 portaudio-18.1_2 portaudio-19.20071207 portmanager-0.4.1_9 portupgrade-devel-2.4.6 postgresql-client-8.2.13 postgresql-contrib-8.2.13_2 postgresql-docs-8.2.13 postgresql-server-8.2.13 printproto-1.0.4 procmail-3.22_6 pth-2.0.7 py26-xml-0.8.4_2 python26-2.6.2_2 qmake-3.3.8_1 qpopper-2.53_5 qsf-1.2.7 radeontool-1.5 randrproto-1.3.0 recordproto-1.13.2 renderproto-0.9.3 resourceproto-1.0.2 rpm-3.0.6_14 rpm2cpio-1.2_2 ruby+nopthreads-1.8.7.160_4,1 ruby18-bdb-0.6.5_1 ruby18-deplate-0.8.5 samba-libsmbclient-3.0.35 screen-4.0.3_6 scrnsaverproto-1.1.0 sgmlformat-1.7_2 slrn-0.9.9p1 sms_client-3.0.2_2 sqlite3-3.6.14.2 stunnel-4.27 sudo-1.6.9.20 tcl-8.4.19_3,1 tcl-8.5.7_1 tcl-modules-8.5.7 texi2html-1.82,1 tiff-3.8.2_4 unmakeself-1.1 unzip-5.52_5 uulib-0.5.20_1 v4l_compat-1.0.20060801 videoproto-2.2.2 vim-lite-7.2.239 wakeonlan-0.41 wget-1.11.4 wmicons-1.0_2 xbitmaps-1.0.1 xcb-proto-1.5 xcmiscproto-1.1.2 xcursor-themes-1.0.1_1 xextproto-7.0.5 xf86bigfontproto-1.1.2 xf86dgaproto-2.0.3 xf86driproto-2.0.4 xf86miscproto-0.9.2 xf86vidmodeproto-2.2.2 xineramaproto-1.1.2 xkeyboard-config-1.6_1 xmlcatmgr-2.2 xmlcharent-0.3_2 xorg-docs-1.4,1 xorg-fonts-100dpi-7.4 xorg-fonts-75dpi-7.4 xorg-fonts-cyrillic-7.4 xorg-fonts-type1-7.4 xorg-macros-1.2.1 xproto-7.0.15 xtrans-1.2.3 yasm-0.8.0 zip-3.0 From bugmaster at FreeBSD.org Mon Aug 17 11:07:07 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 17 11:10:12 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200908171107.n7HB76vr076001@freefall.freebsd.org> 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 ports/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse o ports/137373 x11 x11/libX11: make dependance on x11/libxcb o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133419 x11 Unable to build x11-drivers/xf86-video-nsc o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132041 x11 x11/xorg: Broken Intel video driver o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts f ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke 29 problems total. From mexas at bristol.ac.uk Mon Aug 17 14:10:13 2009 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Mon Aug 17 14:10:24 2009 Subject: xdm-config In-Reply-To: <91286129@ipt.ru> References: <20090814141128.GA14082@mech-cluster241.men.bris.ac.uk> <91286129@ipt.ru> Message-ID: <20090817141001.GA82372@mech-cluster241.men.bris.ac.uk> On Sun, Aug 16, 2009 at 12:54:38AM +0400, Boris Samorodov wrote: > Hi, > > Anton Shterenlikht writes: > > > an update of port x11/xdm overwrites user modified configuration, > > in particular, xdm-config file, typically /usr/local/lib/X11/xdm/xdm-config > > The port was fixed 3 days ago: > http://lists.freebsd.org/pipermail/cvs-ports/2009-August/177910.html yes, seems fine now. thank you -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From rnoland at FreeBSD.org Mon Aug 17 14:46:09 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Aug 17 14:46:15 2009 Subject: X starts; messed up screen In-Reply-To: References: Message-ID: <1250520360.1783.7.camel@balrog.2hip.net> On Sun, 2009-08-16 at 16:52 -0400, Eitan Adler wrote: > My original message was help for moderation: > http://isis.poly.edu/~eitan/files/2009-08-17_1280x800.png > is the image referenced below: > > X is usable, in that I can open programs and use them - but it looks very odd. > Look at the screenshot for what my X screen looks like. > Attached is Xorg.0.log > For HW details I have a Lenovo G530. > > How do I make X look normal? The GPU is reporting page table errors. Does this happen on a clean boot, or only after restarting X? robert. > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD From eitanadlerlist at gmail.com Mon Aug 17 14:53:27 2009 From: eitanadlerlist at gmail.com (Eitan Adler) Date: Mon Aug 17 14:53:37 2009 Subject: X starts; messed up screen In-Reply-To: <1250520360.1783.7.camel@balrog.2hip.net> References: <1250520360.1783.7.camel@balrog.2hip.net> Message-ID: <4A893704.10709@gmail.com> > The GPU is reporting page table errors. Does this happen on a clean > boot, or only after restarting X? On a clean boot. If it matters I need ACPI disabled for my mouse to work... > > robert. > >> _______________________________________________ >> freebsd-x11@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-x11 >> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Eitan Adler "Security is increased by designing for the way humans actually behave." -Jakob Nielsen From rick-freebsd2008 at kiwi-computer.com Mon Aug 17 16:01:55 2009 From: rick-freebsd2008 at kiwi-computer.com (Rick C. Petty) Date: Mon Aug 17 16:02:03 2009 Subject: problems with X after upgrading xorg-server and nvidia-driver/nouveau Message-ID: <20090817153513.GA25131@keira.kiwi-computer.com> On an i386 7.2-STABLE system (RELENG_7 as of early June), I was successfully using X with: libGL-7.4 libGLU-7.4 libX11-1.2,1 nvidia-driver-180.29 xorg-server-1.5.3_8,1 A few days ago, I upgraded RELENG_7 and my ports to: libGL-7.4.4 libGLU-7.4.4 libX11-1.2.1_1,1 nvidia-driver-185.18.29 xorg-server-1.6.1,1 And X would start successfully but then crash with SIGSEGV typically within 60 seconds. I could induce an immediate crash by trying to run something using GL (e.g. bzflag). Note that in both cases, I forcibly installed nvidia-driver after the others since it overwrites a couple of the libs. Having been fed up with nvidia-driver recently, I uninstalled it, reinstalled libGL, libGLU, libX11, and xorg-server and installed xf86-video-nouveau-0.0.10.20090728. I followed the instructions in that port's message and patched my GENERIC+DDB kernel appropriately and rebuild the nouveau port. Now instead of X crashing, my machine hangs immediately when trying to kldload nouveau.ko. It looks like there is a panic-- although I cannot see it on the console (and hence cannot interact with DDB in any meaningful way) but I do see some stuff in my dmesg.boot (which I'll attach below). I have no additional information to report about the crash, other than it's fairly annoying. I have an nVidia GeForce 6600 TurboCache PCI-e card and I'll attach my xorg.conf below. Any help would be greatly appreciated! -- Rick C. Petty ~~~ From dmesg.boot: ~~~ drm0: on vgapci0 panic: resource_list_alloc: resource entry is busy cpuid = 1 KDB: stack backtrace: db_trace_self_wrapper(c0bb1b43,e876a7c4,c07f9ae9,c0bd34c8,1,...) at 0xc0499c26 = db_trace_self_wrapper+0x26 kdb_backtrace(c0bd34c8,1,c0bb16cd,e876a7d0,1,...) at 0xc08265b9 = kdb_backtrace+0x29 panic(c0bb16cd,1,0,c0cec438,0,...) at 0xc07f9ae9 = panic+0x119 resource_list_alloc(c628b304,c6285880,c6285800,1,c657a1d8,...) at 0xc08226a6 = resource_list_alloc+0xd6 pci_alloc_resource(c6285880,c6285800,1,c657a1d8,0,ffffffff,1,6) at 0xc06b4617 = pci_alloc_resource+0x557 bus_alloc_resource(c6285800,1,c657a1d8,0,ffffffff,...) at 0xc082252c = bus_alloc_resource+0x7c vga_pci_alloc_resource(c6285800,c6285580,1,c657a1d8,0,ffffffff,1,6) at 0xc06ba8f2 = vga_pci_alloc_resource+0xd2 bus_alloc_resource(c6285580,1,c657a1d8,0,ffffffff,...) at 0xc082252c = bus_alloc_resource+0x7c drm_attach(c6285580,cc128000,102,c6285800,c62855cc,...) at 0xcc024e41 = drm_attach+0x2f1 nouveau_attach(c6285580,c6579854,c0c763b0,c0bb1525,80000000,...) at 0xcc10a538 = nouveau_attach+0xf8 device_attach(c6285580,c6285580,c6285800,c6285580,c6285800,...) at 0xc082126f = device_attach+0x36f device_probe_and_attach(c6285580,c6285800,c0c763a0,c6285800,0,...) at 0xc08221fd = device_probe_and_attach+0xdd bus_generic_driver_added(c6285800,cc12807c,c0c761f0,0,cc128068,...) at 0xc08222b5 = bus_generic_driver_added+0x65 devclass_add_driver(c6140400,cc12807c,e876aa2c,2d,cc12807c,...) at 0xc08200e8 = devclass_add_driver+0xc8 driver_module_handler(c7781b00,0,cc128068,0,0,...) at 0xc0820e29 = driver_module_handler+0x79 module_register_init(cc12805c,c0badb50,e876ac1c,e876ac18,0,...) at 0xc07e94c7 = module_register_init+0x107 linker_load_module(0,e876ac4c,c206d5a0,0,2,...) at 0xc07e205f = linker_load_module+0xa6f kern_kldload(c6b0cd80,c6231000,e876ac70,0,c6b06b00,...) at 0xc07e256c = kern_kldload+0xec kldload(c6b0cd80,e876acfc,4,e876ad38,e876ad2c,...) at 0xc07e2644 = kldload+0x74 syscall(e876ad38) at 0xc0b061e5 = syscall+0x335 Xint0x80_syscall() at 0xc0aeab80 = Xint0x80_syscall+0x20 --- syscall (304, FreeBSD ELF32, kldload), eip = 0x380caa5b, esp = 0xbfbfeb2c, ebp = 0xbfbfeb58 --- KDB: enter: panic Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.2-STABLE #3: Fri Aug 14 16:12:36 CDT 2009 root@myhost:/usr/obj/usr/src/sys/DDB module_register: module cpu/ichss already exists! Module cpu/ichss failed to register: 17 module_register: module cpu/est already exists! Module cpu/est failed to register: 17 module_register: module cpu/p4tcc already exists! Module cpu/p4tcc failed to register: 17 module_register: module cpu/powernow already exists! Module cpu/powernow failed to register: 17 module_register: module cpu/smist already exists! Module cpu/smist failed to register: 17 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (2009.13-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x40fb2 Stepping = 2 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x1f Cores per package: 2 real memory = 2147221504 (2047 MB) avail memory = 2078924800 (1982 MB) ACPI APIC Table: <033007 APIC1150> FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard kbd0 at kbdmux0 acpi0: <033007 RSDT1150> on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) unknown: I/O range not supported acpi0: reservation of fec00000, 1000 (3) failed acpi0: reservation of fee00000, 1000 (3) failed acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 7ff00000 (3) failed Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 25000000 Hz quality 900 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: at device 0.0 (no driver attached) isab0: port 0x900-0x9ff at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) pci0: at device 1.2 (no driver attached) ohci0: mem 0xddeff000-0xddefffff irq 21 at device 2.0 on pci0 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 10 ports with 10 removable, self powered ehci0: mem 0xddefec00-0xddefecff irq 22 at device 2.1 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb1: EHCI version 1.0 usb1: companion controller, 10 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: on usb1 uhub1: 10 ports with 10 removable, self powered nfe0: port 0xe080-0xe087 mem 0xddefd000-0xddefdfff irq 23 at device 6.0 on pci0 miibus0: on nfe0 atphy0: PHY 1 on miibus0 atphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto nfe0: Ethernet address: 00:1a:92:e1:ed:d1 nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] nfe0: [FILTER] hdac0: mem 0xddef4000-0xddef7fff irq 20 at device 7.0 on pci0 hdac0: HDA Driver Revision: 20090624_0136 hdac0: [ITHREAD] pcib1: at device 8.0 on pci0 pci1: on pcib1 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 9.0 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] atapci1: port 0xf80-0xf87,0xf00-0xf03,0xe80-0xe87,0xe00-0xe03,0xd480-0xd48f mem 0xddef2000-0xddef3fff irq 21 at device 10.0 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] pcib2: at device 11.0 on pci0 pci2: on pcib2 pcib3: at device 12.0 on pci0 pci3: on pcib3 pcib4: at device 13.0 on pci0 pci4: on pcib4 vgapci0: mem 0xdf000000-0xdfffffff,0xc0000000-0xcfffffff,0xde000000-0xdeffffff irq 16 at device 0.0 on pci4 nvidia0: on vgapci0 vgapci0: child nvidia0 requested pci_enable_busmaster vgapci0: child nvidia0 requested pci_enable_io vgapci0: child nvidia0 requested pci_enable_io nvidia0: [GIANT-LOCKED] nvidia0: [ITHREAD] pcib5: at device 14.0 on pci0 pci5: on pcib5 acpi_button0: on acpi0 speaker0: port 0x61 on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] cpu0: on acpi0 powernow0: on cpu0 device_attach: powernow0 attach returned 6 cpu1: on acpi0 powernow1: on cpu1 device_attach: powernow1 attach returned 6 pmtimer0 on isa0 atkbdc0: at port 0x60,0x64 on isa0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: on ppc0 ppbus0: [ITHREAD] plip0: on ppbus0 plip0: WARNING: using obsoleted IFF_NEEDSGIANT flag lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ppc0: [GIANT-LOCKED] ppc0: [ITHREAD] sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ums0: on uhub0 ums0: 3 buttons and Z dir. ukbd0: on uhub0 kbd1 at ukbd0 Timecounters tick every 1.000 msec acd0: DMA limited to UDMA33, device found non-ATA66 cable acd0: DVDR <16X8 DVD DUAL/A070> at ata0-master UDMA33 ad4: 305245MB at ata2-master UDMA33 ad6: 305245MB at ata3-master UDMA33 hdac0: HDA Codec #0: Realtek ALC883 pcm0: at cad 0 nid 1 on hdac0 pcm1: at cad 0 nid 1 on hdac0 pcm2: at cad 0 nid 1 on hdac0 SMP: AP CPU #1 Launched! GEOM_MIRROR: Device mirror/fawkes0 launched (2/2). Trying to mount root from ufs:/dev/mirror/fawkes0a WARNING: / was not properly dismounted WARNING: /var was not properly dismounted /var: mount pending error: blocks 16 files 0 WARNING: /usr was not properly dismounted WARNING: /home was not properly dismounted WARNING: /stage was not properly dismounted nfe0: tx v2 error 0x6100 ~~~ xorg.conf ~~~ Section "ServerLayout" Identifier "nVidia X.Org" Screen "Screens" 0 0 InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" Option "AllowEmptyInput" "off" Option "DontZap" "off" Option "AllowDeactivateGrabs" "true" Option "AllowClosedownGrabs" "true" EndSection Section "Files" FontPath "/usr/local/lib/X11/fonts/75dpi/:unscaled" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "keyboard" Option "XkbModel" "pc104" Option "XkbOptions" "ctrl:nocaps" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Emulate3Buttons" "false" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" EndSection Section "Screen" Identifier "Screens" Device "Device" Monitor "Monitors" DefaultDepth 16 SubSection "Display" Virtual 3200 1920 EndSubSection EndSection Section "Device" Identifier "Device" Driver "nouveau" EndSection Section "Monitor" Identifier "Dell E173FP" Option "LeftOf" "Dell 2405FPW" EndSection Section "Monitor" Identifier "Dell 2405FPW" Option "PreferredMode" "1920x1200" EndSection From swell.k at gmail.com Tue Aug 18 12:11:38 2009 From: swell.k at gmail.com (Anonymous) Date: Tue Aug 18 12:11:44 2009 Subject: problems with X after upgrading xorg-server and nvidia-driver/nouveau In-Reply-To: <20090817153513.GA25131@keira.kiwi-computer.com> (Rick C. Petty's message of "Mon, 17 Aug 2009 10:35:13 -0500") References: <20090817153513.GA25131@keira.kiwi-computer.com> Message-ID: <86k511qq3m.fsf@gmail.com> "Rick C. Petty" writes: > vgapci0: mem 0xdf000000-0xdfffffff,0xc0000000-0xcfffffff,0xde000000-0xdeffffff irq 16 at device 0.0 on pci4 > nvidia0: on vgapci0 > vgapci0: child nvidia0 requested pci_enable_busmaster > vgapci0: child nvidia0 requested pci_enable_io > vgapci0: child nvidia0 requested pci_enable_io > nvidia0: [GIANT-LOCKED] > nvidia0: [ITHREAD] Can you show kldstat(8) output just before panic? I hope you don't try to use nvidia.ko and nouveau.ko together. From rnoland at FreeBSD.org Tue Aug 18 12:46:39 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Aug 18 12:46:46 2009 Subject: problems with X after upgrading xorg-server and nvidia-driver/nouveau In-Reply-To: <20090817153513.GA25131@keira.kiwi-computer.com> References: <20090817153513.GA25131@keira.kiwi-computer.com> Message-ID: <1250599588.1752.742.camel@balrog.2hip.net> On Mon, 2009-08-17 at 10:35 -0500, Rick C. Petty wrote: > On an i386 7.2-STABLE system (RELENG_7 as of early June), I was > successfully using X with: > libGL-7.4 > libGLU-7.4 > libX11-1.2,1 > nvidia-driver-180.29 > xorg-server-1.5.3_8,1 > > A few days ago, I upgraded RELENG_7 and my ports to: > libGL-7.4.4 > libGLU-7.4.4 > libX11-1.2.1_1,1 > nvidia-driver-185.18.29 > xorg-server-1.6.1,1 > > And X would start successfully but then crash with SIGSEGV typically within > 60 seconds. I could induce an immediate crash by trying to run something > using GL (e.g. bzflag). Note that in both cases, I forcibly installed > nvidia-driver after the others since it overwrites a couple of the libs. > > Having been fed up with nvidia-driver recently, I uninstalled it, > reinstalled libGL, libGLU, libX11, and xorg-server and installed > xf86-video-nouveau-0.0.10.20090728. I followed the instructions in that > port's message and patched my GENERIC+DDB kernel appropriately and rebuild > the nouveau port. Now instead of X crashing, my machine hangs immediately > when trying to kldload nouveau.ko. It looks like there is a panic-- > although I cannot see it on the console (and hence cannot interact with DDB > in any meaningful way) but I do see some stuff in my dmesg.boot (which I'll > attach below). I have no additional information to report about the crash, > other than it's fairly annoying. > > I have an nVidia GeForce 6600 TurboCache PCI-e card and I'll attach my > xorg.conf below. Any help would be greatly appreciated! > > -- Rick C. Petty > > ~~~ From dmesg.boot: ~~~ > > drm0: on vgapci0 > panic: resource_list_alloc: resource entry is busy > cpuid = 1 > KDB: stack backtrace: > db_trace_self_wrapper(c0bb1b43,e876a7c4,c07f9ae9,c0bd34c8,1,...) at 0xc0499c26 = db_trace_self_wrapper+0x26 > kdb_backtrace(c0bd34c8,1,c0bb16cd,e876a7d0,1,...) at 0xc08265b9 = kdb_backtrace+0x29 > panic(c0bb16cd,1,0,c0cec438,0,...) at 0xc07f9ae9 = panic+0x119 This panic appears to be during irq resource allocation. I'm not sure how this occurs. I haven't seen this issue reported before. Does this happen if you manually kldload nouveau.ko from the console, without starting X? robert. > resource_list_alloc(c628b304,c6285880,c6285800,1,c657a1d8,...) at 0xc08226a6 = resource_list_alloc+0xd6 > pci_alloc_resource(c6285880,c6285800,1,c657a1d8,0,ffffffff,1,6) at 0xc06b4617 = pci_alloc_resource+0x557 > bus_alloc_resource(c6285800,1,c657a1d8,0,ffffffff,...) at 0xc082252c = bus_alloc_resource+0x7c > vga_pci_alloc_resource(c6285800,c6285580,1,c657a1d8,0,ffffffff,1,6) at 0xc06ba8f2 = vga_pci_alloc_resource+0xd2 > bus_alloc_resource(c6285580,1,c657a1d8,0,ffffffff,...) at 0xc082252c = bus_alloc_resource+0x7c > drm_attach(c6285580,cc128000,102,c6285800,c62855cc,...) at 0xcc024e41 = drm_attach+0x2f1 > nouveau_attach(c6285580,c6579854,c0c763b0,c0bb1525,80000000,...) at 0xcc10a538 = nouveau_attach+0xf8 > device_attach(c6285580,c6285580,c6285800,c6285580,c6285800,...) at 0xc082126f = device_attach+0x36f > device_probe_and_attach(c6285580,c6285800,c0c763a0,c6285800,0,...) at 0xc08221fd = device_probe_and_attach+0xdd > bus_generic_driver_added(c6285800,cc12807c,c0c761f0,0,cc128068,...) at 0xc08222b5 = bus_generic_driver_added+0x65 > devclass_add_driver(c6140400,cc12807c,e876aa2c,2d,cc12807c,...) at 0xc08200e8 = devclass_add_driver+0xc8 > driver_module_handler(c7781b00,0,cc128068,0,0,...) at 0xc0820e29 = driver_module_handler+0x79 > module_register_init(cc12805c,c0badb50,e876ac1c,e876ac18,0,...) at 0xc07e94c7 = module_register_init+0x107 > linker_load_module(0,e876ac4c,c206d5a0,0,2,...) at 0xc07e205f = linker_load_module+0xa6f > kern_kldload(c6b0cd80,c6231000,e876ac70,0,c6b06b00,...) at 0xc07e256c = kern_kldload+0xec > kldload(c6b0cd80,e876acfc,4,e876ad38,e876ad2c,...) at 0xc07e2644 = kldload+0x74 > syscall(e876ad38) at 0xc0b061e5 = syscall+0x335 > Xint0x80_syscall() at 0xc0aeab80 = Xint0x80_syscall+0x20 > --- syscall (304, FreeBSD ELF32, kldload), eip = 0x380caa5b, esp = 0xbfbfeb2c, ebp = 0xbfbfeb58 --- > KDB: enter: panic > Copyright (c) 1992-2009 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD is a registered trademark of The FreeBSD Foundation. > FreeBSD 7.2-STABLE #3: Fri Aug 14 16:12:36 CDT 2009 > root@myhost:/usr/obj/usr/src/sys/DDB > module_register: module cpu/ichss already exists! > Module cpu/ichss failed to register: 17 > module_register: module cpu/est already exists! > Module cpu/est failed to register: 17 > module_register: module cpu/p4tcc already exists! > Module cpu/p4tcc failed to register: 17 > module_register: module cpu/powernow already exists! > Module cpu/powernow failed to register: 17 > module_register: module cpu/smist already exists! > Module cpu/smist failed to register: 17 > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (2009.13-MHz 686-class CPU) > Origin = "AuthenticAMD" Id = 0x40fb2 Stepping = 2 > Features=0x178bfbff > Features2=0x2001 > AMD Features=0xea500800 > AMD Features2=0x1f > Cores per package: 2 > real memory = 2147221504 (2047 MB) > avail memory = 2078924800 (1982 MB) > ACPI APIC Table: <033007 APIC1150> > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > cpu0 (BSP): APIC ID: 0 > cpu1 (AP): APIC ID: 1 > ioapic0 irqs 0-23 on motherboard > kbd0 at kbdmux0 > acpi0: <033007 RSDT1150> on motherboard > acpi0: [ITHREAD] > acpi0: Power Button (fixed) > unknown: I/O range not supported > acpi0: reservation of fec00000, 1000 (3) failed > acpi0: reservation of fee00000, 1000 (3) failed > acpi0: reservation of 0, a0000 (3) failed > acpi0: reservation of 100000, 7ff00000 (3) failed > Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0 > acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 > Timecounter "HPET" frequency 25000000 Hz quality 900 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > pci0: at device 0.0 (no driver attached) > isab0: port 0x900-0x9ff at device 1.0 on pci0 > isa0: on isab0 > pci0: at device 1.1 (no driver attached) > pci0: at device 1.2 (no driver attached) > ohci0: mem 0xddeff000-0xddefffff irq 21 at device 2.0 on pci0 > ohci0: [GIANT-LOCKED] > ohci0: [ITHREAD] > usb0: OHCI version 1.0, legacy support > usb0: SMM does not respond, resetting > usb0: on ohci0 > usb0: USB revision 1.0 > uhub0: on usb0 > uhub0: 10 ports with 10 removable, self powered > ehci0: mem 0xddefec00-0xddefecff irq 22 at device 2.1 on pci0 > ehci0: [GIANT-LOCKED] > ehci0: [ITHREAD] > usb1: EHCI version 1.0 > usb1: companion controller, 10 ports each: usb0 > usb1: on ehci0 > usb1: USB revision 2.0 > uhub1: on usb1 > uhub1: 10 ports with 10 removable, self powered > nfe0: port 0xe080-0xe087 mem 0xddefd000-0xddefdfff irq 23 at device 6.0 on pci0 > miibus0: on nfe0 > atphy0: PHY 1 on miibus0 > atphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > nfe0: Ethernet address: 00:1a:92:e1:ed:d1 > nfe0: [FILTER] > nfe0: [FILTER] > nfe0: [FILTER] > nfe0: [FILTER] > nfe0: [FILTER] > nfe0: [FILTER] > nfe0: [FILTER] > nfe0: [FILTER] > hdac0: mem 0xddef4000-0xddef7fff irq 20 at device 7.0 on pci0 > hdac0: HDA Driver Revision: 20090624_0136 > hdac0: [ITHREAD] > pcib1: at device 8.0 on pci0 > pci1: on pcib1 > atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 9.0 on pci0 > ata0: on atapci0 > ata0: [ITHREAD] > ata1: on atapci0 > ata1: [ITHREAD] > atapci1: port 0xf80-0xf87,0xf00-0xf03,0xe80-0xe87,0xe00-0xe03,0xd480-0xd48f mem 0xddef2000-0xddef3fff irq 21 at device 10.0 on pci0 > atapci1: [ITHREAD] > ata2: on atapci1 > ata2: [ITHREAD] > ata3: on atapci1 > ata3: [ITHREAD] > pcib2: at device 11.0 on pci0 > pci2: on pcib2 > pcib3: at device 12.0 on pci0 > pci3: on pcib3 > pcib4: at device 13.0 on pci0 > pci4: on pcib4 > vgapci0: mem 0xdf000000-0xdfffffff,0xc0000000-0xcfffffff,0xde000000-0xdeffffff irq 16 at device 0.0 on pci4 > nvidia0: on vgapci0 > vgapci0: child nvidia0 requested pci_enable_busmaster > vgapci0: child nvidia0 requested pci_enable_io > vgapci0: child nvidia0 requested pci_enable_io > nvidia0: [GIANT-LOCKED] > nvidia0: [ITHREAD] > pcib5: at device 14.0 on pci0 > pci5: on pcib5 > acpi_button0: on acpi0 > speaker0: port 0x61 on acpi0 > fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 > fdc0: [FILTER] > sio0: configured irq 4 not in bitmap of probed irqs 0 > sio0: port may not be enabled > sio0: configured irq 4 not in bitmap of probed irqs 0 > sio0: port may not be enabled > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 > sio0: type 16550A > sio0: [FILTER] > cpu0: on acpi0 > powernow0: on cpu0 > device_attach: powernow0 attach returned 6 > cpu1: on acpi0 > powernow1: on cpu1 > device_attach: powernow1 attach returned 6 > pmtimer0 on isa0 > atkbdc0: at port 0x60,0x64 on isa0 > ppc0: at port 0x378-0x37f irq 7 on isa0 > ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode > ppbus0: on ppc0 > ppbus0: [ITHREAD] > plip0: on ppbus0 > plip0: WARNING: using obsoleted IFF_NEEDSGIANT flag > lpt0: on ppbus0 > lpt0: Interrupt-driven port > ppi0: on ppbus0 > ppc0: [GIANT-LOCKED] > ppc0: [ITHREAD] > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > ums0: on uhub0 > ums0: 3 buttons and Z dir. > ukbd0: on uhub0 > kbd1 at ukbd0 > Timecounters tick every 1.000 msec > acd0: DMA limited to UDMA33, device found non-ATA66 cable > acd0: DVDR <16X8 DVD DUAL/A070> at ata0-master UDMA33 > ad4: 305245MB at ata2-master UDMA33 > ad6: 305245MB at ata3-master UDMA33 > hdac0: HDA Codec #0: Realtek ALC883 > pcm0: at cad 0 nid 1 on hdac0 > pcm1: at cad 0 nid 1 on hdac0 > pcm2: at cad 0 nid 1 on hdac0 > SMP: AP CPU #1 Launched! > GEOM_MIRROR: Device mirror/fawkes0 launched (2/2). > Trying to mount root from ufs:/dev/mirror/fawkes0a > WARNING: / was not properly dismounted > WARNING: /var was not properly dismounted > /var: mount pending error: blocks 16 files 0 > WARNING: /usr was not properly dismounted > WARNING: /home was not properly dismounted > WARNING: /stage was not properly dismounted > nfe0: tx v2 error 0x6100 > > ~~~ xorg.conf ~~~ > > Section "ServerLayout" > Identifier "nVidia X.Org" > Screen "Screens" 0 0 > InputDevice "Keyboard0" "CoreKeyboard" > InputDevice "Mouse0" "CorePointer" > Option "AllowEmptyInput" "off" > Option "DontZap" "off" > Option "AllowDeactivateGrabs" "true" > Option "AllowClosedownGrabs" "true" > EndSection > > Section "Files" > FontPath "/usr/local/lib/X11/fonts/75dpi/:unscaled" > EndSection > > Section "InputDevice" > Identifier "Keyboard0" > Driver "keyboard" > Option "XkbModel" "pc104" > Option "XkbOptions" "ctrl:nocaps" > EndSection > > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Emulate3Buttons" "false" > Option "Protocol" "auto" > Option "Device" "/dev/sysmouse" > EndSection > > Section "Screen" > Identifier "Screens" > Device "Device" > Monitor "Monitors" > DefaultDepth 16 > SubSection "Display" > Virtual 3200 1920 > EndSubSection > EndSection > > Section "Device" > Identifier "Device" > Driver "nouveau" > EndSection > > Section "Monitor" > Identifier "Dell E173FP" > Option "LeftOf" "Dell 2405FPW" > EndSection > > Section "Monitor" > Identifier "Dell 2405FPW" > Option "PreferredMode" "1920x1200" > EndSection > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD From rnoland at FreeBSD.org Tue Aug 18 13:23:05 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Aug 18 13:23:11 2009 Subject: problems with X after upgrading xorg-server and nvidia-driver/nouveau In-Reply-To: <86k511qq3m.fsf@gmail.com> References: <20090817153513.GA25131@keira.kiwi-computer.com> <86k511qq3m.fsf@gmail.com> Message-ID: <1250601776.1752.744.camel@balrog.2hip.net> On Tue, 2009-08-18 at 16:11 +0400, Anonymous wrote: > "Rick C. Petty" writes: > > > vgapci0: mem 0xdf000000-0xdfffffff,0xc0000000-0xcfffffff,0xde000000-0xdeffffff irq 16 at device 0.0 on pci4 > > nvidia0: on vgapci0 > > vgapci0: child nvidia0 requested pci_enable_busmaster > > vgapci0: child nvidia0 requested pci_enable_io > > vgapci0: child nvidia0 requested pci_enable_io > > nvidia0: [GIANT-LOCKED] > > nvidia0: [ITHREAD] > > Can you show kldstat(8) output just before panic? I hope you don't > try to use nvidia.ko and nouveau.ko together. Good catch, I didn't notice that. That would certainly be a problem and the likely source of the panic. robert. > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD From rick-freebsd2008 at kiwi-computer.com Tue Aug 18 22:09:25 2009 From: rick-freebsd2008 at kiwi-computer.com (Rick C. Petty) Date: Tue Aug 18 22:09:32 2009 Subject: problems with X after upgrading xorg-server and nvidia-driver/nouveau In-Reply-To: <1250599588.1752.742.camel@balrog.2hip.net> References: <20090817153513.GA25131@keira.kiwi-computer.com> <1250599588.1752.742.camel@balrog.2hip.net> Message-ID: <20090818220923.GA82219@keira.kiwi-computer.com> On Tue, Aug 18, 2009 at 07:46:28AM -0500, Robert Noland wrote: > On Mon, 2009-08-17 at 10:35 -0500, Rick C. Petty wrote: > > > > ~~~ From dmesg.boot: ~~~ > > > > drm0: on vgapci0 > > panic: resource_list_alloc: resource entry is busy > > cpuid = 1 > > KDB: stack backtrace: > > db_trace_self_wrapper(c0bb1b43,e876a7c4,c07f9ae9,c0bd34c8,1,...) at 0xc0499c26 = db_trace_self_wrapper+0x26 > > kdb_backtrace(c0bd34c8,1,c0bb16cd,e876a7d0,1,...) at 0xc08265b9 = kdb_backtrace+0x29 > > panic(c0bb16cd,1,0,c0cec438,0,...) at 0xc07f9ae9 = panic+0x119 > > This panic appears to be during irq resource allocation. I'm not sure > how this occurs. I haven't seen this issue reported before. Does this > happen if you manually kldload nouveau.ko from the console, without > starting X? That was happening when I loaded the module manually, before starting X. I was able to get it working when I loaded it from loader.conf instead of directly. After that the reported problems went away; I can't seem to reproduce this now. Here are some other notes. The first panic occured after I uninstalled nvidia-driver but didn't unload nvidia.ko first. That one made sense. After a reboot, there was no nvidia driver to load and yet the panic still happened. After a couple more reboots, I was able to kldload nouveau.ko from the console without having to do it in the loader.conf. Additionally, I played around with nouveau and nvidia together.. You can kldload nvidia if nouveau is already loaded but the reverse is not true. Probably nouveau should behave better in this case, or perhaps refuse to load if nvidia is loaded. Regardless, nvidia won't properly initialize because of resource allocation problems if nouveau is present, which makes sense, but at least it doesn't panic. Another thing I noticed when using nouveau is that sometimes X just crashes for no apparent reason. This happens more often when trying to use GL. A warm reboot seems to fix the problem for awhile and GL apps just work, albeit very slowly (as is expected). But every so often X crashes with no reported error messages (either on the console or in Xorg.0.log). However, xf86-video-nouveau-0.0.10.20090728 was significantly more stable than nvidia-driver-180.29 on xorg-server-1.6.1,1. After being fed up (who can work when X crashes every 5-60 seconds?), I decided to downgrade to xorg-server-1.5.3_7,1 and nvidia-driver-180.29. This seems to work just fine, even using the latest libraries (X11, GL, GLU, etc.) except that I had to downgrade to xf86-input-keyboard-1.2.2_1 and xf86-input-mouse-1.2.3_1. No more SEGVs for me now. Is there a procedure for diagnosing X crashes on FreeBSD? I could try to build everything with -g and inspect core files. I was just hoping there was a better way. -- Rick C. Petty From rnoland at FreeBSD.org Tue Aug 18 22:25:07 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Aug 18 22:25:42 2009 Subject: problems with X after upgrading xorg-server and nvidia-driver/nouveau In-Reply-To: <20090818220923.GA82219@keira.kiwi-computer.com> References: <20090817153513.GA25131@keira.kiwi-computer.com> <1250599588.1752.742.camel@balrog.2hip.net> <20090818220923.GA82219@keira.kiwi-computer.com> Message-ID: <1250634297.62048.10.camel@balrog.2hip.net> On Tue, 2009-08-18 at 17:09 -0500, Rick C. Petty wrote: > On Tue, Aug 18, 2009 at 07:46:28AM -0500, Robert Noland wrote: > > On Mon, 2009-08-17 at 10:35 -0500, Rick C. Petty wrote: > > > > > > ~~~ From dmesg.boot: ~~~ > > > > > > drm0: on vgapci0 > > > panic: resource_list_alloc: resource entry is busy > > > cpuid = 1 > > > KDB: stack backtrace: > > > db_trace_self_wrapper(c0bb1b43,e876a7c4,c07f9ae9,c0bd34c8,1,...) at 0xc0499c26 = db_trace_self_wrapper+0x26 > > > kdb_backtrace(c0bd34c8,1,c0bb16cd,e876a7d0,1,...) at 0xc08265b9 = kdb_backtrace+0x29 > > > panic(c0bb16cd,1,0,c0cec438,0,...) at 0xc07f9ae9 = panic+0x119 > > > > This panic appears to be during irq resource allocation. I'm not sure > > how this occurs. I haven't seen this issue reported before. Does this > > happen if you manually kldload nouveau.ko from the console, without > > starting X? > > That was happening when I loaded the module manually, before starting X. I > was able to get it working when I loaded it from loader.conf instead of > directly. After that the reported problems went away; I can't seem to > reproduce this now. Here are some other notes. > > The first panic occured after I uninstalled nvidia-driver but didn't unload > nvidia.ko first. That one made sense. After a reboot, there was no nvidia > driver to load and yet the panic still happened. After a couple more > reboots, I was able to kldload nouveau.ko from the console without having > to do it in the loader.conf. Additionally, I played around with nouveau > and nvidia together.. You can kldload nvidia if nouveau is already loaded > but the reverse is not true. Probably nouveau should behave better in > this case, or perhaps refuse to load if nvidia is loaded. Regardless, > nvidia won't properly initialize because of resource allocation problems if > nouveau is present, which makes sense, but at least it doesn't panic. > > Another thing I noticed when using nouveau is that sometimes X just crashes > for no apparent reason. This happens more often when trying to use GL. A > warm reboot seems to fix the problem for awhile and GL apps just work, > albeit very slowly (as is expected). But every so often X crashes with no > reported error messages (either on the console or in Xorg.0.log). However, > xf86-video-nouveau-0.0.10.20090728 was significantly more stable than > nvidia-driver-180.29 on xorg-server-1.6.1,1. > > After being fed up (who can work when X crashes every 5-60 seconds?), I > decided to downgrade to xorg-server-1.5.3_7,1 and nvidia-driver-180.29. > This seems to work just fine, even using the latest libraries (X11, GL, > GLU, etc.) except that I had to downgrade to xf86-input-keyboard-1.2.2_1 > and xf86-input-mouse-1.2.3_1. No more SEGVs for me now. > > Is there a procedure for diagnosing X crashes on FreeBSD? I could try to > build everything with -g and inspect core files. I was just hoping there > was a better way. Unfortunately, it is pretty ugly on all platforms. There are numerous components involved, the Xserver all of it's drivers and libraries, libdrm which provides the drm API to userland, the actual drm kernel drivers and all of the Mesa ports for GL. Things that involve lockups or panics are generally drm, libdrm or DDX driver. Things that involve rendering problems generally fall more into the DDX or Mesa territory, but not always. The basic arsenal is DDB/kgdb for the kernel side. Serial console is also often useful, since usually lockups are also panics that you just can't see. gdb on the userland side. Lots of printf's enabled with various debugging knobs... robert. > -- Rick C. Petty > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD From linimon at FreeBSD.org Fri Aug 21 06:45:07 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Fri Aug 21 06:45:13 2009 Subject: FreeBSD ports that you maintain which are currently marked broken Message-ID: <20090821062857.9302C1CD8D@mail.droso.net> Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 6.x/7.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: x11-drivers/xf86-video-nsc broken because: does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-drivers&portname=xf86-video-nsc If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From me at jackal.in Sat Aug 22 07:18:10 2009 From: me at jackal.in (jackal) Date: Sat Aug 22 07:18:16 2009 Subject: libkio crash? In-Reply-To: <200908132219.19646.me@jackal.in> References: <200908132219.19646.me@jackal.in> Message-ID: <200908221117.06980.me@jackal.in> Hello, I've reinstalled kde3 with all dependencies: portupgrade -fRv kde-3.5.10_2 The problem exists - file properties dialog crash. Btw, kde4 works fine. The problem occured, when I upgraded freebsd 8-current (almost 1 year old) to 8.0-beta2 (latest) and upgraded all the ports with portupgrade -av I think, it's because of port kio_locate has been deprecaded. But I reinstalled kde3 fully yesterday, and it doesn't solve the problem. On Thursday 13 August 2009 22:19:19 jackal wrote: > Hello, > > When I want to show file properties (in any kde3 app), or use sftp (in > krusader) etc - application crashes with similar backtrace: > > [New Thread 2a201140 (LWP 100071)] > [Switching to Thread 2a201140 (LWP 100071)] > [KCrash handler] > #6 0x29ea22a0 in acl_dup () from /lib/libc.so.7 > #7 0x29e6f878 in acl_to_text_np () from /lib/libc.so.7 > #8 0x29e6fd0b in acl_to_text () from /lib/libc.so.7 > #9 0x28ccfb65 in KACL::asString () from /usr/local/lib/libkio.so.6 > #10 0x28d4d7ca in KFilePermissionsPropsPlugin::KFilePermissionsPropsPlugin > () from /usr/local/lib/libkio.so.6 > #11 0x28d5011e in KPropertiesDialog::insertPages () > from /usr/local/lib/libkio.so.6 > #12 0x28d5027c in KPropertiesDialog::init () from > /usr/local/lib/libkio.so.6 #13 0x28d5187a in > KPropertiesDialog::KPropertiesDialog () > from /usr/local/lib/libkio.so.6 > #14 0x081793cb in ListPanelFunc::properties () > #15 0x080f9f58 in KRslots::qt_invoke () > #16 0x2971241a in QObject::activate_signal () > from /usr/local/lib/libqt-mt.so.3 > #17 0x29712ee9 in QObject::activate_signal () > from /usr/local/lib/libqt-mt.so.3 > #18 0x28f26053 in KAction::activated () from /usr/local/lib/libkdeui.so.6 > #19 0x28f260a8 in KAction::slotActivated () from > /usr/local/lib/libkdeui.so.6 #20 0x28f290db in KAction::qt_invoke () from > /usr/local/lib/libkdeui.so.6 #21 0x2971241a in QObject::activate_signal () > from /usr/local/lib/libqt-mt.so.3 > #22 0x29712ee9 in QObject::activate_signal () > from /usr/local/lib/libqt-mt.so.3 > #23 0x292046ab in KAccelPrivate::menuItemActivated () > from /usr/local/lib/libkdecore.so.6 > #24 0x292052e1 in KAccelPrivate::emitActivatedSignal () > from /usr/local/lib/libkdecore.so.6 > #25 0x29205734 in KAccelPrivate::eventFilter () > from /usr/local/lib/libkdecore.so.6 > #26 0x29711c02 in QObject::activate_filters () > from /usr/local/lib/libqt-mt.so.3 > #27 0x29711c69 in QObject::event () from /usr/local/lib/libqt-mt.so.3 > #28 0x29747912 in QWidget::event () from /usr/local/lib/libqt-mt.so.3 > #29 0x297f6bfe in QMainWindow::event () from /usr/local/lib/libqt-mt.so.3 > #30 0x296b82c4 in QApplication::internalNotify () > from /usr/local/lib/libqt-mt.so.3 > #31 0x296b9589 in QApplication::notify () from /usr/local/lib/libqt-mt.so.3 > #32 0x2917f1c1 in KApplication::notify () from > /usr/local/lib/libkdecore.so.6 #33 0x29204e60 in > KAccelEventHandler::x11Event () > from /usr/local/lib/libkdecore.so.6 > #34 0x291850d5 in KApplication::x11EventFilter () > from /usr/local/lib/libkdecore.so.6 > #35 0x080fb4d6 in KrusaderApp::x11EventFilter () > #36 0x29649f4c in qt_x11EventFilter () from /usr/local/lib/libqt-mt.so.3 > #37 0x29659786 in QApplication::x11ProcessEvent () > from /usr/local/lib/libqt-mt.so.3 > #38 0x29669eeb in QEventLoop::processEvents () > from /usr/local/lib/libqt-mt.so.3 > #39 0x296cd9bf in QEventLoop::enterLoop () from > /usr/local/lib/libqt-mt.so.3 #40 0x296cd88e in QEventLoop::exec () from > /usr/local/lib/libqt-mt.so.3 #41 0x296b7dab in QApplication::exec () from > /usr/local/lib/libqt-mt.so.3 #42 0x080e2f40 in main () > > Help me please. -- Kind regards, Eugeny. From bugmaster at FreeBSD.org Mon Aug 24 11:07:07 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 24 11:09:57 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200908241107.n7OB77lm048788@freefall.freebsd.org> 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 ports/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse o ports/137373 x11 x11/libX11: make dependance on x11/libxcb o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133419 x11 Unable to build x11-drivers/xf86-video-nsc o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132041 x11 x11/xorg: Broken Intel video driver o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts f ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke 29 problems total. From marc at msys.ch Mon Aug 24 13:24:32 2009 From: marc at msys.ch (Marc Balmer) Date: Mon Aug 24 13:24:38 2009 Subject: -current and X11 on VMware Fusion, anyone? Message-ID: <2EEDA7F0-DA54-420E-84BE-D70FF609C5FA@msys.ch> I am trying to run FreeBSD -current with xorg from Ports (also up to date) in VMware Fusion on a mac. When I start X using startx, the display is there, but no input works, neither mouse nor keyboard. Returning to the console using CTRL-ALT-F1, however, works. Entering CTRL-C on the console then let's XOrg segfault and dump core. Anyone had success in running X on VMware? Appreciating any hints... - Marc Balmer From marc at msys.ch Mon Aug 24 13:56:26 2009 From: marc at msys.ch (Marc Balmer) Date: Mon Aug 24 13:56:34 2009 Subject: -current and X11 on VMware Fusion, anyone? In-Reply-To: <2EEDA7F0-DA54-420E-84BE-D70FF609C5FA@msys.ch> References: <2EEDA7F0-DA54-420E-84BE-D70FF609C5FA@msys.ch> Message-ID: Am 24.08.2009 um 15:24 schrieb Marc Balmer: > I am trying to run FreeBSD -current with xorg from Ports (also up to > date) in VMware Fusion on a mac. When I start X using startx, the > display is there, but no input works, neither mouse nor keyboard. > Returning to the console using CTRL-ALT-F1, however, works. > Entering CTRL-C on the console then let's XOrg segfault and dump core. > > Anyone had success in running X on VMware? Appreciating any hints... I had sucess myself, forgot to enable hald..... ;( sigh... From poluleha at yandex.ru Tue Aug 25 14:19:13 2009 From: poluleha at yandex.ru (=?UTF-8?B?0JbQuNC90LTQsNGA0LXQsiDQkNC70LXQutGB0LXQuQ==?=) Date: Tue Aug 25 14:19:21 2009 Subject: FreeBSD Port: x11-drivers/xf86-video-radeonhd Message-ID: <47071251209341@webmail40.yandex.ru> Hello! I have a problem with RadeonHD driver on FreeBSD/AMD64-7.0-8.0BETA3 If i enable "Memory Remap Feature" in BIOS a have black screen,no working keyboard and can reboot system only by "power off" key. If i disable this feature,any OS see only 3.2GB memory. I ask a pardon for my awful English, Russian. -- With Best regards,Alexey Zhindarev From rnoland at FreeBSD.org Tue Aug 25 14:51:33 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Aug 25 14:51:40 2009 Subject: FreeBSD Port: x11-drivers/xf86-video-radeonhd In-Reply-To: <47071251209341@webmail40.yandex.ru> References: <47071251209341@webmail40.yandex.ru> Message-ID: <1251211885.45706.3.camel@balrog.2hip.net> On Tue, 2009-08-25 at 18:09 +0400, ???????? ??????? wrote: > Hello! > > I have a problem with RadeonHD driver on FreeBSD/AMD64-7.0-8.0BETA3 If i enable "Memory Remap Feature" in BIOS a have black screen,no working keyboard and can reboot system only by "power off" key. If i disable this feature,any OS see only 3.2GB memory. How much ram do you have? The drm will force it's allocations below 4G and should be safe. Does this occur with xf86-video-ati as well? robert. > I ask a pardon for my awful English, Russian. -- Robert Noland FreeBSD From cristea.razvan at yahoo.com Wed Aug 26 11:14:00 2009 From: cristea.razvan at yahoo.com (Razvan Cristea) Date: Wed Aug 26 11:14:07 2009 Subject: gpac-libgpac error Message-ID: <946029.3852.qm@web57509.mail.re1.yahoo.com> Hello, Please help! ===>? Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/graphics/libGLU/work/Mesa-7.4.4/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/graphics/libGLU. *** Error code 1 Stop in /usr/ports/multimedia/gpac-libgpac. *** Error code 1 Stop in /usr/ports/multimedia/gpac-libgpac. [root@mail /usr/ports/multimedia/gpac-libgpac]# attached the config log and installed pkg list Cu prietenie, Razvan Cristea ===================== http://www.adventube.ro ===================== -------------- next part -------------- A non-text attachment was scrubbed... Name: config.log Type: application/octet-stream Size: 18138 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090826/13ab6eff/config.obj -------------- next part -------------- [root@mail /usr/ports/multimedia/gpac-libgpac]# ls /var/db/pkg ImageMagick-6.5.0.7 gccmakedep-1.0.2 libdrm-2.4.12 perl-5.8.7_2 aalib-1.4.r5_4 gd-2.0.33_4,1 libfpx-1.2.0.12_1 pkg-config-0.23_1 autoconf-2.13.000227_6 gettext-0.17_1 libiconv-1.11_1 pkgconfig-0.20 autoconf-2.62 ghostscript8-8.64 libmad-0.15.1b_2 png-1.2.8_2 autoconf-wrapper-20071109 glproto-1.4.8 libmpcdec-1.2.6 popt-1.7_5 automake-1.10.1 gmake-3.81_3 libogg-1.1.3,4 proftpd-1.3.1 automake-1.4.6_5 gpac-libgpac-0.4.4,1 libpthread-stubs-0.1 python25-2.5.4_1 automake-1.5_5,1 gsfonts-8.11_4 libslang2-2.1.4_1 randrproto-1.2.1 automake-1.9.6_3 help2man-1.36.4_2 libtheora-1.0.b2 renderproto-0.9.3 automake-wrapper-20071109 imake-1.0.2_4,1 libtool-1.5.26 rpm-3.0.6_14 bigreqsproto-1.0.2 inputproto-1.4.2.1 libungif-4.1.4_5 rpm2cpio-1.2_2 bison-1.75_2,1 jasper-1.900.1_7 libvorbis-1.2.0_2,3 ruby-1.8.6.111_1,1 bsdpan-DB_File-1.815 jbigkit-1.6 libxml2-2.7.3 ruby-1.9.0.1,1 bsdpan-Digest-1.15 jpeg-6b_3 lighttpd-1.4.22 ruby-flvtool2-1.0.6 bsdpan-Digest-SHA1-2.11 kbproto-1.0.3 linux-atk-1.9.1 speex-1.2.r1_1,1 bsdpan-HTML-Parser-3.56 lame-3.98.2_1 linux-cairo-1.0.2 sudo-1.6.9.17 bsdpan-IO-Socket-SSL-1.06 lcms-1.17,1 linux-expat-1.95.8 tcl-8.5.6_3 bsdpan-Mail-SpamAssassin-3.002005 libGL-7.0.3 linux-foldingathome-5.04 tcl-modules-8.5.6 bsdpan-Net-CIDR-Lite-0.20 libICE-1.0.4_1,1 linux-fontconfig-2.2.3_7 texi2html-1.76_1,1 bsdpan-Net-DNS-0.60 libSM-1.0.3_1,1 linux-glib2-2.6.6_1 tiff-3.8.2_3 bsdpan-Net-IP-1.25 libX11-1.1.3_1,1 linux-gtk2-2.6.10 unzip-5.52_5 bsdpan-Net_SSLeay.pm-1.30 libXau-1.0.3_2 linux-jpeg-6b.34 videoproto-2.2.2 bsdpan-Storable-2.16 libXdamage-1.1.1 linux-nerodigitalaudio-1.1.34.2 vm-pop3d-1.1.7f bsdpan-Sys-Hostname-Long-1.4 libXdmcp-1.0.2_1 linux-pango-1.10.2 wget-1.10.2_1 bsdpan-URI-1.35 libXext-1.0.3,1 linux-png-1.2.8_2 win32-codecs-3.1.0.r1,1 cdparanoia-3.9.8_8 libXfixes-4.0.3_1 linux-realplayer-10.0.9.809.20070726 x264-0.0.20081218 damageproto-1.1.0_2 libXinerama-1.0.2,1 linux-tiff-3.7.1 xanim-2.92.0_2 djbfft-0.76_2 libXrandr-1.2.3 linux-xorg-libs-6.8.2_5 xcmiscproto-1.1.2 dri2proto-1.99.3 libXrender-0.9.4_1 linux_base-fc-4_10 xextproto-7.0.2 exim-4.62-1 libXt-1.0.5_1 liveMedia-2009.02.23,1 xf86bigfontproto-1.1.2 expat-2.0.1 libXv-1.0.3_1,1 m4-1.4.4 xf86dgaproto-2.0.3 faac-1.26_1 libXxf86dga-1.0.2 makedepend-1.0.1,1 xf86vidmodeproto-2.2.2 faad2-2.6.1_1,1 libXxf86vm-1.0.1 mc-light-4.1.40.p9_7 xineramaproto-1.1.2 faad2-2.7_1,1 liba52-0.7.4_2 mediainfo-0.7.7.8 xorg-cf-files-1.0.2_3 ffmpeg-2008.07.27_10 libamrnb-7.0.0.2,1 mencoder-0.99.11_3 xproto-7.0.10_1 fixesproto-4.0 libamrwb-7.0.0.3 mpeg4ip-libmp4v2-1.6.1 xtrans-1.0.4 fontconfig-2.6.0,1 libcddb-1.3.0 mplayer-0.99.11_12 xvid-1.2.1,1 freetype2-2.1.10_2 libcdio-0.78.2_2 nasm-2.05.01,1 yasm-0.7.2 gawk-3.1.6_1 libdca-0.0.5 p5-gettext-1.05_2 From gary.jennejohn at freenet.de Wed Aug 26 11:37:52 2009 From: gary.jennejohn at freenet.de (Gary Jennejohn) Date: Wed Aug 26 11:37:59 2009 Subject: gpac-libgpac error In-Reply-To: <946029.3852.qm@web57509.mail.re1.yahoo.com> References: <946029.3852.qm@web57509.mail.re1.yahoo.com> Message-ID: <20090826133749.7db50043@ernst.jennejohn.org> On Wed, 26 Aug 2009 04:00:53 -0700 (PDT) Razvan Cristea wrote: > Hello, > > Please help! > > ===>__ Script "configure" failed unexpectedly. > Please report the problem to x11@FreeBSD.org [maintainer] and attach the > "/usr/ports/graphics/libGLU/work/Mesa-7.4.4/config.log" including the output > of the failure of your make command. Also, it might be a good idea to provide > an overview of all packages installed on your system (e.g. an `ls > /var/db/pkg`). > *** Error code 1 > > Stop in /usr/ports/graphics/libGLU. > *** Error code 1 > > Stop in /usr/ports/multimedia/gpac-libgpac. > *** Error code 1 > > Stop in /usr/ports/multimedia/gpac-libgpac. > [root@mail /usr/ports/multimedia/gpac-libgpac]# > > attached the config log and installed pkg list > Looks like you haven't installed the X server (xorg). Things which would be installed with it are missing. --- Gary Jennejohn From jbucar at gmail.com Wed Aug 26 23:01:57 2009 From: jbucar at gmail.com (=?ISO-8859-1?Q?Javier_B=FAcar?=) Date: Wed Aug 26 23:02:05 2009 Subject: configure error when compiling x11/libX11 Message-ID: <4A95B8C3.3070407@gmail.com> Hello, I have a problem when try to compile the port x11/libX11. Can please help me? FreeBSD XXX 8.0-BETA2 FreeBSD 8.0-BETA2 #1: Mon Aug 17 12:48:50 ART 2009 XXXX:/usr/obj/srv/usr/src/sys/RAKO i386 XXXX:/usr/ports/x11/libX11# make install clean ===> Extracting for libX11-1.2.1_1,1 => MD5 Checksum OK for xorg/lib/libX11-1.2.1.tar.bz2. => SHA256 Checksum OK for xorg/lib/libX11-1.2.1.tar.bz2. ===> Patching for libX11-1.2.1_1,1 ===> Applying FreeBSD patches for libX11-1.2.1_1,1 ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xcb.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/share/aclocal/xorg-macros.m4 - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/bigreqsproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xcmiscproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xextproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xtrans.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/kbproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/inputproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xf86bigfontproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xau.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xdmcp.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/bin/automake-1.10 - found ===> libX11-1.2.1_1,1 depends on file: /usr/local/bin/autoconf-2.62 - found ===> libX11-1.2.1_1,1 depends on package: libtool>=2.2 - found ===> libX11-1.2.1_1,1 depends on executable: pkg-config - found ===> Configuring for libX11-1.2.1_1,1 /usr/local/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB /usr/local/share/aclocal/glib.m4:8: run info '(automake)Extending aclocal' /usr/local/share/aclocal/glib.m4:8: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from... /usr/local/share/aclocal/libtool15.m4:640: AC_LIBTOOL_LINKER_OPTION is expanded from... /usr/local/share/aclocal/libtool15.m4:2559: _LT_AC_LANG_C_CONFIG is expanded from... /usr/local/share/aclocal/libtool15.m4:2558: AC_LIBTOOL_LANG_C_CONFIG is expanded from... /usr/local/share/aclocal/libtool15.m4:80: AC_LIBTOOL_SETUP is expanded from... /usr/local/share/aclocal/libtool15.m4:60: _AC_PROG_LIBTOOL is expanded from... /usr/local/share/aclocal/libtool15.m4:25: AC_PROG_LIBTOOL is expanded from... configure.ac:22: the top level configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached /usr/local/share/aclocal/libtool15.m4:595: AC_LIBTOOL_COMPILER_OPTION is expanded from... /usr/local/share/aclocal/libtool15.m4:4682: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached /usr/local/share/aclocal/libtool15.m4:2671: _LT_AC_LANG_CXX_CONFIG is expanded from... /usr/local/share/aclocal/libtool15.m4:2670: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... /usr/local/share/aclocal/libtool15.m4:1709: _LT_AC_TAGCONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached /usr/local/share/aclocal/libtool15.m4:3772: _LT_AC_LANG_F77_CONFIG is expanded from... /usr/local/share/aclocal/libtool15.m4:3771: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached /usr/local/share/aclocal/libtool15.m4:3878: _LT_AC_LANG_GCJ_CONFIG is expanded from... /usr/local/share/aclocal/libtool15.m4:3877: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from... aclocal.m4:1542: AC_LIBTOOL_LINKER_OPTION is expanded from... aclocal.m4:3461: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3460: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:982: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:962: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:927: AC_PROG_LIBTOOL is expanded from... configure.ac:22: the top level configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1497: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:5572: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:3569: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:3568: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:2611: _LT_AC_TAGCONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4666: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:4665: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4772: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:4771: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from... aclocal.m4:1542: AC_LIBTOOL_LINKER_OPTION is expanded from... aclocal.m4:3461: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3460: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:982: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:962: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:927: AC_PROG_LIBTOOL is expanded from... configure.ac:22: the top level configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1497: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:5572: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:3569: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:3568: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:2611: _LT_AC_TAGCONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4666: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:4665: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4772: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:4771: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached ../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from... ../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from... aclocal.m4:1542: AC_LIBTOOL_LINKER_OPTION is expanded from... aclocal.m4:3461: _LT_AC_LANG_C_CONFIG is expanded from... aclocal.m4:3460: AC_LIBTOOL_LANG_C_CONFIG is expanded from... aclocal.m4:982: AC_LIBTOOL_SETUP is expanded from... aclocal.m4:962: _AC_PROG_LIBTOOL is expanded from... aclocal.m4:927: AC_PROG_LIBTOOL is expanded from... configure.ac:22: the top level configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:1497: AC_LIBTOOL_COMPILER_OPTION is expanded from... aclocal.m4:5572: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:3569: _LT_AC_LANG_CXX_CONFIG is expanded from... aclocal.m4:3568: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from... aclocal.m4:2611: _LT_AC_TAGCONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4666: _LT_AC_LANG_F77_CONFIG is expanded from... aclocal.m4:4665: AC_LIBTOOL_LANG_F77_CONFIG is expanded from... configure.ac:22: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached aclocal.m4:4772: _LT_AC_LANG_GCJ_CONFIG is expanded from... aclocal.m4:4771: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from... checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking if xorg-macros used to generate configure is at least 1.2... yes, 1.2.1 ./configure: 2767: Syntax error: word unexpected (expecting ")") ===> Script "configure" failed unexpectedly. -------------- next part -------------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by libX11 configure 1.2.1, which was generated by GNU Autoconf 2.62. Invocation command line was $ ./configure --datadir=/usr/local/lib --with-xcb=yes --enable-malloc0returnsnull --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=i386-portbld-freebsd8.0 ## --------- ## ## Platform. ## ## --------- ## hostname = odin.valhala uname -m = i386 uname -r = 8.0-BETA2 uname -s = FreeBSD uname -v = FreeBSD 8.0-BETA2 #1: Mon Aug 17 12:48:50 ART 2009 root@odin.valhala:/usr/obj/srv/usr/src/sys/RAKO /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2241: checking for a BSD-compatible install configure:2309: result: /usr/bin/install -c -o root -g wheel configure:2320: checking whether build environment is sane configure:2363: result: yes configure:2388: checking for a thread-safe mkdir -p configure:2427: result: ./install-sh -c -d configure:2440: checking for gawk configure:2470: result: no configure:2440: checking for mawk configure:2470: result: no configure:2440: checking for nawk configure:2456: found /usr/bin/nawk configure:2467: result: nawk configure:2478: checking whether make sets $(MAKE) configure:2500: result: yes configure:2689: checking whether to enable maintainer-specific portions of Makefiles configure:2698: result: no configure:2723: checking if xorg-macros used to generate configure is at least 1.2 configure:2738: result: yes, 1.2.1 ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_env_BIGFONT_CFLAGS_set='' ac_cv_env_BIGFONT_CFLAGS_value='' ac_cv_env_BIGFONT_LIBS_set='' ac_cv_env_BIGFONT_LIBS_value='' ac_cv_env_CCC_set='' ac_cv_env_CCC_value='' ac_cv_env_CC_set=set ac_cv_env_CC_value=/usr/local/libexec/ccache/world-cc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -pipe -march=athlon -fno-strict-aliasing' ac_cv_env_CPPFLAGS_set='' ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_CXXCPP_set='' ac_cv_env_CXXCPP_value='' ac_cv_env_CXXFLAGS_set=set ac_cv_env_CXXFLAGS_value='-O2 -pipe -march=athlon -fno-strict-aliasing -O3' ac_cv_env_CXX_set=set ac_cv_env_CXX_value=/usr/local/libexec/ccache/world-c++ ac_cv_env_F77_set='' ac_cv_env_F77_value='' ac_cv_env_FFLAGS_set='' ac_cv_env_FFLAGS_value='' ac_cv_env_LDFLAGS_set='' ac_cv_env_LDFLAGS_value='' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_PKG_CONFIG_set='' ac_cv_env_PKG_CONFIG_value='' ac_cv_env_X11_CFLAGS_set='' ac_cv_env_X11_CFLAGS_value='' ac_cv_env_X11_LIBS_set='' ac_cv_env_X11_LIBS_value='' ac_cv_env_XDMCP_CFLAGS_set='' ac_cv_env_XDMCP_CFLAGS_value='' ac_cv_env_XDMCP_LIBS_set='' ac_cv_env_XDMCP_LIBS_value='' ac_cv_env_XKBPROTO_CFLAGS_set='' ac_cv_env_XKBPROTO_CFLAGS_value='' ac_cv_env_XKBPROTO_LIBS_set='' ac_cv_env_XKBPROTO_LIBS_value='' ac_cv_env_XPROTO_CFLAGS_set='' ac_cv_env_XPROTO_CFLAGS_value='' ac_cv_env_XPROTO_LIBS_set='' ac_cv_env_XPROTO_LIBS_value='' ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i386-portbld-freebsd8.0 ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_prog_AWK=nawk ac_cv_prog_make_make_set=yes lt_cv_sys_max_cmd_len=262144 ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='/usr/local/bin/aclocal-1.10' ADMIN_MAN_DIR='' ADMIN_MAN_SUFFIX='' AMDEPBACKSLASH='' AMDEP_FALSE='' AMDEP_TRUE='' AMTAR='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run tar' APP_MAN_DIR='' APP_MAN_SUFFIX='' AR='' AUTOCONF='/usr/local/bin/autoconf-2.62' AUTOHEADER='/usr/local/bin/autoheader-2.62' AUTOMAKE='/usr/local/bin/automake-1.10' AWK='nawk' BIGFONT_CFLAGS='' BIGFONT_LIBS='' CC='/usr/local/libexec/ccache/world-cc' CCDEPMODE='' CC_FOR_BUILD='' CFLAGS='-O2 -pipe -march=athlon -fno-strict-aliasing' CHANGELOG_CMD='' CPP='' CPPFLAGS='' CWARNFLAGS='' CXX='/usr/local/libexec/ccache/world-c++' CXXCPP='' CXXDEPMODE='' CXXFLAGS='-O2 -pipe -march=athlon -fno-strict-aliasing -O3' CYGPATH_W='echo' DEFS='' DEPDIR='' DRIVER_MAN_DIR='' DRIVER_MAN_SUFFIX='' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='' EXEEXT='' F77='' FFLAGS='' FILE_MAN_DIR='' FILE_MAN_SUFFIX='' GREP='' I18N_MODULE_LIBS='' INSTALL_DATA='install -o root -g wheel -m 444' INSTALL_PROGRAM='install -s -o root -g wheel -m 555' INSTALL_SCRIPT='install -o root -g wheel -m 555' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' KEYSYMDEF='' LAUNCHD='' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='/usr/local/bin/libtool' LIB_MAN_DIR='' LIB_MAN_SUFFIX='' LINT='' LINTLIB='' LINT_FALSE='' LINT_FLAGS='' LINT_TRUE='' LN_S='' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /usr/ports/x11/libX11/work/libX11-1.2.1/missing --run makeinfo' MAKE_LINT_LIB_FALSE='' MAKE_LINT_LIB_TRUE='' MALLOC_ZERO_CFLAGS='' MANPAGES_FALSE='' MANPAGES_TRUE='' MISC_MAN_DIR='' MISC_MAN_SUFFIX='' MKDIR_P='./install-sh -c -d' OBJEXT='' OS2_FALSE='' OS2_TRUE='' PACKAGE='libX11' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' PACKAGE_NAME='libX11' PACKAGE_STRING='libX11 1.2.1' PACKAGE_TARNAME='libX11' PACKAGE_VERSION='1.2.1' PATH_SEPARATOR=':' PKG_CONFIG='' RANLIB='' RAWCPP='' RAWCPPFLAGS='' SET_MAKE='' SHELL='/bin/sh' STRIP='' THRSTUBS_FALSE='' THRSTUBS_TRUE='' UDC_FALSE='' UDC_TRUE='' VERSION='1.2.1' WCHAR32='' X11_CFLAGS='' X11_DATADIR='' X11_EXTRA_DEPS='' X11_LIBDIR='' X11_LIBS='' X11_LOCALEDATADIR='' X11_LOCALEDIR='' X11_LOCALELIBDIR='' XCB_FALSE='' XCB_TRUE='' XCMS_FALSE='' XCMS_TRUE='' XDMCP_CFLAGS='' XDMCP_LIBS='' XERRORDB='' XKBPROTO_CFLAGS='' XKBPROTO_LIBS='' XKBPROTO_REQUIRES='' XKB_FALSE='' XKB_TRUE='' XKEYSYMDB='' XLIB_LOADABLE_I18N_FALSE='' XLIB_LOADABLE_I18N_TRUE='' XLOCALEDATADIR='' XLOCALEDIR='' XLOCALELIBDIR='' XLOCALE_FALSE='' XLOCALE_TRUE='' XMALLOC_ZERO_CFLAGS='' XPROTO_CFLAGS='' XPROTO_LIBS='' XTHREADLIB='' XTHREAD_CFLAGS='' XTMALLOC_ZERO_CFLAGS='' ac_ct_CC='' ac_ct_CXX='' ac_ct_F77='' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='' am__fastdepCXX_TRUE='' am__include='' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='i386-portbld-freebsd8.0' build_alias='i386-portbld-freebsd8.0' build_cpu='' build_os='' build_vendor='' datadir='/usr/local/lib' datarootdir='${prefix}/share' distcleancheck_listfiles='' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='NONE' host='' host_alias='' host_cpu='' host_os='' host_vendor='' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/local/info' install_sh='$(SHELL) /usr/ports/x11/libX11/work/libX11-1.2.1/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='/usr/local/man' mkdir_p='$(top_builddir)/./install-sh -c -d' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "libX11" #define PACKAGE_TARNAME "libX11" #define PACKAGE_VERSION "1.2.1" #define PACKAGE_STRING "libX11 1.2.1" #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" #define PACKAGE "libX11" #define VERSION "1.2.1" configure: exit 2 -------------- next part -------------- GeoIP-1.4.6 ORBit2-2.14.17 aalib-1.4.r5_4 adodb-4.99.1 apache-2.2.11_7 aspell-without-dicten-0.60.6_2 asterisk-1.4.24.1_2 atk-1.26.0 autoconf-2.13.000227_6 autoconf-2.62 autoconf-wrapper-20071109 automake-1.10.1 automake-1.4.6_5 automake-1.9.6_3 barnyard-sguil-0.2.0_5 base-1.4.3.1 bash-4.0.24 bdftopcf-1.0.1 bigreqsproto-1.0.2 bison-2.4.1,1 bitstream-vera-1.10_4 boost-jam-1.39.0 boost-libs-1.39.0 ca_root_nss-3.11.9_2 cairo-1.8.8,1 ccache-2.4_9 cclient-2007e,1 cdparanoia-3.9.8_8 cdrtools-2.01_7 cmake-2.6.4 compositeproto-0.4 consolekit-0.3.0_8 courier-authlib-0.62.4 courier-authlib-base-0.62.4 courier-authlib-ldap-0.62.4_2 courier-imap-4.5.1,2 cups-base-1.3.10_2 cups-client-1.3.10_4 cups-image-1.3.10_4 curl-7.19.6_1 cyrus-sasl-2.1.23 damageproto-1.1.0_2 db43-4.3.29_1 dbus-1.2.4.6 dbus-glib-0.82 directfb-1.1.1 dmidecode-2.10 dri2proto-2.0 emacs-22.3 encodings-1.0.2,1 es-aspell-1.1_1,1 expat-2.0.1 fastest_cvsup-0.2.9_6 fetchmail-6.3.11 fixesproto-4.0 flac-1.2.1_1 font-alias-1.0.1 font-bh-ttf-1.0.0 font-misc-ethiopic-1.0.0 font-misc-meltho-1.0.0_1 font-util-1.0.1 fontconfig-2.6.0,1 fontsproto-2.0.2 freetds-0.64_4,1 freetype2-2.3.9_1 gamin-0.1.10_3 gconf2-2.26.2 gettext-0.17_1 ghostscript8-8.64_6 gio-fam-backend-2.20.4 glib-1.2.10_12 glib-2.20.4 global-5.7.5 glproto-1.4.10 gmake-3.81_3 gnome_subr-1.0 gnomehier-2.3_12 gnupg-2.0.12 gnutls-2.8.3 gpac-libgpac-0.4.5_2,1 gperf-3.0.3 gsfonts-8.11_5 gsm-1.0.13 gtk-2.16.5 hal-0.5.11_25 help2man-1.36.4_3 hicolor-icon-theme-0.10_2 horde-base-3.3.3 horde-imp-4.3.3,1 horde-ingo-1.2.1_1,1 horde-kronolith-2.3.1,1 horde-nag-2.3.1_1,1 horde-passwd-3.0.1_3 horde-trean-0.1.b20070316_3 horde-turba-2.3.1_1 icu-3.8.1_2 iksemel-1.3_3 inputproto-1.5.0 intltool-0.40.6 isc-dhcp30-server-3.0.7_5 jasper-1.900.1_8 john-1.7.2_1 jpeg-7 kbproto-1.0.3 lame-3.98.2_1 libGL-7.4.4 libGLU-7.4.4 libICE-1.0.4_1,1 libIDL-0.8.13 libX11-1.2.1_1,1 libXau-1.0.4 libXaw-1.0.5_1,1 libXcomposite-0.4.0,1 libXcursor-1.1.9_1 libXdamage-1.1.1 libXdmcp-1.0.2_1 libXext-1.0.5,1 libXfixes-4.0.3_1 libXfont-1.3.4,1 libXft-2.1.13 libXi-1.2.1,1 libXinerama-1.0.3,1 libXmu-1.0.4,1 libXp-1.0.0,1 libXpm-3.5.7 libXrandr-1.3.0 libXrender-0.9.4_1 libXt-1.0.5_1 libXv-1.0.4,1 libXxf86dga-1.0.2 libXxf86vm-1.0.2 libao-0.8.8_1 libassuan-1.0.5 libcddb-1.3.0 libcdio-0.78.2_2 libcheck-0.9.6 libdca-0.0.5 libdrm-2.4.12 libdv-1.0.0_1 libevent-1.4.12 libexecinfo-1.1_3 libfontenc-1.0.4 libgcrypt-1.4.4 libgpg-error-1.7 libgsf-1.14.15 libiconv-1.13.1 libksba-1.0.7 libltdl-2.2.6a libmad-0.15.1b_2 libmcal-0.7_2 libmcrypt-2.5.8 libmikmod-3.1.11_2 libmpcdec-1.2.6 libogg-1.1.4,4 liboil-0.3.16 libpcap-1.0.0 libpthread-stubs-0.1 libsigc++-2.2.3 libslang2-2.1.4_1 libtheora-1.0_1 libtool-2.2.6a libtorrent-0.12.4 libungif-4.1.4_5 libvolume_id-0.81.1 libvorbis-1.2.3,3 libwmf-0.2.8.4_3 libwww-5.4.0_4 libxcb-1.4 libxml2-2.7.3 libxslt-1.1.24_2 links-2.2,1 linux_base-f8-8_11 lua-5.1.4 lynx-2.8.6.5_5,1 lzo-1.08_2,1 lzo2-2.03_2 m4-1.4.13,1 maildrop-2.2.0 makedepend-1.0.1,1 mbmon-205_5 mediawiki-1.13.5 mhash-0.9.9 mkfontdir-1.0.4 mkfontscale-1.0.6 mpg123-1.6.4_1 mplayer-fonts-0.50 mysql-client-4.1.25 mysql-server-4.1.25 mysqltcl-3.05_1 nasm-2.05.01,1 neon28-0.28.4 net-snmp-5.4.2.1_5 netperf-2.4.5 newt-0.51.0_8 nmap-5.00 noip-2.1.7_2 obexapp-1.4.11 oinkmaster-2.0_1 openh323-1.19.0.1_1 openldap-client-2.3.43 openldap-server-2.3.43 openntpd-4.4,2 openobex-1.4 openssl-0.9.8k_3 openvpn-2.0.6_9 orphans.lst p0f-2.0.8 p5-XML-Parser-2.36_1 p5-gettext-1.05_2 pango-1.24.5 pciids-20090807 pcre-7.9 pear-1.8.1 pear-Auth-1.6.1_1 pear-Auth_SASL-1.0.2 pear-DB-1.7.13,1 pear-Date-1.4.7 pear-Date_Holidays-0.21.2 pear-File-1.3.0,2 pear-HTTP_Request-1.4.4 pear-Image_Canvas-0.3.0_1 pear-Image_Color-1.0.3 pear-Image_Graph-0.7.2 pear-Log-1.11.5 pear-MDB2-2.5.0.b2 pear-MDB2_Schema-0.8.5 pear-Mail-1.2.0.b2 pear-Mail_Mime-1.5.2,2 pear-Mail_mimeDecode-1.5.0 pear-Net_SMTP-1.3.2 pear-Net_Socket-1.0.9 pear-Net_URL-1.0.15 pear-Services_Weather-1.4.4 pear-XML_DTD-0.5.2 pear-XML_Parser-1.3.2 pear-XML_Serializer-0.20.0 pear-XML_Util-1.2.1 pecl-APC-3.0.19 pecl-fileinfo-1.0.4 perl-5.8.9_3 pfflowd-0.7 pftop-0.7_1 pftpx-0.8_6 php5-5.2.10 php5-bz2-5.2.10 php5-calendar-5.2.10 php5-ctype-5.2.10 php5-dom-5.2.10 php5-extensions-1.3 php5-filter-5.2.10 php5-ftp-5.2.10 php5-gd-5.2.10 php5-gettext-5.2.10 php5-hash-5.2.10 php5-iconv-5.2.10 php5-imap-5.2.10 php5-json-5.2.10 php5-ldap-5.2.10 php5-mbstring-5.2.10 php5-mcrypt-5.2.10 php5-mhash-5.2.10 php5-mysql-5.2.10 php5-openssl-5.2.10 php5-pcre-5.2.10 php5-pdo-5.2.10 php5-pdo_mysql-5.2.10 php5-pdo_sqlite-5.2.10 php5-posix-5.2.10 php5-readline-5.2.10 php5-session-5.2.10 php5-simplexml-5.2.10 php5-spl-5.2.10 php5-sqlite-5.2.10 php5-tokenizer-5.2.10 php5-xml-5.2.10 php5-xmlreader-5.2.10 php5-xmlwriter-5.2.10 php5-zlib-5.2.10 phpldapadmin-1.2.0,1 pixman-0.15.4 pkg-config-0.23_1 pkg-orphan-0.1.1 pkgdb.db pkgdb.db.orig pkgdb.fixme png-1.2.38 policykit-0.9_4 popt-1.14 portaudit-0.5.13 portupgrade-2.4.6_3,2 postfix-2.6.3,1 printproto-1.0.4 procmail-3.22_6 pstree-2.32 pth-2.0.7 pwlib-1.12.0_5,1 py25-chardet-1.0.1 py25-dbus-0.83.0_1 py25-feedparser-4.1_2 py25-setuptools-0.6c9 python-2.5,2 python25-2.5.4_2 radiusclient-0.5.6_1 randrproto-1.3.0 renderproto-0.9.3 rpm-3.0.6_14 rtorrent-0.8.4_1 ruby+nopthreads-1.8.7.160_4,1 ruby18-bdb43-0.6.5_1 samba-3.0.36,1 schroedinger-1.0.7_2 sdl-1.2.13_3,2 sguil-sensor-0.7.0_2 sguil-server-0.7.0_3 shared-mime-info-0.60_1 smartmontools-5.38_6 snort-2.8.4.1 speex-1.2.r1_2,1 sqlite-2.8.17_1 sqlite3-3.6.14.2 subversion-1.6.4 svgalib-1.4.3_5 sysconftool-0.15_2 t1lib-5.1.2_1,1 tcl-8.4.19_3,1 tclX-8.4_2 tcllib-1.11 tcltls-1.6_1 tcpflow-0.21_1 tiff-3.8.2_4 unixODBC-2.2.14_1 unrar-3.90.b4,5 unzip-5.52_5 v4l_compat-1.0.20060801 videoproto-2.2.2 vorbis-tools-1.2.0_5,3 webcpp-0.8.4 wget-1.11.4_1 wv-1.2.5 x264-0.0.20081218 xcb-proto-1.5 xcb-util-0.3.5 xcmiscproto-1.1.2 xextproto-7.0.5 xf86bigfontproto-1.1.2 xf86dgaproto-2.0.3 xf86vidmodeproto-2.2.2 xineramaproto-1.1.2 xlhtml-0.5_3,1 xmlrpc-c-devel-1.18.00 xorg-fonts-truetype-7.4 xorg-macros-1.2.1 xproto-7.0.15 xtrans-1.2.3 xvid-1.2.2_1,1 zoneinfo-2009.l From avg at icyb.net.ua Thu Aug 27 16:09:44 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Thu Aug 27 16:09:50 2009 Subject: what driver, etc for ATI Radeon HD 3200 Message-ID: <4A96AFC4.9050701@icyb.net.ua> Robert, guys, what driver/software is the best for ATI Radeon HD 3200? I've a motherboard with AMD 780G northbridge that has integrated Radeon HD 3200. This is how recent head kernel sees it: vgapci0: port 0xee00-0xeeff mem 0xd0000000-0xdfffffff,0xfdfe0000-0xfdfeffff,0xfde00000-0xfdefffff irq 18 at device 5.0 on pci1 drm0: on vgapci0 vgapci0: attempting to allocate 1 MSI vectors (1 supported) vgapci0: using IRQ 256 for MSI info: [drm] MSI enabled 1 message(s) vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xfdfe0000 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] Initialized radeon 1.31.0 20080613 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xd0000000 info: [drm] Setting GART location based on new memory map info: [drm] Loading RS780/RS880 Microcode info: [drm] Resetting GPU info: [drm] writeback test succeeded in 1 usecs drm0: [MPSAFE] drm0: [ITHREAD] I currently use radeon driver from xf86-video-ati-6.12.2_1. Log file is here: http://people.freebsd.org/~avg/ga-ma780g-ud3h/Xorg.0.log Tings work mostly well, but there are some problems. 1. X corrupts screen on exit (VT works perfectly) 2. I've got one random X crash, looks video driver related. (II) RADEON(0): [RESUME] Attempting to re-init Radeon hardware. Fatal server error: Caught signal 11. Server aborting Backtrace: #11 #12 0x00000008017d7adc in ioctl () from /lib/libc.so.7 #13 0x00000008020961e5 in drmDMA () from /usr/local/lib/libdrm.so.2 #14 0x00000008022bb90d in RADEONCPGetBuffer () from /usr/local/lib/xorg/modules/drivers//radeon_drv.so #15 0x000000080231aacb in R600CopyToVRAM () from /usr/local/lib/xorg/modules/drivers//radeon_drv.so #16 0x000000080231ae76 in R600UploadToScreen () from /usr/local/lib/xorg/modules/drivers//radeon_drv.so #17 0x0000000802b28e01 in exaCopyDirty () from /usr/local/lib/xorg/modules//libexa.so #18 0x0000000802b293d7 in exaDoMoveInPixmap () from /usr/local/lib/xorg/modules//libexa.so #19 0x0000000802b29aba in exaDoMigration () from /usr/local/lib/xorg/modules//libexa.so #20 0x0000000802b2c2dd in exaCompositeRects () from /usr/local/lib/xorg/modules//libexa.so #21 0x0000000802b2813e in exaGlyphsToMask () from /usr/local/lib/xorg/modules//libexa.so #22 0x0000000802b2866e in exaGlyphs () from /usr/local/lib/xorg/modules//libexa.so #23 0x0000000000520895 in DamageRegionAppend () #24 0x0000000000517815 in PanoramiXRenderReset () #25 0x000000000044542e in Dispatch () #26 0x000000000042c725 in main () 3. I see this in the log: drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: Searching for BusID pci:0000:01:05.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: drmOpenMinor returns 9 drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0 (EE) AIGLX error: Calling driver entry point failed(EE) AIGLX: reverting to software rendering (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 -- Andriy Gapon From adamk at voicenet.com Thu Aug 27 16:50:36 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Thu Aug 27 16:50:48 2009 Subject: what driver, etc for ATI Radeon HD 3200 In-Reply-To: <4A96AFC4.9050701@icyb.net.ua> References: <4A96AFC4.9050701@icyb.net.ua> Message-ID: <20090827123701.01df9e9b@memory.visualtech.com> Either the radeon or radeonhd driver should work equally well with that GPU (that means 2D acceleration, including EXA and Xv). Obviously the screen corruption and crashes shouldn't happen :-) You could try the radeonhd driver to see if it has the same issues. Robert has committed a number of patches to head recently (in the past five days or so) concerning the radeon DRM. If you are using a version older than that, perhaps try updating? Or, if you are using a version with those changes, you could try rolling them back to the previous version. As for item number 3... The 3D driver for r600/r700 GPUs is in a preliminary state, and isn't included in the version of Mesa available via ports. This is why AIGLX is reverting to software rendering. If you want to try the 3D driver, you would want those latest DRM changes in head, and then you would need to compile Mesa from git. Adam On Thu, 27 Aug 2009 19:09:40 +0300 Andriy Gapon wrote: > > Robert, guys, > > what driver/software is the best for ATI Radeon HD 3200? > I've a motherboard with AMD 780G northbridge that has integrated Radeon HD 3200. > > This is how recent head kernel sees it: > vgapci0: port 0xee00-0xeeff mem > 0xd0000000-0xdfffffff,0xfdfe0000-0xfdfeffff,0xfde00000-0xfdefffff irq 18 at device > 5.0 on pci1 > drm0: on vgapci0 > vgapci0: attempting to allocate 1 MSI vectors (1 supported) > vgapci0: using IRQ 256 for MSI > info: [drm] MSI enabled 1 message(s) > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xfdfe0000 > vgapci0: child drm0 requested pci_enable_busmaster > info: [drm] Initialized radeon 1.31.0 20080613 > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xd0000000 > info: [drm] Setting GART location based on new memory map > info: [drm] Loading RS780/RS880 Microcode > info: [drm] Resetting GPU > info: [drm] writeback test succeeded in 1 usecs > drm0: [MPSAFE] > drm0: [ITHREAD] > > I currently use radeon driver from xf86-video-ati-6.12.2_1. > Log file is here: > http://people.freebsd.org/~avg/ga-ma780g-ud3h/Xorg.0.log > > Tings work mostly well, but there are some problems. > 1. X corrupts screen on exit (VT works perfectly) > > 2. I've got one random X crash, looks video driver related. > (II) RADEON(0): [RESUME] Attempting to re-init Radeon hardware. > > Fatal server error: > Caught signal 11. Server aborting > > Backtrace: > #11 > #12 0x00000008017d7adc in ioctl () from /lib/libc.so.7 > #13 0x00000008020961e5 in drmDMA () from /usr/local/lib/libdrm.so.2 > #14 0x00000008022bb90d in RADEONCPGetBuffer () from > /usr/local/lib/xorg/modules/drivers//radeon_drv.so > #15 0x000000080231aacb in R600CopyToVRAM () from > /usr/local/lib/xorg/modules/drivers//radeon_drv.so > #16 0x000000080231ae76 in R600UploadToScreen () from > /usr/local/lib/xorg/modules/drivers//radeon_drv.so > #17 0x0000000802b28e01 in exaCopyDirty () from /usr/local/lib/xorg/modules//libexa.so > #18 0x0000000802b293d7 in exaDoMoveInPixmap () from > /usr/local/lib/xorg/modules//libexa.so > #19 0x0000000802b29aba in exaDoMigration () from > /usr/local/lib/xorg/modules//libexa.so > #20 0x0000000802b2c2dd in exaCompositeRects () from > /usr/local/lib/xorg/modules//libexa.so > #21 0x0000000802b2813e in exaGlyphsToMask () from > /usr/local/lib/xorg/modules//libexa.so > #22 0x0000000802b2866e in exaGlyphs () from /usr/local/lib/xorg/modules//libexa.so > #23 0x0000000000520895 in DamageRegionAppend () > #24 0x0000000000517815 in PanoramiXRenderReset () > #25 0x000000000044542e in Dispatch () > #26 0x000000000042c725 in main () > > > 3. I see this in the log: > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 9, (OK) > drmOpenByBusid: Searching for BusID pci:0000:01:05.0 > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 9, (OK) > drmOpenByBusid: drmOpenMinor returns 9 > drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0 > (EE) AIGLX error: Calling driver entry point failed(EE) AIGLX: reverting to > software rendering > (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so > (II) GLX: Initialized DRISWRAST GL provider for screen 0 > > -- > Andriy Gapon > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > From rsmith at xs4all.nl Thu Aug 27 16:54:42 2009 From: rsmith at xs4all.nl (Roland Smith) Date: Thu Aug 27 16:54:49 2009 Subject: what driver, etc for ATI Radeon HD 3200 In-Reply-To: <4A96AFC4.9050701@icyb.net.ua> References: <4A96AFC4.9050701@icyb.net.ua> Message-ID: <20090827164224.GA59319@slackbox.xs4all.nl> On Thu, Aug 27, 2009 at 07:09:40PM +0300, Andriy Gapon wrote: > > Robert, guys, > > what driver/software is the best for ATI Radeon HD 3200? > I've a motherboard with AMD 780G northbridge that has integrated Radeon HD 3200. Both xf86-video-ati and xf86-video-radeonhd should work, though the latter might work a bit better. It looks like your kernel is recent enough; it loads the DRM code. But AFAIK, 3D support for the R7XX chips (like the HD 3200, an RS780) is still in development... > This is how recent head kernel sees it: > vgapci0: port 0xee00-0xeeff mem > 0xd0000000-0xdfffffff,0xfdfe0000-0xfdfeffff,0xfde00000-0xfdefffff irq 18 at device > 5.0 on pci1 > drm0: on vgapci0 > vgapci0: attempting to allocate 1 MSI vectors (1 supported) > vgapci0: using IRQ 256 for MSI > info: [drm] MSI enabled 1 message(s) > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xfdfe0000 > vgapci0: child drm0 requested pci_enable_busmaster > info: [drm] Initialized radeon 1.31.0 20080613 > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xd0000000 > info: [drm] Setting GART location based on new memory map > info: [drm] Loading RS780/RS880 Microcode > info: [drm] Resetting GPU > info: [drm] writeback test succeeded in 1 usecs > drm0: [MPSAFE] > drm0: [ITHREAD] > > I currently use radeon driver from xf86-video-ati-6.12.2_1. > Log file is here: > http://people.freebsd.org/~avg/ga-ma780g-ud3h/Xorg.0.log You seem to be using AIGLX. That could be part of the problem. Try disabling it. Or try using XAA accelleration instead of EXA. (Option "AccelMethod" "xaa" ) Roland -- R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090827/c710585e/attachment.pgp From paul.postin at freecom.net Thu Aug 27 15:40:24 2009 From: paul.postin at freecom.net (Paul Postin (Freecom.net)) Date: Thu Aug 27 17:05:34 2009 Subject: libX11 Error Message-ID: <002901ca272a$ffef8f40$ffceadc0$@postin@freecom.net> Dear Sir/Madam, Please find details of an error I am receiving when trying to install the libX11 port. ./configure.lineno: 2766: Syntax error: word unexpected (expecting ")") ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/x11/libX11/work/libX11-1.2.1/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/x11/libX11. *** Error code 1 Please could you provide a course of action? Kind Regards, Paul -------------- next part -------------- A non-text attachment was scrubbed... Name: config.log Type: application/octet-stream Size: 7660 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090827/e909f762/config.obj -------------- next part -------------- apache-1.3.41_1 libgcrypt-1.4.4 php5-dom-5.2.10 apache-soap-2.3.1 libgpg-error-1.7 php5-filter-5.2.10 atk-1.11.4_1 libiconv-1.9.2_1 php5-gd-5.1.4 autoconf-2.62 libpthread-stubs-0.1 php5-iconv-5.1.4 autoconf-wrapper-20071109 libsigsegv-2.5 php5-mssql-5.1.4 automake-1.10.1 libtool-1.5.10_1 php5-mysql-5.1.4 automake-wrapper-20071109 libtool-1.5.22_2 php5-odbc-5.1.4 bash-4.0.24 libtool-2.2.6a php5-openssl-5.1.4 bigreqsproto-1.0.2 libxcb-1.4 php5-pcre-5.1.4 bison-1.75_2,1 libxml2-2.7.3_1 php5-pcre-5.2.10 bitstream-vera-1.10_2 libxslt-1.1.24_2 php5-posix-5.1.4 bsdpan-CGI-QuickForm-1.93 lynx-ssl-2.8.5 php5-session-5.1.4 bsdpan-DBD-mysql-4.007 m4-1.4.3 php5-simplexml-5.1.4 bsdpan-DBI-1.604 mod_dtcl-0.12.0 php5-simplexml-5.2.10 bsdpan-File-Cache-0.16 mod_gzip-1.3.26.1a php5-soap-5.1.4 bsdpan-MD5-2.03 mod_perl-1.29_1 php5-spl-5.2.10 bsdpan-Net-DNS-0.61 mozilla-1.7.13,2 php5-sqlite-5.1.4 bsdpan-Net-IP-1.25 mysql-client-5.0.24 php5-tokenizer-5.1.4 bsdpan-Syntax-Highlight-Engine-Kate-0.04 nspr-4.6.1_2 php5-xml-5.1.4 cairo-1.0.4_1 nss-3.11.1 php5-xmlreader-5.1.4 cups-base-1.1.23.0_4 ntp-4.2.0_1 php5-xmlwriter-5.1.4 cvsup-without-gui-16.1h_2 open-motif-2.2.3_2 php5-zlib-5.1.4 desktop-file-utils-0.11 openldap-client-2.2.27 pico-4.64 diablo-jdk-1.5.0.07.00 p5-Authen-SASL-2.10_1 pkg-config-0.23_1 expat-1.95.8_3 p5-Compress-Zlib-1.42 pkg_install-20060113 expat-2.0.0_1 p5-Digest-1.15 pkgconfig-0.17.2 ezm3-1.2 p5-Digest-HMAC-1.01 png-1.2.8_2 fontconfig-2.3.2_5,1 p5-Digest-MD5-2.36 popt-1.7 freetds-msdblib-0.63_1 p5-Digest-SHA1-2.11 python-2.4.3 freetype2-2.1.10_3 p5-GSSAPI-0.22 python26-2.6.2_2 gettext-0.14.1 p5-HTML-Parser-3.55 samba-3.0.14a_1,1 glib-2.10.3 p5-HTML-Tagset-3.10 shared-mime-info-0.18 gmake-3.80_2 p5-MIME-Base64-3.07 t1lib-5.1.0_1,1 gnutls-1.0.24_1 p5-Net-1.19,1 tcl-8.3.5_5 gtk-2.8.20 p5-SOAP-0.28 texinfo-4.11 help2man-1.35.1 p5-Test-Harness-2.62 tiff-3.7.3 hicolor-icon-theme-0.5 p5-Test-Simple-0.64 unixODBC-2.2.11_1 imake-6.9.0 p5-URI-1.35 unzip-5.52_2 inputproto-1.5.0 p5-XML-Parser-2.34_2 xcb-proto-1.5 intltool-0.35.0 p5-gettext-1.03 xcmiscproto-1.1.2 ispell-3.2.06_15 p5-libwww-5.805 xextproto-7.0.5 jaf-1.0.2_3 pango-1.12.3 xf86bigfontproto-1.1.2 javamail-1.3.3 pcre-7.9 xorg-clients-6.9.0_3 javavmwrapper-2.3 pecl-PDO-1.0.3 xorg-fonts-encodings-6.9.0_1 jpeg-6b_3 pecl-zip-1.5.0 xorg-fonts-truetype-6.9.0 kbproto-1.0.3 perl-5.8.6_2 xorg-libraries-6.9.0 ldconfig_compat-1.0_8 perl-5.8.8 xorg-macros-1.2.1 libIDL-0.8.7 php5-5.2.10 xproto-7.0.15 libXau-1.0.4 php5-bz2-5.1.4 xterm-216 libXdmcp-1.0.2_1 php5-bz2-5.2.10 xtrans-1.2.3 libXft-2.1.7_1 php5-ctype-5.1.4 zip-2.32 libcheck-0.9.6 php5-ctype-5.2.10 libdrm-2.0.2 php5-dom-5.1.4 From kstewart at owt.com Thu Aug 27 17:36:00 2009 From: kstewart at owt.com (Kent Stewart) Date: Thu Aug 27 17:36:12 2009 Subject: libX11 Error In-Reply-To: <002901ca272a$ffef8f40$ffceadc0$@postin@freecom.net> References: <002901ca272a$ffef8f40$ffceadc0$@postin@freecom.net> Message-ID: <200908271035.55602.kstewart@owt.com> On Thursday 27 August 2009 08:28:16 am Paul Postin (Freecom.net) wrote: > Dear Sir/Madam, > > > > Please find details of an error I am receiving when trying to install the > libX11 port. > > > > > > > > ./configure.lineno: 2766: Syntax error: word unexpected (expecting ")") > > ===> Script "configure" failed unexpectedly. > > Please report the problem to x11@FreeBSD.org [maintainer] and attach the > > "/usr/ports/x11/libX11/work/libX11-1.2.1/config.log" including the output > of > > the failure of your make command. Also, it might be a good idea to provide > > an overview of all packages installed on your system (e.g. an `ls > > /var/db/pkg`). > > *** Error code 1 > > > > Stop in /usr/ports/x11/libX11. > > *** Error code 1 > > > > > > Please could you provide a course of action? > Upgrade to a version of FreeBSD that is still supported. Port support for 5.4-release was eliminated months ago. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From kstewart at owt.com Thu Aug 27 17:36:00 2009 From: kstewart at owt.com (Kent Stewart) Date: Thu Aug 27 17:36:13 2009 Subject: libX11 Error In-Reply-To: <002901ca272a$ffef8f40$ffceadc0$@postin@freecom.net> References: <002901ca272a$ffef8f40$ffceadc0$@postin@freecom.net> Message-ID: <200908271035.55602.kstewart@owt.com> On Thursday 27 August 2009 08:28:16 am Paul Postin (Freecom.net) wrote: > Dear Sir/Madam, > > > > Please find details of an error I am receiving when trying to install the > libX11 port. > > > > > > > > ./configure.lineno: 2766: Syntax error: word unexpected (expecting ")") > > ===> Script "configure" failed unexpectedly. > > Please report the problem to x11@FreeBSD.org [maintainer] and attach the > > "/usr/ports/x11/libX11/work/libX11-1.2.1/config.log" including the output > of > > the failure of your make command. Also, it might be a good idea to provide > > an overview of all packages installed on your system (e.g. an `ls > > /var/db/pkg`). > > *** Error code 1 > > > > Stop in /usr/ports/x11/libX11. > > *** Error code 1 > > > > > > Please could you provide a course of action? > Upgrade to a version of FreeBSD that is still supported. Port support for 5.4-release was eliminated months ago. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From rnoland at FreeBSD.org Sat Aug 29 16:41:59 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Aug 29 16:42:06 2009 Subject: what driver, etc for ATI Radeon HD 3200 In-Reply-To: <4A96AFC4.9050701@icyb.net.ua> References: <4A96AFC4.9050701@icyb.net.ua> Message-ID: <1251564110.91838.46.camel@balrog.2hip.net> On Thu, 2009-08-27 at 19:09 +0300, Andriy Gapon wrote: > Robert, guys, > > what driver/software is the best for ATI Radeon HD 3200? > I've a motherboard with AMD 780G northbridge that has integrated Radeon HD 3200. I pretty much use xf86-video-ati for everything, unless I need to get the hdmi audio working. In that case I use radeonhd with the Audio option. > This is how recent head kernel sees it: > vgapci0: port 0xee00-0xeeff mem > 0xd0000000-0xdfffffff,0xfdfe0000-0xfdfeffff,0xfde00000-0xfdefffff irq 18 at device > 5.0 on pci1 > drm0: on vgapci0 > vgapci0: attempting to allocate 1 MSI vectors (1 supported) > vgapci0: using IRQ 256 for MSI > info: [drm] MSI enabled 1 message(s) > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xfdfe0000 > vgapci0: child drm0 requested pci_enable_busmaster > info: [drm] Initialized radeon 1.31.0 20080613 > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xd0000000 > info: [drm] Setting GART location based on new memory map > info: [drm] Loading RS780/RS880 Microcode > info: [drm] Resetting GPU > info: [drm] writeback test succeeded in 1 usecs > drm0: [MPSAFE] > drm0: [ITHREAD] > > I currently use radeon driver from xf86-video-ati-6.12.2_1. > Log file is here: > http://people.freebsd.org/~avg/ga-ma780g-ud3h/Xorg.0.log > > Tings work mostly well, but there are some problems. > 1. X corrupts screen on exit (VT works perfectly) > > 2. I've got one random X crash, looks video driver related. > (II) RADEON(0): [RESUME] Attempting to re-init Radeon hardware. > > Fatal server error: > Caught signal 11. Server aborting > > Backtrace: > #11 > #12 0x00000008017d7adc in ioctl () from /lib/libc.so.7 > #13 0x00000008020961e5 in drmDMA () from /usr/local/lib/libdrm.so.2 > #14 0x00000008022bb90d in RADEONCPGetBuffer () from > /usr/local/lib/xorg/modules/drivers//radeon_drv.so > #15 0x000000080231aacb in R600CopyToVRAM () from > /usr/local/lib/xorg/modules/drivers//radeon_drv.so > #16 0x000000080231ae76 in R600UploadToScreen () from > /usr/local/lib/xorg/modules/drivers//radeon_drv.so > #17 0x0000000802b28e01 in exaCopyDirty () from /usr/local/lib/xorg/modules//libexa.so > #18 0x0000000802b293d7 in exaDoMoveInPixmap () from > /usr/local/lib/xorg/modules//libexa.so > #19 0x0000000802b29aba in exaDoMigration () from > /usr/local/lib/xorg/modules//libexa.so > #20 0x0000000802b2c2dd in exaCompositeRects () from > /usr/local/lib/xorg/modules//libexa.so > #21 0x0000000802b2813e in exaGlyphsToMask () from > /usr/local/lib/xorg/modules//libexa.so > #22 0x0000000802b2866e in exaGlyphs () from /usr/local/lib/xorg/modules//libexa.so > #23 0x0000000000520895 in DamageRegionAppend () > #24 0x0000000000517815 in PanoramiXRenderReset () > #25 0x000000000044542e in Dispatch () > #26 0x000000000042c725 in main () > > > 3. I see this in the log: > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 9, (OK) > drmOpenByBusid: Searching for BusID pci:0000:01:05.0 > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 9, (OK) > drmOpenByBusid: drmOpenMinor returns 9 > drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0 > (EE) AIGLX error: Calling driver entry point failed(EE) AIGLX: reverting to > software rendering > (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so > (II) GLX: Initialized DRISWRAST GL provider for screen 0 It looks like the driver is asking to load r600_dri.so which isn't released yet, so it is reverting to software, which is the correct behavior. 3d support is coming along nicely though, so if you want to play with mesa from git it should mostly work. robert. -- Robert Noland FreeBSD From rnoland at FreeBSD.org Sat Aug 29 20:27:28 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Aug 29 20:28:01 2009 Subject: what driver, etc for ATI Radeon HD 3200 In-Reply-To: <20090827164224.GA59319@slackbox.xs4all.nl> References: <4A96AFC4.9050701@icyb.net.ua> <20090827164224.GA59319@slackbox.xs4all.nl> Message-ID: <1251577640.1689.46.camel@balrog.2hip.net> On Thu, 2009-08-27 at 18:42 +0200, Roland Smith wrote: > On Thu, Aug 27, 2009 at 07:09:40PM +0300, Andriy Gapon wrote: > > > > Robert, guys, > > > > what driver/software is the best for ATI Radeon HD 3200? > > I've a motherboard with AMD 780G northbridge that has integrated Radeon HD 3200. > > Both xf86-video-ati and xf86-video-radeonhd should work, though the latter > might work a bit better. It looks like your kernel is recent enough; it loads > the DRM code. > > But AFAIK, 3D support for the R7XX chips (like the HD 3200, an RS780) is still > in development... > > > This is how recent head kernel sees it: > > vgapci0: port 0xee00-0xeeff mem > > 0xd0000000-0xdfffffff,0xfdfe0000-0xfdfeffff,0xfde00000-0xfdefffff irq 18 at device > > 5.0 on pci1 > > drm0: on vgapci0 > > vgapci0: attempting to allocate 1 MSI vectors (1 supported) > > vgapci0: using IRQ 256 for MSI > > info: [drm] MSI enabled 1 message(s) > > vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xfdfe0000 > > vgapci0: child drm0 requested pci_enable_busmaster > > info: [drm] Initialized radeon 1.31.0 20080613 > > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > > vgapci0: Reserved 0x10000000 bytes for rid 0x10 type 3 at 0xd0000000 > > info: [drm] Setting GART location based on new memory map > > info: [drm] Loading RS780/RS880 Microcode > > info: [drm] Resetting GPU > > info: [drm] writeback test succeeded in 1 usecs > > drm0: [MPSAFE] > > drm0: [ITHREAD] > > > > I currently use radeon driver from xf86-video-ati-6.12.2_1. > > Log file is here: > > http://people.freebsd.org/~avg/ga-ma780g-ud3h/Xorg.0.log > > You seem to be using AIGLX. That could be part of the problem. Try disabling > it. > > Or try using XAA accelleration instead of EXA. > (Option "AccelMethod" "xaa" ) XAA is almost certainly broken, expecially on r600+ chips. robert. > Roland -- Robert Noland FreeBSD From bugmaster at FreeBSD.org Mon Aug 31 11:07:20 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Aug 31 11:10:02 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200908311107.n7VB7JCT070768@freefall.freebsd.org> 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 ports/137748 x11 x11/xorg: "unprocessed" mouse click results in effecti o ports/137731 x11 [patch] x11-drivers/xf86-input-vmmouse o ports/137373 x11 x11/libX11: make dependance on x11/libxcb o ports/135276 x11 x11/xorg: GUI running first time only while using Free o ports/134643 x11 [patch] x11-servers/xorg-server - Unbreak Xorg 7.4 ser o ports/134244 x11 x11/xorg: "intel" driver for Xorg is very broken o ports/134132 x11 x11-servers/xorg-server: Intel i845 - xorg.conf with U o ports/134082 x11 x11/xdriinfo: xdriinfo-1.0.2 build fail o ports/133946 x11 x11-servers/xorg-server [patch] X crashes in xinerama o ports/133609 x11 x11/xorg crashes with vlc, intel video driver o ports/133482 x11 x11/libXext "Generic Event Extension not available" er o ports/133465 x11 x11/xorg: X crashes with mplayer -vo xv with xf86-vide o ports/133419 x11 Unable to build x11-drivers/xf86-video-nsc o ports/133175 x11 [patch] x11/pixman: enable SSE2 support autodetection o ports/132621 x11 x11/xorg tries to install event when deselected o ports/132403 x11 x11/xorg with Radeon X600 (R370): cannot re-initialize o ports/132100 x11 x11/xorg: Xorg server forgets pointer map after xlock o ports/132041 x11 x11/xorg: Broken Intel video driver o ports/131930 x11 [PATCH] x11-servers/xorg-server coredumps on exit o ports/131726 x11 x11-servers/xorg-server: xorg server messes with my eh o ports/131696 x11 x11-servers/xorg-server: hald core dumps make X11 unus o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! s kern/130478 x11 [request] Port Linux kernel stub of nouveau to FreeBSD f ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts f ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() s ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke 29 problems total.