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
Heimdal Kerberos 5 PAC handling functions(3)		      HeimdalKerberos5library		      Heimdal Kerberos 5 PAC handling functions(3)

NAME
Heimdal Kerberos 5 PAC handling functions - Functions KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_pac_get_buffer (krb5_context context, krb5_pac p, uint32_t type, krb5_data *data) KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_pac_verify (krb5_context context, const krb5_pac pac, time_t authtime, krb5_const_principal principal, const krb5_keyblock *server, const krb5_keyblock *privsvr) Detailed Description Function Documentation KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_pac_get_buffer (krb5_context context, krb5_pac p, uint32_t type, krb5_data * data) Get the PAC buffer of specific type from the pac. Parameters: context Kerberos 5 context. p the pac structure returned by krb5_pac_parse(). type type of buffer to get data return data, free with krb5_data_free(). Returns: Returns 0 to indicate success. Otherwise an kerberos et error code is returned, see krb5_get_error_message(). KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_pac_verify (krb5_context context, const krb5_pac pac, time_t authtime, krb5_const_principal principal, const krb5_keyblock * server, const krb5_keyblock * privsvr) Verify the PAC. Parameters: context Kerberos 5 context. pac the pac structure returned by krb5_pac_parse(). authtime The time of the ticket the PAC belongs to. principal the principal to verify. server The service key, most always be given. privsvr The KDC key, may be given. Returns: Returns 0 to indicate success. Otherwise an kerberos et error code is returned, see krb5_get_error_message(). Version 1.5.2 11 Jan 2012 Heimdal Kerberos 5 PAC handling functions(3)