Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 23703 - links-2.1_pre11 fails to build on non-X system
Summary: links-2.1_pre11 fails to build on non-X system
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Seemant Kulleen (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-29 08:48 UTC by Paul Slinski
Modified: 2003-09-09 02:35 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Slinski 2003-06-29 08:48:17 UTC
Upgrading links2 results in config error:
configure: error: No graphics drivers found.

Reproducible: Always
Steps to Reproduce:
1. emerge -u links
2.
3.

Actual Results:  
[ edited ]
checking for gui/view.h... no
checking for gui/window.h... no
checking for gui/desktop.h... no
checking for gui/bitmap.h... no
checking for util/locker.h... no
checking for util/application.h... no
configure: error: No graphics drivers found.

!!! ERROR: net-www/links-2.1_pre11 failed.
!!! Function econf, Line 304, Exitcode 1
!!! econf failed
[ end ]


Portage 2.0.48-r1 (default-x86-1.4, gcc-3.2.3, glibc-2.3.2-r1)
=================================================================
System uname: 2.4.20-xfs-r3 i686 Pentium III (Coppermine)
GENTOO_MIRRORS="ftp://ftp.ussg.iu.edu/pub/linux/gentoo http://adelie.polymtl.ca/
ftp://cs.ubishops.ca/pub/gentoo"
CONFIG_PROTECT="/etc /var/qmail/control /usr/share/config
/usr/kde/2/share/config /usr/kde/3/share/config"
CONFIG_PROTECT_MASK="/etc/gconf /etc/env.d"
PORTDIR="/usr/portage"
DISTDIR="/usr/portage/distfiles"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR_OVERLAY=""
USE="x86 crypt encode gif jpeg libg++ mmx mpeg ncurses pdflib png spell truetype
xml2 zlib gdbm berkdb slang readline tcpd pam libwww ssl python oggvorbis -3dnow
apache2 -apm -arts -avi -cups curl dvb gd -gnome -gpm -gtk imap -imlib innodb
ipv6 -java -kde lcms mbox -mikmod -motif mysql nas -nls oav -opengl -oss perl
-qt -quicktime samba -sdl socks5 sse -svga tiff wmf -X -xmms -xv -snmp fbcon pic"
COMPILER="gcc3"
CHOST="i686-pc-linux-gnu"
CFLAGS="-march=pentium3 -O3 -pipe"
CXXFLAGS="-march=pentium3 -O3 -pipe"
ACCEPT_KEYWORDS="x86 ~x86"
MAKEOPTS="-j2"
AUTOCLEAN="yes"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
FEATURES="sandbox ccache fixpackages"
Comment 1 Brandy Westcott (RETIRED) gentoo-dev 2003-09-06 20:27:03 UTC
The configure script is exiting since the "drivers" variable has not been set: 
 
	if test -z "$drivers" && test "$cf_use_graphics" = yes; then 
		{ echo "configure: error: No graphics drivers found." 1>&2; exit 1; } 
	fi 
 
With the bug reporters USE flags, the driver variable will only get set to "FB" 
if the following header files are present (and directfb is not installed): 
 
	/usr/include/linux/fb.h 
	/usr/include/linux/kd.h 
	/usr/include/linux/vt.h 
	/usr/include/sys/mman.h 
	/usr/include/sys/ioctl.h 
	/usr/include/gpm.h 
 
So it looks like sys-libs/gpm needs to be an added dependency for fbcon: 
 
	fbcon? ( >=media-libs/libpng-1.2.1 sys-libs/gpm )" 
 
With this addition links compiles fine when only the framebuffer gui is desired. 
Comment 2 Seemant Kulleen (RETIRED) gentoo-dev 2003-09-09 02:35:39 UTC
sorry for the delay on this.

thanks Brandy, for getting me off my butt