LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-12-2004, 09:35 PM   #1
jon1101
LQ Newbie
 
Registered: Aug 2004
Location: Evansville, IN
Distribution: SUSE 9.1
Posts: 4

Rep: Reputation: 0
Installing imwheel


I've been working on getting my Logitech MX500 to work properly in Linux. I've been going by a guide that told me to uninstall imwheel 0.9.5 in favor of 1.0.0pre11 I've downloaded imwheel 1.0.0pre11.tar.gz and extracted it into /root/tmp/imwheel-1.0.0pre11/. In the terminal, I cd into the directory, type ./configure and get the following:

linux:~/tmp/imwheel-1.0.0pre11 # ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... none
checking dependency style of gcc... none
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking whether make sets $(MAKE)... (cached) no
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/wait.h that is POSIX.1 compatible... 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 fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking for an ANSI C-conforming const... yes
checking for pid_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking return type of signal handlers... void
checking for vprintf... yes
checking for _doprnt... no
checking for gettimeofday... yes
checking for regcomp... yes
checking for strdup... yes
checking for strtol... yes
checking for getopt_long_only... yes
checking that regex functions are available... yes
checking where the pid file goes... /tmp
checking if we suid imwheel at install... no
checking if we use the included getopts... no
checking if we build mdetect... no
checking if we build mdump... no
checking if we build extras... no
checking for gpm-1.19.3/gpm.c... no
checking if we build gpm-imwheel... no
checking for X... no
checking if we want to check for XFree86... yes
checking for X... X
checking if X is XFree86... yes
checking for XCreateWindow in -lX11... no
configure: error: IMWheel depends on the X11 libraries!
linux:~/tmp/imwheel-1.0.0pre11 #


So far, I can't get any further than this. I've browsed through YaST to see if I forgot to install anything that looks like an X11 library, but I'm not sure what to look for. In YaST, everything under >Package Groups>System>Libraries is installed. I don't know where to go from here. I would greatly appreciate some help.

-Jon
 
Old 08-12-2004, 10:02 PM   #2
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
You need the X developement libraries which in Debian is a pseudo package which provides a bunch of different libs those are what you should be searching for the package names in Debian below perhaps the file names are similar in SuSE.

Code:
>$ apt-cache depends xlibs-dev
xlibs-dev
  Depends: libice-dev
  Depends: libsm-dev
  Depends: libx11-dev
  Depends: libxext-dev
  Depends: libxi-dev
  Depends: libxmu-dev
  Depends: libxmuu-dev
  Depends: libxp-dev
  Depends: libxpm-dev
  Depends: libxrandr-dev
  Depends: libxt-dev
  Depends: libxtrap-dev
  Depends: libxtst-dev
  Depends: libxv-dev
  Depends: pm-dev
  Depends: x-dev
  Depends: xlibs-static-dev
BTW you should not be compiling as root you can use the ./configure and make as normal user then when you go to install use su -c 'make install' and type in the root password then the files will be installed.
 
Old 08-12-2004, 10:49 PM   #3
jon1101
LQ Newbie
 
Registered: Aug 2004
Location: Evansville, IN
Distribution: SUSE 9.1
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by HappyTux
You need the X developement libraries which in Debian is a pseudo package which provides a bunch of different libs those are what you should be searching for the package names in Debian below perhaps the file names are similar in SuSE.

Code:
>$ apt-cache depends xlibs-dev
xlibs-dev
  Depends: libice-dev
  Depends: libsm-dev
  Depends: libx11-dev
  Depends: libxext-dev
  Depends: libxi-dev
  Depends: libxmu-dev
  Depends: libxmuu-dev
  Depends: libxp-dev
  Depends: libxpm-dev
  Depends: libxrandr-dev
  Depends: libxt-dev
  Depends: libxtrap-dev
  Depends: libxtst-dev
  Depends: libxv-dev
  Depends: pm-dev
  Depends: x-dev
  Depends: xlibs-static-dev
In YaST I've installed every package in >Package Groups>Development and in >Package Groups>Libraries. I also looked at an alphabetical listing of packages and I've installed everything that looks similar to those at all. I also did a search and I've installed everything with either "lib" or "dev" in the name or summary. Do you know of any other place where I could search for these packages for SuSE?

Quote:
BTW you should not be compiling as root you can use the ./configure and make as normal user then when you go to install use su -c 'make install' and type in the root password then the files will be installed.
Thanks. I'll keep that in mind.

-Jon
 
Old 08-12-2004, 11:37 PM   #4
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by jon1101
In YaST I've installed every package in >Package Groups>Development and in >Package Groups>Libraries. I also looked at an alphabetical listing of packages and I've installed everything that looks similar to those at all. I also did a search and I've installed everything with either "lib" or "dev" in the name or summary. Do you know of any other place where I could search for these packages for SuSE?
Not really I have never used SuSE so I have no clue where to look. It seems like your looking in the right place with the developement in the package groups though. Is there nothing in there for X developement at all? I think you may want to start a new thread on installing the X developement libs I was going to suggest in the SuSE forum here but checked and apparently there is none.
 
Old 09-23-2004, 04:43 PM   #5
STuPiDiCuS
Member
 
Registered: Jun 2004
Location: Springville, Utah
Distribution: SuSE 9.1/9.2/9.3 Pro, OpenSuSE 10.0, 10.1, Currently 10.2 32&64 bit
Posts: 101
Blog Entries: 1

Rep: Reputation: 15
OK I found it!!! Go into YaST and then the "Install and remove programs" module. Use the search option, type in "dev" and near the bottom there should be an "XFree86-devel" package. Install it. Then you can go on to the rest of the imwheel installation. Anything else I find I'll post here.

To make sure other ppl looking for help on this find this thread:
SuSE 9.1 imwheel x11 dev

STuPiDiCuS

Last edited by STuPiDiCuS; 09-23-2004 at 05:04 PM.
 
Old 10-08-2004, 06:53 AM   #6
limplenny
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Rep: Reputation: 0
hi,

thats helpful, but for Suse 9.1 Personal users:
go to: ftp://ftp.suse.com/pub/suse/i386/9.1/suse/i586/
and download the following packages:
Freetype2-Devel
Fontconfig-devel
XFree86-devel
(in that order)

the personal edition seems to need a lot of extra downloads. I installed it yesterday without too much trouble, but to be able to compile i had to spend a day on the internet heh. it's not easy being a newbie!

Lennard
 
Old 10-08-2004, 07:04 AM   #7
limplenny
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Rep: Reputation: 0
hmm

I seem to not have the 'make' command available:

50-240:/home/lpamooij/Documents/az/imwheel-1.0.0pre12 # make
bash: make: command not found
50-240:/home/lpamooij/Documents/az/imwheel-1.0.0pre12 # ./make
bash: ./make: Onbekend bestand of map

50-240:/home/lpamooij/Documents/az/imwheel-1.0.0pre12 # find / -name make
find: /media/dvd: Geen medium gevonden
find: . changed during execution of find

I'm on suse 9.1 personal and i sort of need this to be able to install non-binary programs. I've been installing the required packs to configure for a few hours now.

can anyone help?

Lennard
 
Old 10-08-2004, 10:09 AM   #8
STuPiDiCuS
Member
 
Registered: Jun 2004
Location: Springville, Utah
Distribution: SuSE 9.1/9.2/9.3 Pro, OpenSuSE 10.0, 10.1, Currently 10.2 32&64 bit
Posts: 101
Blog Entries: 1

Rep: Reputation: 15
have you tried "whereis make"?
 
Old 10-09-2004, 05:02 AM   #9
limplenny
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Rep: Reputation: 0
I found it, i guess i should have thought of that. The 'make' package wasn't installed. I had to download that too,

thanks though,

Lennard
 
  


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
Help me with imwheel Kethinov Linux - Software 0 01-24-2005 12:29 PM
Imwheel help me get the right keys..... DavidTempler Linux - Newbie 4 11-20-2004 05:43 PM
xmodmap/imwheel baudchaser Linux - Hardware 1 03-03-2004 10:50 PM
IMWheel tslugmo Linux - Software 8 04-28-2003 05:21 PM
Problems installing IMWheel ebakunin Linux - Software 3 06-13-2002 07:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:52 PM.

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