LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-19-2009, 08:49 AM   #1
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
Cannot build extreme tuxracer Slackware64


The build fails when configure can't find tclConfig.sh. This is not on my system, and seems to be part of tcl-dev. I can't seem to find a package or source code for a tcl8.5-dev. I have googled till my eyes hurt.
 
Old 06-19-2009, 11:03 AM   #2
vinegaroon
Member
 
Registered: Sep 2008
Posts: 99

Rep: Reputation: 21
That file is part of tcl, install the tcl package or the t series.
 
Old 06-19-2009, 02:14 PM   #3
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
It is installed. This is a full install of Slackware64. But I am going to re-install the t series again anyway. There always could be a defect.
 
Old 06-19-2009, 09:47 PM   #4
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
That didn't work, and looking at the package in mc shows that tclConfig.sh is not there. It's not that big a deal.
 
Old 06-20-2009, 01:52 AM   #5
rg3
Member
 
Registered: Jul 2007
Distribution: Fedora
Posts: 527

Rep: Reputation: Disabled
At least in 32 bits -current, the file is indeed part of the tcl package:

Code:
# slackroll local-search tclConfig
Reading contents of /var/log/packages ...
Matching files:
    tcl-8.5.7-i486-1
        /usr/lib/tclConfig.sh

End of list
As you can see, it's in /usr/lib, though.

Edit: I went further and downloaded the tcl package for Slackware64, and the file is also present, in /usr/lib64.

Last edited by rg3; 06-20-2009 at 01:55 AM.
 
Old 06-20-2009, 07:42 AM   #6
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
It's actually quite simple

The ./configure script gives the solution:
Quote:
error: tclConfig.sh not found - use the --with-tcl option
So use:
Code:
./configure --with-tcl=/usr/lib64
(and any other options you prefer...)

I just compiled it on my Slackware64-current and am dizzy from flying

The error is in the "configure.ac" file from upstream - they do not search for tclConfig.sh in the 64-bit library folder.
 
Old 06-20-2009, 10:16 AM   #7
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
Thanks - I will try that later!
 
Old 06-20-2009, 01:44 PM   #8
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
Well, it compiled, installed, then I heard the music, but nothing on the display except input not supported. On to google.
 
Old 06-20-2009, 03:53 PM   #9
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
uhm, ok... that's a different kind of problem.
Here it worked from the start.

Do you have any special input device that may make it complain? I just have a standard keyboard (ps/2) + mouse (usb) here.
 
Old 06-20-2009, 04:26 PM   #10
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
The same input for me, but I believe its related to the monitor and/or the nvidia driver. My monitor is a widescreen 1440x900 @ 70 mhz. I'm betting the problem is in there somewhere.

I'm at work now until 4:00 am CST. I will try again tomorrow.

Maybe the new xorg as well?

Last edited by mlangdn; 06-20-2009 at 04:27 PM. Reason: Typos
 
Old 06-20-2009, 04:36 PM   #11
adriv
Member
 
Registered: Nov 2005
Location: Diessen, The Netherlands
Distribution: Slackware 15
Posts: 700

Rep: Reputation: 43
Quote:
Originally Posted by mlangdn View Post
The same input for me, but I believe its related to the monitor and/or the nvidia driver. My monitor is a widescreen 1440x900 @ 70 mhz. I'm betting the problem is in there somewhere.

I'm at work now until 4:00 am CST. I will try again tomorrow.

Maybe the new xorg as well?
I recognize this (not on 64-bit, but on an earlier version of etracer).
It has to do with the default screensize. Change the settings in the etracer file in your /home/ and you'll be fine.

Edit/Update:
Installed etracer, checked (I've got a 1440x900 monitor as well) it and indeed, the default settings cause trouble. Modify ~/.etracer/options like this:
Code:
# x_resolution
#
# The horizontal size of the Tux Racer window
#
set x_resolution 1440

# y_resolution
#
# The vertical size of the Tux Racer window
#
set y_resolution 900

Last edited by adriv; 06-20-2009 at 04:54 PM.
 
Old 06-20-2009, 06:49 PM   #12
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
Thanks adriv! I'll try that in the morning. Kinda figured that may be the problem. That's the problem with work - not enough time for Slack(ing).
 
Old 06-21-2009, 04:42 AM   #13
mlangdn
Senior Member
 
Registered: Mar 2005
Location: Kentucky
Distribution: Slackware64-current
Posts: 1,845

Original Poster
Rep: Reputation: 452Reputation: 452Reputation: 452Reputation: 452Reputation: 452
That worked! Edited and running. Its more difficult than the original tuxracer and a lot of fun.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Slackware64 and Kpackage InF3sted Slackware 11 06-10-2009 11:03 AM
Slackware64...Where? cwwilson721 Slackware 16 05-28-2009 08:21 AM
Slackware64 and autox264 simonb1975uk Slackware 1 05-26-2009 08:02 AM
snd_hda_intel + waikiki chip + hp dv8230 us = extreme extreme frustration mlfarrell Linux - Hardware 4 11-18-2007 10:19 PM
LXer: Build 'em Right, Build 'em Strong, Build 'em Linux LXer Syndicated Linux News 0 10-01-2007 09:51 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 03:34 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration