Checking For X11 Header Files

Posted on
Checking For X11 Header FilesChecking For X11 Header Files

1: Header Field Definitionspart of Hypertext Transfer Protocol - - HTTP/1. 6 Fielding, et al. For entity- header fields, both sender and. Accept headers can be. The media- range MAY include media type. Microsoft Office 97 Full Version more. Quality factors allow the user. Default value is q=1. Although this prevents any media type parameter named. Future media types are discouraged from. If an Accept header field is present. Which package in ubuntu contains the header file. Which package in ubuntu contains the. May be there is no header named x11.h at all.

Welcome to LinuxQuestions.org, a friendly and active Linux Community. You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Note that registered members see fewer ads, and ContentLink is completely disabled once you log in. Are you new to LinuxQuestions.org?

Visit the following links: If you have any problems with the registration process or your account login, please. If you need to reset your password,. Having a problem logging in?

Please visit to clear all LQ-related cookies. Introduction to Linux - A Hands on Guide This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter. For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own. To receive this Complete Guide absolutely free. My X11 header files are under /usr/X11R6/include/X11.

The makefile suggests the following:### In general, if your X11 include files and libX11.a library aren't in the ### 'standard' places in which the C compiler looks, you should add '-L' and ### '-I' options on the CCOPTS line to tell the compiler where said files are. Download Seo Powersuite Full Crack Pc. Although I don't understand how the -L and -I options work, I added: CCOPTS = -O -L/usr/X11R6/include/X11-I/usr/X11R6/include/X11 - tried adding just one and not the other both ways. Thank you very much for your reply. That got the ball rolling, and it started to compile but then I run into more errors.

I don't know if you can help me any further but here it goes. Under the options in the Makefile, there is a line to uncomment if you have a SysV machine. Which I believe mine is: #----------System V---------- # if you are running on a SysV-based machine, such as HP, Silicon Graphics, # Solaris, etc., uncomment the following line to get mostly there. UNIX = -DSVR4 When that line is uncommented I get the following error: [root /usr/local/src/xv-3.10a]# make cc -O -L/usr/X11R6/include/ -I/usr/X11R6/include/ -DDOJPEG -Ijpeg -DDOPDS -DSVR4 -DLINUX -c xv.c In file included from /usr/X11R6/include/X11/Xos.h:284, from xv.h:72, from xv.c:11: /usr/X11R6/include/X11/Xarch.h:48: sys/byteorder.h: No such file or directory make: *** [xv.o] Error 1 Unfortunately, I can't find a byteorder.h. Thank you both. No, there was no configure, I was just supposed to edit the Makefile and run make.

Err, I guess actually looking for byteorder.h might have helped! Sorry, I was really tired. Thanks CragStar. In editing the Xarch.h file, there was an include that pointed to sys, and I changed it to asm and that fixed that problem, thanks neo. However, once that was solved it just moved onto the next issue from my previous post: [root /usr/local/src/xv-3.10a]# make cc -O -L/usr/X11R6/include/ -I/usr/X11R6/include/ -DDOJPEG -Ijpeg -DSVR4 -DLINUX -c xv.c In file included from xv.c:11: xv.h:119: conflicting types for `sys_errlist' /usr/include/stdio.h:552: previous declaration of `sys_errlist' make: *** [xv.o] Error 1 I'll keep screwing with options in the make file. Thanks again.