Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Closed Thread
 
Thread Tools Search this Thread Display Modes
  #1  
Old 11th April 2006, 01:41 AM
doGSOP Offline
Registered User
 
Join Date: Apr 2006
Posts: 1
xawtv on FC5?

Does anyone have xawtv running on FC5? I can't find a binary rpm and can't seem to build from sources.

Trying to build from sources fails with the following errors:
LD console/fbtv
console/fs.o: In function `fs_connect':console/fs.c:196: undefined reference to `FSOpenServer'
:console/fs.c:198: undefined reference to `FSServerName'
:console/fs.c:201: undefined reference to `FSServerName'
console/fs.o: In function `fs_open':console/fs.c:226: undefined reference to `FSListFonts'
:console/fs.c:235: undefined reference to `FSOpenBitmapFont'
:console/fs.c:236: undefined reference to `FSFreeFontNames'
:console/fs.c:240: undefined reference to `FSQueryXInfo'
:console/fs.c:243: undefined reference to `FSQueryXExtents16'
:console/fs.c:244: undefined reference to `FSQueryXBitmaps16'
collect2: ld returned 1 exit status
make: *** [console/fbtv] Error 1
I've tried compiling with gcc 4.1 and also with 3.2, I get the same result in both cases.

Any help would be appreciated.
  #2  
Old 11th April 2006, 06:36 PM
VictorienSardou Offline
Registered User
 
Join Date: Feb 2006
Posts: 628
xawtv requires zvbi as a dependency which is available for FC5 in freshrpms.net

in fact, 'zvbi-devel' would be required because it contains the static libraries and header files needed for building programs that use the zvbi library.

Last edited by VictorienSardou; 11th April 2006 at 06:47 PM. Reason: to give more information
  #3  
Old 25th April 2006, 12:21 PM
Elrondo Offline
Registered User
 
Join Date: Apr 2005
Posts: 28
Error with zvbi and zvbi-devel installed:

[root@localhost xawtv-3.95]# make
CC console/fbtv.o
Dans le fichier inclus à partir de console/fbtv.c:31:
./libng/grab-ng.h:28:1: attention : « bool » redéfini
Dans le fichier inclus à partir de /usr/include/curses.h:157,
à partir de console/fbtv.c:24:
/usr/lib/gcc/x86_64-redhat-linux/4.1.0/include/stdbool.h:36:1: attention : ceci est la localisation d'une précédente définition
Dans le fichier inclus à partir de console/fbtv.c:44:
console/fs.h:2:20: erreur: FSlib.h : Aucun fichier ou répertoire de ce type
In file included from console/fbtv.c:44:
console/fs.h:6: erreur: expected specifier-qualifier-list before ‘FSXFontInfoHeader’
console/fs.h:58: erreur: expected declaration specifiers or ‘...’ before ‘FSXCharInfo’
console/fs.h:62: erreur: expected ‘)’ before ‘*’ token
console/fbtv.c: In function ‘text_out’:
console/fbtv.c:339: erreur: ‘struct fs_font’ has no member named ‘height’
console/fbtv.c:340: erreur: ‘struct fs_font’ has no member named ‘fontHeader’
console/fbtv.c:341: attention : pointer targets in passing argument 4 of ‘fs_puts’ differ in signedness
console/fbtv.c: In function ‘text_width’:
console/fbtv.c:347: attention : pointer targets in passing argument 2 of ‘fs_textwidth’ differ in signedness
console/fbtv.c: In function ‘do_capture’:
console/fbtv.c:405: erreur: ‘struct fs_font’ has no member named ‘height’
console/fbtv.c:406: erreur: ‘struct fs_font’ has no member named ‘height’
console/fbtv.c:443: erreur: ‘struct fs_font’ has no member named ‘height’
console/fbtv.c:444: erreur: ‘struct fs_font’ has no member named ‘height’
console/fbtv.c: In function ‘main’:
console/fbtv.c:755: erreur: ‘struct fs_font’ has no member named ‘height’
console/fbtv.c:773: erreur: ‘struct fs_font’ has no member named ‘width’
console/fbtv.c:813: attention : pointer targets in assignment differ in signedness
make: *** [console/fbtv.o] Erreur 1
  #4  
Old 25th April 2006, 01:29 PM
VictorienSardou Offline
Registered User
 
Join Date: Feb 2006
Posts: 628
the missing files were part of Xfree86-devel which isnt in use by Fedora any more.
are libFS and libFS-devel installed?
  #5  
Old 26th May 2006, 07:15 PM
olejorgen Offline
Registered User
 
Join Date: May 2006
Posts: 1
I have the same problem.

[mythtv@localhost xawtv-3.95]$ make
LD console/fbtv
console/fs.o: In function `fs_open':
console/fs.c:226: undefined reference to `FSListFonts'
console/fs.c:235: undefined reference to `FSOpenBitmapFont'
console/fs.c:236: undefined reference to `FSFreeFontNames'
console/fs.c:240: undefined reference to `FSQueryXInfo'
console/fs.c:243: undefined reference to `FSQueryXExtents16'
console/fs.c:244: undefined reference to `FSQueryXBitmaps16'
console/fs.o: In function `fs_connect':
console/fs.c:196: undefined reference to `FSOpenServer'
console/fs.c:198: undefined reference to `FSServerName'
console/fs.c:201: undefined reference to `FSServerName'
collect2: ld returned 1 exit status
make: *** [console/fbtv] Error 1

Did anyone manage to solve this problem? Any help is appriciated
  #6  
Old 7th August 2006, 01:07 PM
mrs kensington Offline
Registered User
 
Join Date: Aug 2006
Posts: 1
I managed to get the latest xawtv to compile and run by using the following configure line.

./configure --x-include=/usr/include/X11/ --x-libraries=/usr/lib/X11/

I had also installed the libfs and libfs-devel packages as well.

Hope that helps someone.
  #7  
Old 10th September 2006, 02:09 AM
uth Offline
Registered User
 
Join Date: Jun 2006
Posts: 117
Quote:
Originally Posted by mrs kensington
I managed to get the latest xawtv to compile and run by using the following configure line.

./configure --x-include=/usr/include/X11/ --x-libraries=/usr/lib/X11/

I had also installed the libfs and libfs-devel packages as well.

Hope that helps someone.
Hi, that should be --x-includes (plural).

I had to first install libFS-devel, and add the --x-includes=/usr/include/X11/fonts instead of just /usr/include/X11

After I did this, it built and installed. But when I use it, I just get a black or blue screen. I tweeked the settings, and I may get a brief flicker of a TV image, but it keeps reverting to a black or blue screen.

Does it work for you?
  #8  
Old 10th September 2006, 06:23 AM
sandynuts's Avatar
sandynuts Offline
Registered User
 
Join Date: Aug 2006
Posts: 53
Quote:
Originally Posted by doGSOP
Does anyone have xawtv running on FC5? I can't find a binary rpm and can't seem to build from sources.

I've tried compiling with gcc 4.1 and also with 3.2, I get the same result in both cases.

Any help would be appreciated.
Hi
I had installed xawtv from a rpm

http://dl.atrpms.net/all/xawtv-3.95-19.fc5.at.i386.rpm

needs tv-fonts and zvbi, rpm pkgs of both are available in freshrpms repository I think
  #9  
Old 7th September 2011, 12:04 AM
RoboCat Offline
Registered User
 
Join Date: Apr 2011
Posts: 6
linuxmintfirefox
Re: xawtv on FC5?

Quote:
Originally Posted by mrs kensington View Post
I managed to get the latest xawtv to compile and run by using the following configure line.

./configure --x-include=/usr/include/X11/ --x-libraries=/usr/lib/X11/

I had also installed the libfs and libfs-devel packages as well.

Hope that helps someone.
I did a:

# sudo apt-get install libfs-dev

and it got rid of the original error of this post, but only to be replaced by a new error:
-------------------------------------------------------------------------------------------------
console/fbtv.o
In file included from console/fbtv.c:31:
./libng/grab-ng.h:28:1: warning: "bool" redefined
In file included from /usr/include/curses.h:175,
from console/fbtv.c:24:
/usr/lib/gcc/i486-linux-gnu/4.4.1/include/stdbool.h:33:1: warning: this is the location of the previous definition
console/fbtv.c: In function ‘text_out’:
console/fbtv.c:340: error: request for member ‘max_bounds’ in something not a structure or union
console/fbtv.c:341: warning: pointer targets in passing argument 4 of ‘fs_puts’ differ in signedness
console/fs.h:58: note: expected ‘unsigned char *’ but argument is of type ‘char *’
console/fbtv.c: In function ‘text_width’:
console/fbtv.c:347: warning: pointer targets in passing argument 2 of ‘fs_textwidth’ differ in signedness
console/fs.h:59: note: expected ‘unsigned char *’ but argument is of type ‘char *’
console/fbtv.c: In function ‘main’:
console/fbtv.c:813: warning: pointer targets in assignment differ in signedness
make: *** [console/fbtv.o] E
--------------------------------------------------------------------------------------

looks like it starts here:

console/fbtv.c:340: error: request for member ‘max_bounds’ in something not a structure or union

Any suggestions??
  #10  
Old 7th September 2011, 12:42 AM
JohnVV's Avatar
JohnVV Offline
Registered User
 
Join Date: Aug 2005
Location: Ann Arbor
Age: 45
Posts: 3,907
linuxfirefox
Re: xawtv on FC5?

RoboCat
Please DO NOT drag up a 5 year old thread and give Ubuntu instructions for a dead version of fedora

Fedora DOSE NOT use "apt-get"
__________________
Running Arch ,OpenSUSE 11.4-64bit & Scientific Linux 6.1-64bit ( fedora 4 to 11)
My Celestia Downloads

http://celestiamotherlode.net/catalo...?creator_id=10
  #11  
Old 7th September 2011, 06:07 AM
RoboCat Offline
Registered User
 
Join Date: Apr 2011
Posts: 6
linuxmintfirefox
Re: xawtv on FC5?

Quote:
RoboCat
Please DO NOT drag up a 5 year old thread and give Ubuntu instructions for a dead version of fedora

Fedora DOSE NOT use "apt-get"
As I understand... Fedora is LINUX... and you can use any method you like to get applications and software? ... (be it GIT repositories, downloading and building the code from scratch, or using a GUI Software manager, among others).

I wasn't giving instructions!! ...I tried alot of things from this post and nothing has worked INCLUDING:

Quote:
./configure --x-include=/usr/include/X11/ --x-libraries=/usr/lib/X11/
which does not get rid of either of the make file errors.

V4L IS NOT DEAD
I thought V4L is very much still alive, in that it is embedded into most open sorce vision processing code I have seen.

THIS PROBLEM HAS NOT BEEN SOLVED!!
I did not see anything refering to the new error I have received? THIS implies that nobody has solved the problem to receive the new error I have received.

WHAT AM I TRYING TO DO?
I am trying to add code to the 'webcam' program built into the XAWTV source code so that I can speed up the process of my image processing program. If your interested.. The idea is... to process the image directly inside the program instead of saving it to a file and reading it back in (thus saving Read/Write time).
  #12  
Old 7th September 2011, 06:43 AM
leigh123linux's Avatar
leigh123linux Offline
Retired Administrator
 
Join Date: Oct 2006
Posts: 21,509
windows_7firefox
Re: xawtv on FC5?

Thread closed
Closed Thread

Tags
fc5, xawtv

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
xawtv and FC5 hwyu Using Fedora 1 25th July 2006 03:08 PM
Can't compile xawtv striss Using Fedora 1 22nd July 2005 09:03 PM


Current GMT-time: 18:50 (Sunday, 19-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat