blob: 3c97275bca0c861162226bb64d77a7c92ce849f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Nel] Some Linux patches</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:stefan.nilsen%40telia.com">
<LINK REL="Previous" HREF="000030.html">
<LINK REL="Next" HREF="000024.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Nel] Some Linux patches</H1>
<B>Stefan Nilsen</B>
<A HREF="mailto:stefan.nilsen%40telia.com"
TITLE="[Nel] Some Linux patches">stefan.nilsen@telia.com</A><BR>
<I>Sun, 12 Nov 2000 14:04:22 +0100</I>
<P><UL>
<LI> Previous message: <A HREF="000030.html">[Nel] my last email :)</A></li>
<LI> Next message: <A HREF="000024.html">[Nel] Linux build</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#20">[ date ]</a>
<a href="thread.html#20">[ thread ]</a>
<a href="subject.html#20">[ subject ]</a>
<a href="author.html#20">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>I made som fixes for compile on Linux.
This is the first time i submit a patch, so please tell me if i'm doing
anything wrong.
Index: Makefile.am
===================================================================
RCS file: /home/cvsroot/code/nel/Makefile.am,v
retrieving revision 1.1
diff -r1.1 Makefile.am
9c9
< SUBDIRS= include src lib doc
---
><i> SUBDIRS= src doc
</I>Index: src/net/base_socket.cpp
===================================================================
RCS file: /home/cvsroot/code/nel/src/net/base_socket.cpp,v
retrieving revision 1.16
diff -r1.16 base_socket.cpp
40a41,42
><i> #define __need_timeval
</I>><i> #include <bits/time.h>
</I>42c44
< #include <netinet/tcp/h>
---
><i> #include <netinet/tcp.h>
</I>261c263
< int saddrlen = sizeof(saddr);
---
><i> socklen_t saddrlen = sizeof(saddr);
</I>344c346
< int saddrlen = sizeof(saddr);
---
><i> socklen_t saddrlen = sizeof(saddr);
</I>374c376
<
---
><i>
</I>
</pre>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI> Previous message: <A HREF="000030.html">[Nel] my last email :)</A></li>
<LI> Next message: <A HREF="000024.html">[Nel] Linux build</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#20">[ date ]</a>
<a href="thread.html#20">[ thread ]</a>
<a href="subject.html#20">[ subject ]</a>
<a href="author.html#20">[ author ]</a>
</LI>
</UL>
</body></html>
|