|
|
Download header files for running unix network programs
I am new to socket programming and I want to download the entire header
file package (unp.h,unpifi.h,net.if_arp.h) used for making unix
network programs in C.Please tell me a good reliable source which has
steps to configure the libraries..Plz help me out
|
|
0
|
|
|
|
Reply
|
zenith.of.perfection (82)
|
4/21/2006 9:21:25 AM |
|
On Fri, 21 Apr 2006 02:21:25 -0700, jeniffer wrote:
> I am new to socket programming and I want to download the entire header
> file package (unp.h,unpifi.h,net.if_arp.h) used for making unix
> network programs in C.Please tell me a good reliable source which has
> steps to configure the libraries..Plz help me out
http://www.kohala.com/start/unpv12e.html
|
|
0
|
|
|
|
Reply
|
iso
|
4/21/2006 9:26:47 AM
|
|
Nils O. Sel=E5sdal wrote:
> On Fri, 21 Apr 2006 02:21:25 -0700, jeniffer wrote:
>
> > I am new to socket programming and I want to download the entire header
> > file package (unp.h,unpifi.h,net.if_arp.h) used for making unix
> > network programs in C.Please tell me a good reliable source which has
> > steps to configure the libraries..Plz help me out
>
> http://www.kohala.com/start/unpv12e.html
I downloaded the source and performed steps as given in the readme
file.On running the configure script :-
$ ./configure
: bad interpreter: No such file or directory
]$ sh configure
: command not found
: command not found
: command not found
: command not found
: command not found
'onfigure: line 57: syntax error near unexpected token `do
'onfigure: line 57: `do
--------------------------------
Also i find tht the configure script has several unset variables.Plz
tell me wht to do?
|
|
0
|
|
|
|
Reply
|
jeniffer
|
4/21/2006 9:38:24 AM
|
|
jeniffer wrote:
> Nils O. Sel�sdal wrote:
>> On Fri, 21 Apr 2006 02:21:25 -0700, jeniffer wrote:
>>
>>> I am new to socket programming and I want to download the entire header
>>> file package (unp.h,unpifi.h,net.if_arp.h) used for making unix
>>> network programs in C.Please tell me a good reliable source which has
>>> steps to configure the libraries..Plz help me out
>> http://www.kohala.com/start/unpv12e.html
>
> I downloaded the source and performed steps as given in the readme
> file.On running the configure script :-
> $ ./configure
> : bad interpreter: No such file or directory
You get this error often because the text file is in
"dos" format. The 'file' command should tell you -
find some tool to convert the file(s)
|
|
0
|
|
|
|
Reply
|
ISO
|
4/21/2006 6:28:38 PM
|
|
"Nils O. Sel�sdal" <noselasd@asgaard.homelinux.org> writes:
> jeniffer wrote:
>> Nils O. Sel�sdal wrote:
>>> On Fri, 21 Apr 2006 02:21:25 -0700, jeniffer wrote:
>>>
>>>> I am new to socket programming and I want to download the entire header
>>>> file package (unp.h,unpifi.h,net.if_arp.h) used for making unix
>>>> network programs in C.Please tell me a good reliable source which has
>>>> steps to configure the libraries..Plz help me out
>>> http://www.kohala.com/start/unpv12e.html
>> I downloaded the source and performed steps as given in the readme
>> file.On running the configure script :-
>> $ ./configure
>> : bad interpreter: No such file or directory
> You get this error often because the text file is in
> "dos" format. The 'file' command should tell you -
> find some tool to convert the file(s)
Converting from MS-DOS newlines to unix newlines can be done with:
tr -d '\015' < file.dos > file.unix
or:
mv file file.dos && tr -d '\015' < file.dos > file && rm file.dos
--
__Pascal Bourguignon__ http://www.informatimago.com/
READ THIS BEFORE OPENING PACKAGE: According to certain suggested
versions of the Grand Unified Theory, the primary particles
constituting this product may decay to nothingness within the next
four hundred million years.
|
|
0
|
|
|
|
Reply
|
Pascal
|
4/21/2006 6:50:24 PM
|
|
|
4 Replies
969 Views
(page loaded in 0.054 seconds)
|
|
|
|
|
|
|
|
|