Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 128177 - emacs-cvs-22.0.50-r2 with -Xaw3d -gtk does not use X scroll bars
Summary: emacs-cvs-22.0.50-r2 with -Xaw3d -gtk does not use X scroll bars
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Low minor (vote)
Assignee: Emacs project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-30 15:12 UTC by Sebastian Schubert
Modified: 2006-03-30 15:19 UTC (History)
0 users

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 Sebastian Schubert 2006-03-30 15:12:16 UTC
The problem is the configure call:
./configure --prefix=/usr --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --enable-debug --program-suffix=.emacs-22.0.50 --without-carbon --with-x --with-xpm --with-toolkit-scroll-bars --with-jpeg --with-tiff --with-gif --with-png --without-toolkit-scroll-bars --without-gtk --with-x-toolkit=lucid --build=i686-pc-linux-gnu

So there is a contradicting option concerning the x tool bars. It is due these lines in the ebuild:
if use X; then
                myconf="${myconf} --with-x"
                myconf="${myconf} --with-xpm --with-toolkit-scroll-bars"
                myconf="${myconf} $(use_with jpeg) $(use_with tiff)"
                myconf="${myconf} $(use_with gif) $(use_with png)"
                if use gtk; then
                        einfo "Configuring to build with GTK support"
                        myconf="${myconf} --with-x-toolkit=gtk"
                else
                        einfo "Configuring to build with lucid toolkit support"
                        myconf="${myconf} $(use_with Xaw3d toolkit-scroll-bars)"
                        myconf="${myconf} --without-gtk"
                        myconf="${myconf} --with-x-toolkit=lucid"
                fi

Though X is in the USE variabel, the scrollbars are deactivated when -gtk and -Xaw3d.
Comment 1 Emanuele Giaquinta (RETIRED) gentoo-dev 2006-03-30 15:15:59 UTC
It is correct, scroll-bars are enabled only when using the gtk interface or Xaw3d.
Comment 2 Jakub Moc (RETIRED) gentoo-dev 2006-03-30 15:19:50 UTC
Not a bug, closing.