X Windows Libraries Required


 
Thread Tools Search this Thread
Top Forums Programming X Windows Libraries Required
# 1  
Old 09-02-2005
Question X Windows Libraries Required

Hi,
I tried to compile a code referencing XWindows Programming Functions, i found out that i have no XWindows Header files present. But XWindows is running on my System.Is the XWindows Development package different from the XWindows running on my system? if so, can you instruct me how to obtain and install XWindows development libraries on my Unix (NCR MPRAS).

Thanks and Regards,

Pravin
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Programming

Configure: error: X Window system libraries and header files are required

I am trying to compile thunar 1.8.4. It is giving me this error. configure: error: X Window system libraries and header files are required Ubuntu Mate 18.04 (2 Replies)
Discussion started by: drew77
2 Replies

2. UNIX for Beginners Questions & Answers

Using Linux python libraries in windows

I would like to know how or if I could use python packages/libraries meant for linux on windows. In particular there is a soya3d game engine for python but I can only find downloads for linux. Yet I want to create programs with it that work on windows. (python 3) (1 Reply)
Discussion started by: Sprotz
1 Replies

3. Shell Programming and Scripting

Getting required fields from a test file in required fromat in unix

My data is something like shown below. date1 date2 aaa bbbb ccccc date3 date4 dddd eeeeeee ffffffffff ggggg hh I want the output like this date1date2 aaa eeeeee I serached in the forum but didn't find the exact matching solution. Please help. (7 Replies)
Discussion started by: rdhanek
7 Replies

4. Solaris

Libraries required by commands

In solaris 10 how to I know what libraries are required by a particular command? please advise (1 Reply)
Discussion started by: Tirmazi
1 Replies

5. Shell Programming and Scripting

ftp from unix to windows - urgent help required

I'm trying to ftp from a Unix machine to a Windows machine.. I've tried the following #!/bin/sh #set -x USER="user1" PASS="pass1" HOSTNAME="host1" ftp -n -i -v $HOSTNAME << EOT user $USER $PASS cd / send text1.txt close bye EOT When I try to run this, I get prompted for the... (1 Reply)
Discussion started by: sam_sal_manu
1 Replies
Login or Register to Ask a Question
pactester(1)															      pactester(1)

NAME
pactester - Tool to test proxy auto-config (pac) files. SYNOPSIS
pactester <-p pacfile> <-u url> [-h host] [-c client_ip] [-e] pactester <-p pacfile> <-f urlslist> [-c client_ip] [-e] DESCRIPTION
pactester is a tool to test proxy auto-config (pac) files. It returns the proxy config string for the given URL and the pac file. pactester uses pacparser C library for most of its functionality. OPTIONS
-p pacfile PAC file to test. Specify "-" to read from the standard input. -u url URL to test the PAC file for. -h host Host part of the URL. If not specified, it's determined from the URL. -c client_ip Client's IP address (as returned by the function myIpAddress() in PAC files). If not specified, it defaults to the IP address of the machine on which this tool is running. -e Enable Microsoft PAC extensions (dnsResolveEx, myIpAddressEx, isResolvableEx). -f urlslist A file containing the list of URLs to be tested. This is good for testing a PAC file against a set of URLs. EXAMPLES
To find out the proxy config string for the pac file "wpad.dat" and the URL "http://www.google.com": $ pactester -p wpad.dat -u http://www.google.com For a client with IP address 10.0.12.123: $ pactester -p wpad.dat -c 10.0.12.123 -u http://www.google.com For a pac file hosted at http://wpad/wpad.dat: $ curl -s http://wpad/wpad.dat | pactester -p - -u http://google.com BUGS
If you have come across a bug in pactester, please submit a bug report at http://code.google.com/p/pacparser/issues/list. AUTHOR
Written by Manu Garg (http://www.manugarg.com). RESOURCES
Homepage: http://code.google.com/p/pacparser. pactester(1)